mirror of
https://github.com/bitnami/charts.git
synced 2026-03-29 16:27:11 +08:00
28 lines
1.1 KiB
YAML
28 lines
1.1 KiB
YAML
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if and .Values.keycloakConfigCli.enabled .Values.keycloakConfigCli.configuration (not .Values.keycloakConfigCli.existingConfigmap) -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "keycloak.keycloakConfigCli.configmapName" . }}
|
|
namespace: {{ include "common.names.namespace" . | quote }}
|
|
labels: {{- include "common.labels.standard" (dict "customLabels" .Values.commonLabels "context" .) | nindent 4 }}
|
|
app.kubernetes.io/component: keycloak-config-cli
|
|
app.kubernetes.io/part-of: keycloak
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" .) | nindent 4 }}
|
|
{{- end }}
|
|
data:
|
|
{{- range $fileName, $fileContent := .Values.keycloakConfigCli.configuration }}
|
|
{{- if $fileContent }}
|
|
{{ $fileName }}: |
|
|
{{- include "common.tplvalues.render" (dict "value" $fileContent "context" $) | nindent 4 }}
|
|
{{- else }}
|
|
{{- ($.Files.Glob $fileName).AsConfig | nindent 2 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|