| giolekva | 26a9681 | 2021-12-03 13:36:02 +0400 | [diff] [blame] | 1 | apiVersion: cert-manager.io/v1 |
| 2 | kind: Certificate |
| 3 | metadata: |
| 4 | name: accounts-ui.{{ .Values.ui.domain }} |
| 5 | namespace: {{ .Release.Namespace }} |
| 6 | annotations: |
| 7 | helm.sh/resource-policy: keep |
| 8 | spec: |
| 9 | dnsNames: |
| 10 | - 'accounts-ui.{{ .Values.ui.domain }}' |
| 11 | issuerRef: |
| 12 | name: {{ .Values.ui.certificateIssuer }} |
| 13 | kind: ClusterIssuer |
| 14 | secretName: cert-accounts-ui.{{ .Values.ui.domain }} |
| 15 | --- |
| 16 | apiVersion: cert-manager.io/v1 |
| 17 | kind: Certificate |
| 18 | metadata: |
| 19 | name: accounts.{{ .Values.ui.domain }} |
| 20 | namespace: {{ .Release.Namespace }} |
| 21 | annotations: |
| 22 | helm.sh/resource-policy: keep |
| 23 | spec: |
| 24 | dnsNames: |
| 25 | - 'accounts.{{ .Values.ui.domain }}' |
| 26 | issuerRef: |
| 27 | name: {{ .Values.ui.certificateIssuer }} |
| 28 | kind: ClusterIssuer |
| 29 | secretName: cert-accounts.{{ .Values.ui.domain }} |
| 30 | --- |
| 31 | apiVersion: cert-manager.io/v1 |
| 32 | kind: Certificate |
| 33 | metadata: |
| 34 | name: hydra.{{ .Values.ui.domain }} |
| 35 | namespace: {{ .Release.Namespace }} |
| 36 | annotations: |
| 37 | helm.sh/resource-policy: keep |
| 38 | spec: |
| 39 | dnsNames: |
| 40 | - 'hydra.{{ .Values.ui.domain }}' |
| 41 | issuerRef: |
| 42 | name: {{ .Values.ui.certificateIssuer }} |
| 43 | kind: ClusterIssuer |
| 44 | secretName: cert-hydra.{{ .Values.ui.domain }} |