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