You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
```
0 commit comments