17 lines
492 B
YAML
17 lines
492 B
YAML
kind: ConfigMap
|
|
apiVersion: v1
|
|
metadata:
|
|
name: {{ template "artifactory-ha.fullname" . }}-installer-info
|
|
labels:
|
|
app: {{ template "artifactory-ha.name" . }}
|
|
chart: {{ template "artifactory-ha.chart" . }}
|
|
heritage: {{ .Release.Service }}
|
|
release: {{ .Release.Name }}
|
|
data:
|
|
installer-info.json: |
|
|
{{- if .Values.installerInfo -}}
|
|
{{- tpl .Values.installerInfo . | nindent 4 -}}
|
|
{{- else -}}
|
|
{{ (tpl ( .Files.Get "files/installer-info.json" | nindent 4 ) .) }}
|
|
{{- end -}}
|