Allow specifying ingress.tls.host if it is different from ingress.host#63
Allow specifying ingress.tls.host if it is different from ingress.host#63vitaliyf wants to merge 4 commits intokafbat:mainfrom
Conversation
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 58 minutes and 37 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughAdded a new Helm value Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@charts/kafka-ui/values.yaml`:
- Around line 249-250: Fix the typo in the parameter description for
ingress.tls.host by replacing both occurrences of "ingess" and "ingess.host"
with "ingress" and "ingress.host" respectively in the values.yaml entry for
ingress.tls.host, then regenerate CONFIGURATION.md so the docs and the values
file stay aligned; target the comment text that mentions "ingess"/"ingess.host"
and update it to read "ingress"/"ingress.host".
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: aef3f135-1646-438c-af7f-8265aca28a55
📒 Files selected for processing (3)
charts/kafka-ui/CONFIGURATION.mdcharts/kafka-ui/templates/ingress.yamlcharts/kafka-ui/values.yaml
Haarolean
left a comment
There was a problem hiding this comment.
please address coderabbit comments
This is needed when using wildcard certificates, for example this set of values:
```
ingress:
enabled: true
host: kafbat-ui.example.com
tls:
enabled: true
secretName: tls-wildcard-example-com
host: "*.example.com"
```
will generate:
```yaml
apiVersion: networking.k8s.io/v1
kind: Ingress
spec:
tls:
- hosts:
- "*.example.com"
secretName: tls-wilcard-example-com
```
|
@coderabbitai review |
✅ Actions performedReview triggered.
|
This is needed when using wildcard certificates, for example this set of values:
will generate:
Summary by CodeRabbit