-
Notifications
You must be signed in to change notification settings - Fork 979
Closed as not planned
Labels
s2Broken use cases or features (with a workaround). Only humans may set this.Broken use cases or features (with a workaround). Only humans may set this.
Description
For some reason, cert-manager will only read a single TLS host when the hosts
line is duplicated in the ingress resource. Kubernetes seems to handle it fine.
coder/helm/templates/ingress.yaml
Lines 45 to 50 in 811a69f
- hosts: | |
- {{ .Values.coder.ingress.host | quote }} | |
secretName: {{ .Values.coder.ingress.tls.secretName | quote}} | |
{{- if .Values.coder.ingress.tls.wildcardSecretName }} | |
- hosts: | |
- {{ include "coder.ingressWildcardHost" . | quote }} |
I had to manually change the ingress to this for cert-manager to do both certificates.
- hosts:
- coder.example.com
- *.coder.example.com
Is this a quick fix on our end or should I report this with cert-manager?
matifali
Metadata
Metadata
Assignees
Labels
s2Broken use cases or features (with a workaround). Only humans may set this.Broken use cases or features (with a workaround). Only humans may set this.