You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
381 B
14 lines
381 B
{{- if .Values.startupScripts }}
|
|
{{- $highAvailability := gt (int .Values.replicas) 1 -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "keycloak.fullname" . }}-startup
|
|
labels:
|
|
{{- include "keycloak.labels" . | nindent 4 }}
|
|
data:
|
|
{{- range $key, $value := .Values.startupScripts }}
|
|
{{ $key }}: |
|
|
{{- tpl $value $ | nindent 4 }}
|
|
{{- end }}
|
|
{{- end -}}
|
|
|