Version
                                
                                    
                                
                            
                            CSI to claim Persistent Volumes (PVC/PV)
Now we are ready to create Persistent volumes and use them in application Pods.
Create PVC using,
# file: sample-pvc.yaml
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: pv1
spec:
  storageClassName: kadalu.storage-pool-1
  accessModes:
    - ReadWriteOnce # You can also provide 'ReadWriteMany' here
  resources:
    requests:
      storage: 1Gi$ kubectl apply -f ./sample-pvc.yaml
persistentvolumeclaim/pv1 createdand check the status of PVC using,
$ kubectl get pvc
NAME   STATUS   VOLUME                                     CAPACITY   ACCESS MODES   STORAGECLASS     AGE
pv1    Bound    pvc-8cbe80f1-428f-11e9-b31e-525400f59aef   1Gi        RWO            kadalu.replica1  42sNow, this PVC is ready to be consumed in your application pod. You can see the sample usage of PVC in an application pod by below:
# file: sample-app.yaml
---
apiVersion: v1
kind: Pod
metadata:
  name: pod1
  labels:
    app: sample-app
spec:
  containers:
  - name: sample-app
    image: docker.io/kadalu/sample-pv-check-app:latest
    imagePullPolicy: IfNotPresent
    volumeMounts:
    - mountPath: "/mnt/pv"
      name: csivol
  volumes:
  - name: csivol
    persistentVolumeClaim:
      claimName: pv1
  restartPolicy: OnFailure$ kubectl apply -f ./sample-app.yaml
pod1 created