| {{- /* |
| Copyright Broadcom, Inc. All Rights Reserved. |
| SPDX-License-Identifier: APACHE-2.0 |
| */}} |
| |
| {{- if and (or .Values.tls.keystorePassword .Values.tls.truststorePassword) (not .Values.tls.passwordsSecret) }} |
| 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 |
| {{- 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 }} |
| {{- if and .Values.spi.truststorePassword (not .Values.spi.passwordsSecret) }} |
| apiVersion: v1 |
| kind: Secret |
| metadata: |
| name: {{ printf "%s-spi-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 |
| {{- if .Values.commonAnnotations }} |
| annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} |
| {{- end }} |
| type: Opaque |
| data: |
| {{- if .Values.spi.truststorePassword }} |
| spi-truststore-password: {{ .Values.spi.truststorePassword | b64enc | quote }} |
| {{- end }} |
| {{- end }} |