mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 06:47:28 +08:00
17 lines
470 B
YAML
17 lines
470 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "jenkins.fullname" . }}
|
|
labels:
|
|
app: {{ template "jenkins.fullname" . }}
|
|
chart: {{ include "jenkins.chart" . }}
|
|
release: "{{ .Release.Name }}"
|
|
heritage: "{{ .Release.Service }}"
|
|
type: Opaque
|
|
data:
|
|
{{ if .Values.jenkinsPassword }}
|
|
jenkins-password: {{ default "" .Values.jenkinsPassword | b64enc | quote }}
|
|
{{ else }}
|
|
jenkins-password: {{ randAlphaNum 10 | b64enc | quote }}
|
|
{{ end }}
|