{{- /* Copyright Broadcom, Inc. All Rights Reserved. SPDX-License-Identifier: APACHE-2.0 */}} {{- if and (not .Values.tls.usePemCerts) (.Values.tls.autoGenerated.enabled) (not .Values.tls.passwordsSecret) (or .Values.tls.keystorePassword .Values.tls.truststorePassword) }} apiVersion: v1 kind: Secret metadata: name: {{ printf "%s-tls-passwords" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" (dict "customLabels" .Values.commonLabels "context" .) | nindent 4 }} app.kubernetes.io/component: keycloak app.kubernetes.io/component: keycloak {{- if .Values.commonAnnotations }} annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" .) | nindent 4 }} {{- end }} type: Opaque data: {{- if .Values.tls.keystorePassword }} tls-keystore-password: {{ .Values.tls.keystorePassword | b64enc | quote }} {{- end }} {{- if .Values.tls.truststorePassword }} tls-truststore-password: {{ .Values.tls.truststorePassword | b64enc | quote }} {{- end }} {{- end }}