diff options
author | makefunstuff <[email protected]> | 2024-06-28 14:42:09 +0200 |
---|---|---|
committer | makefunstuff <[email protected]> | 2024-06-28 14:42:09 +0200 |
commit | 5f14386dcdd3530c79a31678a1a3bf59e3ddb6ef (patch) | |
tree | da923ec2a7ab1f4184e9597a23e8287425b800d0 /tools/argocd/templates/secret.yaml | |
parent | 320b06cb81e0fe434aea56494684fae101a89dfc (diff) | |
download | k3s-lab-5f14386dcdd3530c79a31678a1a3bf59e3ddb6ef.tar.gz |
broken
Diffstat (limited to '')
-rw-r--r-- | tools/argocd/templates/secret.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/argocd/templates/secret.yaml b/tools/argocd/templates/secret.yaml new file mode 100644 index 0000000..c80372c --- /dev/null +++ b/tools/argocd/templates/secret.yaml @@ -0,0 +1,11 @@ +{{- if not (lookup "v1" "Secret" .Values.namespace "argocd-secret") }} +apiVersion: v1 +kind: Secret +metadata: + name: argocd-secret + namespace: {{ .Values.namespace }} +type: Opaque +data: + admin.password: {{ .Values.argocd.adminPassword | b64enc }} +{{- end }} + |