Files
charts/bitnami/owncloud/templates/pv.yaml
Miguel Ruiz ccf7dfa72a [bitnami/owncloud] Add missing namespace metadata (#10150)
* [bitnami/owncloud] Add missing namespace metadata

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* Add quotes to $.Release.Namespace

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>
2022-05-11 15:51:35 +02:00

22 lines
871 B
YAML

{{- if and .Values.persistence.enabled .Values.persistence.hostPath (not .Values.persistence.existingClaim) -}}
apiVersion: v1
kind: PersistentVolume
metadata:
name: {{ include "common.names.fullname" . }}-owncloud
namespace: {{ .Release.Namespace | quote }}
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 }}
capacity:
storage: {{ .Values.persistence.size | quote }}
hostPath:
path: {{ .Values.persistence.hostPath | quote }}
{{- end -}}