26 lines
740 B
YAML
26 lines
740 B
YAML
{{- if not .Values.webhook.cert.certManager.enabled }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "mariadb-operator.fullname" . }}-webhook-ca
|
|
labels:
|
|
{{- include "mariadb-operator-webhook.labels" . | nindent 4 }}
|
|
mariadb-operator.io/component: webhook
|
|
{{- with .Values.webhook.cert.secretAnnotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "mariadb-operator.fullname" . }}-webhook-cert
|
|
labels:
|
|
{{- include "mariadb-operator-webhook.labels" . | nindent 4 }}
|
|
mariadb-operator.io/component: webhook
|
|
{{- with .Values.webhook.cert.secretAnnotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|