15 lines
468 B
YAML
15 lines
468 B
YAML
|
{{- if not .Values.artifactory.persistence.customBinarystoreXmlSecret }}
|
||
|
kind: Secret
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: {{ template "artifactory-ha.fullname" . }}-binarystore
|
||
|
labels:
|
||
|
app: {{ template "artifactory-ha.name" . }}
|
||
|
chart: {{ template "artifactory-ha.chart" . }}
|
||
|
heritage: {{ .Release.Service }}
|
||
|
release: {{ .Release.Name }}
|
||
|
stringData:
|
||
|
binarystore.xml: |-
|
||
|
{{ tpl .Values.artifactory.persistence.binarystoreXml . | indent 4 }}
|
||
|
{{- end }}
|