Files
devops-infra-helm-charts-gcp/helm-templates/jfrog/templates/artifactory-access-config.yaml
T
2026-08-26 03:39:42 +05:30

16 lines
492 B
YAML

{{- if and .Values.access.accessConfig (not .Values.artifactory.unifiedSecretInstallation) }}
apiVersion: v1
kind: Secret
metadata:
name: {{ template "artifactory.fullname" . }}-access-config
labels:
app: {{ template "artifactory.name" . }}
chart: {{ template "artifactory.chart" . }}
heritage: {{ .Release.Service }}
release: {{ .Release.Name }}
type: Opaque
stringData:
access.config.patch.yml: |
{{ tpl (toYaml .Values.access.accessConfig) . | indent 4 }}
{{- end }}