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
The tls hosts in the template shouldn't be a single host from ingress.hostname but in fact a list of hosts (hostname AND common-name). Most helm templates for ingress include a range to allow for multiple host names to be provided to the dnsNames of the cert.
Using extraTls doesn't match this model because it creates a completely separate certificate.
Most helm ingress values provide list of hosts vs a single hostname so that's why it scales but in this template that isn't the case.
Actually to avoid having to setup a Certificate resource directly I was able to use cert-manager annotation just had to keep tls: false and only use extraTls:
When adding something like a common-name to a certificate
The tls hosts in the template shouldn't be a single host from ingress.hostname but in fact a list of hosts (hostname AND common-name). Most helm templates for ingress include a range to allow for multiple host names to be provided to the dnsNames of the cert.
Using extraTls doesn't match this model because it creates a completely separate certificate.
Most helm ingress values provide list of hosts vs a single hostname so that's why it scales but in this template that isn't the case.
https://github.com/bitnami-labs/sealed-secrets/blob/main/helm/sealed-secrets/templates/ingress.yaml#L46
Most charts (except for bitnami) use this type of format to have multiple hostnames
https://github.com/dexidp/helm-charts/blob/master/charts/dex/templates/ingress.yaml#L33
However the values format should look something more like:
The text was updated successfully, but these errors were encountered: