mirror of
https://github.com/ZwareBear/JFrog-Cloud-Installers.git
synced 2026-01-21 09:06:57 -06:00
12 lines
305 B
YAML
12 lines
305 B
YAML
{{- if and (not .Values.global.vault.existingSecret) (not .Values.vault.enabled) }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: root-vault-secret
|
|
labels:
|
|
{{- include "pipelines.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
data:
|
|
token: {{ tpl .Values.global.vault.token . | b64enc | quote }}
|
|
{{- end }}
|