13 lines
395 B
YAML
13 lines
395 B
YAML
|
{{ if .Values.artifactory.configMaps }}
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ template "artifactory-ha.fullname" . }}-configmaps
|
||
|
labels:
|
||
|
app: {{ template "artifactory-ha.fullname" . }}
|
||
|
chart: {{ .Chart.Name }}-{{ .Chart.Version }}
|
||
|
heritage: {{ .Release.Service }}
|
||
|
release: {{ .Release.Name }}
|
||
|
data:
|
||
|
{{ tpl .Values.artifactory.configMaps . | indent 2 }}
|
||
|
{{ end -}}
|