2020-11-24 14:44:57 +00:00
|
|
|
{{- if index .Values "istio-ingress" "dnsNames" }}
|
2020-11-21 12:24:57 +00:00
|
|
|
apiVersion: cert-manager.io/v1
|
2020-07-21 17:30:21 +00:00
|
|
|
kind: Certificate
|
|
|
|
metadata:
|
|
|
|
name: public-ingress-cert
|
2020-11-24 14:44:57 +00:00
|
|
|
namespace: {{ .Release.Namespace }}
|
2020-08-06 17:43:59 +00:00
|
|
|
labels:
|
|
|
|
{{ include "kubezero-lib.labels" . | indent 4 }}
|
2020-07-21 17:30:21 +00:00
|
|
|
spec:
|
|
|
|
secretName: public-ingress-cert
|
|
|
|
issuerRef:
|
|
|
|
name: letsencrypt-dns-prod
|
|
|
|
kind: ClusterIssuer
|
|
|
|
dnsNames:
|
2020-11-24 14:44:57 +00:00
|
|
|
{{ toYaml (index .Values "istio-ingress" "dnsNames") | indent 4 }}
|
2020-07-22 19:25:18 +00:00
|
|
|
{{- end }}
|