2021-10-05 16:39:47 +02:00
|
|
|
# Disabled by default because the current dashboard does not need persistence
|
|
|
|
{{- if and (include "frontend.host" .) .Values.persistence.enabled (not .Values.persistence.existingClaim) }}
|
2021-09-30 14:37:30 +02:00
|
|
|
kind: PersistentVolumeClaim
|
|
|
|
apiVersion: v1
|
|
|
|
metadata:
|
|
|
|
name: {{ template "common.names.fullname" . }}
|
|
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
|
|
{{- if .Values.commonLabels }}
|
|
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.commonAnnotations }}
|
|
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
spec:
|
|
|
|
accessModes:
|
|
|
|
- {{ .Values.persistence.accessMode | quote }}
|
|
|
|
resources:
|
|
|
|
requests:
|
|
|
|
storage: {{ .Values.persistence.size | quote }}
|
2021-10-05 16:39:47 +02:00
|
|
|
{{ include "dashboard.storageClass" . }}
|
2021-09-30 14:37:30 +02:00
|
|
|
{{- if .Values.persistence.selector }}
|
|
|
|
selector: {{- include "common.tplvalues.render" (dict "value" .Values.persistence.selector "context" $) | nindent 4 }}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end }}
|