use patched helm chart k8s-at-home/bitwardenrs

This commit is contained in:
ace
2021-01-18 19:38:16 +03:00
parent c26c7c66b0
commit 2cde98435f
17 changed files with 705 additions and 175 deletions

View File

@ -0,0 +1,11 @@
{{- if not .Values.bitwarden.admin.existingSecret.enabled }}
apiVersion: v1
kind: Secret
metadata:
name: {{ template "bitwarden.fullname" . }}
labels:
{{- include "bitwarden.labels" . | nindent 4 }}
type: Opaque
data:
admin-token: {{ randAlphaNum 48 | b64enc | quote }}
{{- end }}