47 lines
1.7 KiB
YAML
47 lines
1.7 KiB
YAML
{{ if .Values.webhook.cert.certManager.enabled }}
|
|
{{ if not .Values.webhook.cert.certManager.issuerRef }}
|
|
apiVersion: cert-manager.io/v1
|
|
kind: Issuer
|
|
metadata:
|
|
name: {{ include "mariadb-operator.fullname" . }}-selfsigned-issuer
|
|
labels:
|
|
{{ include "mariadb-operator-webhook.labels" . | nindent 4 }}
|
|
spec:
|
|
selfSigned: {}
|
|
{{ end }}
|
|
---
|
|
apiVersion: cert-manager.io/v1
|
|
kind: Certificate
|
|
metadata:
|
|
name: {{ include "mariadb-operator.fullname" . }}-webhook-cert
|
|
labels:
|
|
{{ include "mariadb-operator-webhook.labels" . | nindent 4 }}
|
|
spec:
|
|
commonName: {{ include "mariadb-operator.fullname" . }}-webhook.{{ .Release.Namespace }}.svc
|
|
dnsNames:
|
|
- {{ include "mariadb-operator.fullname" . }}-webhook.{{ .Release.Namespace }}.svc.{{ .Values.clusterName }}
|
|
- {{ include "mariadb-operator.fullname" . }}-webhook.{{ .Release.Namespace }}.svc
|
|
- {{ include "mariadb-operator.fullname" . }}-webhook.{{ .Release.Namespace }}
|
|
- {{ include "mariadb-operator.fullname" . }}-webhook
|
|
issuerRef:
|
|
{{- if .Values.webhook.cert.certManager.issuerRef -}}
|
|
{{ toYaml .Values.webhook.cert.certManager.issuerRef | nindent 4 }}
|
|
{{- else }}
|
|
kind: Issuer
|
|
name: {{ include "mariadb-operator.fullname" . }}-selfsigned-issuer
|
|
{{- end }}
|
|
{{- with .Values.webhook.cert.certManager.duration }}
|
|
duration: {{ . | quote }}
|
|
{{- end }}
|
|
{{- with .Values.webhook.cert.certManager.renewBefore }}
|
|
renewBefore: {{ . | quote }}
|
|
{{- end }}
|
|
secretName: {{ include "mariadb-operator.fullname" . }}-webhook-cert
|
|
secretTemplate:
|
|
labels:
|
|
{{- include "mariadb-operator-webhook.labels" . | nindent 6 }}
|
|
{{- with .Values.webhook.cert.secretAnnotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{ end }} |