Updated chart so that it worked better as a subchart, is more configurable and better documented
All checks were successful
Deploy the Helm Chart / build (push) Successful in 11s
All checks were successful
Deploy the Helm Chart / build (push) Successful in 11s
This commit is contained in:
parent
82908c043c
commit
ae8f4ad22b
11 changed files with 222 additions and 145 deletions
|
|
@ -1,15 +1,15 @@
|
|||
{{- if .Values.vault.create.enabled -}}
|
||||
{{- if .Values.create.enabled -}}
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: {{ .Release.Name }}-vault-creds
|
||||
name: {{ include "vault.fullname" . }}-creds
|
||||
labels:
|
||||
app: {{ .Release.Name }}-vault
|
||||
app: {{ include "vault.fullname" . }}
|
||||
spec:
|
||||
storageClassName: vault-role-vars-rook-cephfs
|
||||
storageClassName: {{ .Values.create.snapshotServer.vaultCredsPVC.storageClassName }}
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
resources:
|
||||
requests:
|
||||
storage: 512Mi
|
||||
storage: {{ .Values.create.snapshotServer.vaultCredsPVC.size }}
|
||||
{{- end -}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue