blob: 25370acc7d6bf9361c8bd7776a666036b425285b [file] [log] [blame]
Mohammed Naser1581a352023-04-17 02:28:10 +00001You can create a hostpath-backed persistent volume with a persistent volume claim like this:
2
3apiVersion: v1
4kind: PersistentVolumeClaim
5metadata:
6 name: local-path-pvc
7spec:
8 accessModes:
9 - ReadWriteOnce
10 storageClassName: {{ .Values.storageClass.name }}
11 resources:
12 requests:
13 storage: 2Gi