Add usage using hack/verify-examples.sh

This commit is contained in:
Yuiko Mouri 2021-09-08 11:56:48 +09:00
parent 0ddb40824b
commit b8145d42b5

View File

@ -13,7 +13,7 @@ Please refer to [driver parameters](../../docs/driver-parameters.md) for more de
## Storage Class Usage (Dynamic Provisioning) ## Storage Class Usage (Dynamic Provisioning)
- Follow the folling command to create a `StorageClass`, and then `PersistentVolume` and `PersistentVolumeClaim` dynamically. - Follow the following command to create a `StorageClass`, and then `PersistentVolume` and `PersistentVolumeClaim` dynamically.
```bash ```bash
# create StorageClass # create StorageClass
@ -25,7 +25,7 @@ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nf
## PV/PVC Usage (Static Provisioning) ## PV/PVC Usage (Static Provisioning)
- Follow the folling command to create `PersistentVolume` and `PersistentVolumeClaim` statically. - Follow the following command to create `PersistentVolume` and `PersistentVolumeClaim` statically.
```bash ```bash
# create PV # create PV
@ -34,3 +34,14 @@ kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nf
# create PVC # create PVC
kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/deploy/example/pvc-nfs-csi-static.yaml kubectl create -f https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/deploy/example/pvc-nfs-csi-static.yaml
``` ```
## Deployment/Statefulset Usage
- Follow the following command to create `Deployment` and `Statefulset` .
```bash
# create Deployment and Statefulset
git clone https://github.com/kubernetes-csi/csi-driver-nfs.git
cd csi-driver-nfs
./hack/verify-examples.sh
```