github.com/replicatedcom/ship@v0.50.0/integration/init/istio-1.0.3/expected/.ship/upstream/charts/grafana/templates/pvc.yaml (about)

     1  {{- if .Values.persist }}
     2  kind: PersistentVolumeClaim
     3  apiVersion: v1
     4  metadata:
     5    name: istio-grafana-pvc
     6    labels:
     7      app: istio-grafana
     8      chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
     9      release: {{ .Release.Name }}
    10      heritage: {{ .Release.Service }}
    11  spec:
    12    storageClassName: {{ .Values.storageClassName }}
    13    accessModes:
    14      - ReadWriteOnce
    15    resources:
    16      requests:
    17        storage: 5Gi
    18  {{- end }}