Skip to content

Allow specifying ingress.tls.host if it is different from ingress.host#63

Open
vitaliyf wants to merge 1 commit intokafbat:mainfrom
vitaliyf:main
Open

Allow specifying ingress.tls.host if it is different from ingress.host#63
vitaliyf wants to merge 1 commit intokafbat:mainfrom
vitaliyf:main

Conversation

@vitaliyf
Copy link

This is needed when using wildcard certificates, for example this set of values:

ingress:
  enabled: true
  host: kafbat-ui.example.com
  tls:
    enabled: true
    host: "*.example.com"
    secretName: tls-wildcard-example-com

will generate:

apiVersion: networking.k8s.io/v1
kind: Ingress
spec:
  tls:
    - hosts:
        - "*.example.com"
      secretName: tls-wilcard-example-com
  ...etc...

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
```
@vitaliyf vitaliyf requested a review from a team as a code owner February 23, 2026 02:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant