You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
309 B
13 lines
309 B
You can create a hostpath-backed persistent volume with a persistent volume claim like this:
|
|
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: local-path-pvc
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
storageClassName: {{ .Values.storageClass.name }}
|
|
resources:
|
|
requests:
|
|
storage: 2Gi
|
|
|