mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 07:06:56 -06:00
16 lines
602 B
YAML
Executable File
16 lines
602 B
YAML
Executable File
{{- if not (and .Values.artifactory.accessAdmin.secret .Values.artifactory.accessAdmin.dataKey) }}
|
|
{{- if .Values.artifactory.accessAdmin.password }}
|
|
kind: Secret
|
|
apiVersion: v1
|
|
metadata:
|
|
name: {{ template "artifactory-ha.fullname" . }}-bootstrap-creds
|
|
labels:
|
|
app: {{ template "artifactory-ha.name" . }}
|
|
chart: {{ template "artifactory-ha.chart" . }}
|
|
heritage: {{ .Release.Service }}
|
|
release: {{ .Release.Name }}
|
|
data:
|
|
bootstrap.creds: {{ (printf "access-admin@%s=%s" .Values.artifactory.accessAdmin.ip .Values.artifactory.accessAdmin.password) | b64enc }}
|
|
{{- end }}
|
|
{{- end }}
|