{{- /* Copyright Broadcom, Inc. All Rights Reserved. SPDX-License-Identifier: APACHE-2.0 */}} {{- if and .Values.tls.enabled .Values.tls.autoGenerated.enabled (eq .Values.tls.autoGenerated.engine "cert-manager") }} {{- if empty .Values.tls.autoGenerated.certManager.existingIssuer }} apiVersion: cert-manager.io/v1 kind: Issuer metadata: name: {{ printf "%s-clusterissuer" (include "common.names.fullname" .) }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" (dict "customLabels" .Values.commonLabels "context" .) | nindent 4 }} app.kubernetes.io/part-of: keycloak {{- if .Values.commonAnnotations }} annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" .) | nindent 4 }} {{- end }} spec: selfSigned: {} --- {{- end }} apiVersion: cert-manager.io/v1 kind: Certificate metadata: name: {{ printf "%s-ca-crt" (include "common.names.fullname" .) }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" (dict "customLabels" .Values.commonLabels "context" .) | nindent 4 }} app.kubernetes.io/part-of: keycloak {{- if .Values.commonAnnotations }} annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" .) | nindent 4 }} {{- end }} spec: secretName: {{ printf "%s-ca-crt" (include "common.names.fullname" .) }} commonName: {{ printf "%s-ca" (include "common.names.fullname" .) }} isCA: true issuerRef: name: {{ default (printf "%s-clusterissuer" (include "common.names.fullname" .)) .Values.tls.autoGenerated.certManager.existingIssuer }} kind: {{ default "Issuer" .Values.tls.autoGenerated.certManager.existingIssuerKind }} --- apiVersion: cert-manager.io/v1 kind: Issuer metadata: name: {{ printf "%s-ca-issuer" (include "common.names.fullname" .) }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" (dict "customLabels" .Values.commonLabels "context" .) | nindent 4 }} app.kubernetes.io/part-of: keycloak {{- if .Values.commonAnnotations }} annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" .) | nindent 4 }} {{- end }} spec: ca: secretName: {{ printf "%s-ca-crt" (include "common.names.fullname" .) }} {{- end }}