This message was deleted.
# general
a
This message was deleted.
b
You want to create the Persistent Volume that uses hostpath first with a similar manifest
Copy code
kind: PersistentVolume
apiVersion: v1
metadata:
  name: hostpath-pv
spec:
  capacity:
    storage: 1Gi
  accessModes:
    - ReadWriteOnce
  reclaimPolicy:
    - Recycle
  hostPath:
    path: "/data"
Then create the PVC that binds with that PV
133 Views