diff --git a/examples/README.md b/examples/README.md index 40b6fef26..db3f2bc5d 100644 --- a/examples/README.md +++ b/examples/README.md @@ -147,7 +147,7 @@ spec: resources: requests: storage: 1Gi - storageClassName: csi-rbd + storageClassName: csi-rbd-sc ``` Create a POD that uses this PVC: diff --git a/examples/cephfs/deployment.yaml b/examples/cephfs/deployment.yaml index 60185bddb..98ab7b14e 100644 --- a/examples/cephfs/deployment.yaml +++ b/examples/cephfs/deployment.yaml @@ -2,7 +2,7 @@ apiVersion: apps/v1 kind: Deployment metadata: - name: csicephfs-demo-depl + name: csi-cephfs-demo-depl labels: app: web-server spec: diff --git a/examples/cephfs/pod.yaml b/examples/cephfs/pod.yaml index 998a4d469..ca254b84c 100644 --- a/examples/cephfs/pod.yaml +++ b/examples/cephfs/pod.yaml @@ -2,7 +2,7 @@ apiVersion: v1 kind: Pod metadata: - name: csicephfs-demo-pod + name: csi-cephfs-demo-pod spec: containers: - name: web-server diff --git a/examples/cephfs/pvc.yaml b/examples/cephfs/pvc.yaml index 58723f702..8bc5ac671 100644 --- a/examples/cephfs/pvc.yaml +++ b/examples/cephfs/pvc.yaml @@ -9,4 +9,4 @@ spec: resources: requests: storage: 5Gi - storageClassName: csi-cephfs + storageClassName: csi-cephfs-sc diff --git a/examples/cephfs/storageclass.yaml b/examples/cephfs/storageclass.yaml index 771c33998..fb4fd06ca 100644 --- a/examples/cephfs/storageclass.yaml +++ b/examples/cephfs/storageclass.yaml @@ -2,7 +2,7 @@ apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: - name: csi-cephfs + name: csi-cephfs-sc provisioner: cephfs.csi.ceph.com parameters: # Comma separated list of Ceph monitors diff --git a/examples/rbd/pod-restore.yaml b/examples/rbd/pod-restore.yaml index fe2b06460..75510b60b 100644 --- a/examples/rbd/pod-restore.yaml +++ b/examples/rbd/pod-restore.yaml @@ -2,7 +2,7 @@ apiVersion: v1 kind: Pod metadata: - name: csirbd-restore-demo-pod + name: csi-rbd-restore-demo-pod spec: containers: - name: web-server diff --git a/examples/rbd/pod.yaml b/examples/rbd/pod.yaml index 504ba7896..29c09bc74 100644 --- a/examples/rbd/pod.yaml +++ b/examples/rbd/pod.yaml @@ -2,7 +2,7 @@ apiVersion: v1 kind: Pod metadata: - name: csirbd-demo-pod + name: csi-rbd-demo-pod spec: containers: - name: web-server diff --git a/examples/rbd/pvc-restore.yaml b/examples/rbd/pvc-restore.yaml index 9db03c073..3fcff6b0f 100644 --- a/examples/rbd/pvc-restore.yaml +++ b/examples/rbd/pvc-restore.yaml @@ -4,7 +4,7 @@ kind: PersistentVolumeClaim metadata: name: rbd-pvc-restore spec: - storageClassName: csi-rbd + storageClassName: csi-rbd-sc dataSource: name: rbd-pvc-snapshot kind: VolumeSnapshot diff --git a/examples/rbd/pvc.yaml b/examples/rbd/pvc.yaml index bb82b42a0..adfc743a6 100644 --- a/examples/rbd/pvc.yaml +++ b/examples/rbd/pvc.yaml @@ -9,4 +9,4 @@ spec: resources: requests: storage: 1Gi - storageClassName: csi-rbd + storageClassName: csi-rbd-sc diff --git a/examples/rbd/raw-block-pvc.yaml b/examples/rbd/raw-block-pvc.yaml index ee37ff33c..4853aebc3 100644 --- a/examples/rbd/raw-block-pvc.yaml +++ b/examples/rbd/raw-block-pvc.yaml @@ -10,4 +10,4 @@ spec: resources: requests: storage: 1Gi - storageClassName: csi-rbd + storageClassName: csi-rbd-sc diff --git a/examples/rbd/storageclass.yaml b/examples/rbd/storageclass.yaml index 0ec689477..41aa121a5 100644 --- a/examples/rbd/storageclass.yaml +++ b/examples/rbd/storageclass.yaml @@ -2,7 +2,7 @@ apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: - name: csi-rbd + name: csi-rbd-sc provisioner: rbd.csi.ceph.com parameters: # Comma separated list of Ceph monitors