17 lines
551 B
YAML
17 lines
551 B
YAML
{{- if and (not .Values.systemYamlOverride.existingSecret) (not .Values.artifactory.unifiedSecretInstallation) }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "artifactory-ha.primary.name" . }}-system-yaml
|
|
labels:
|
|
app: {{ template "artifactory-ha.name" . }}
|
|
chart: {{ template "artifactory-ha.chart" . }}
|
|
component: {{ .Values.artifactory.name }}
|
|
heritage: {{ .Release.Service }}
|
|
release: {{ .Release.Name }}
|
|
type: Opaque
|
|
stringData:
|
|
system.yaml: |
|
|
{{ tpl .Values.artifactory.systemYaml . | indent 4 }}
|
|
{{- end }}
|