Skip to content

Commit 2ede123

Browse files
authored
Rename StorageClass in examples (#24)
1 parent 28372b5 commit 2ede123

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

examples/kubernetes/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ It will cover [Persistent Volumes/Persistent Volume Claims (PV/PVC)](https://kub
77
and [Storage Classes](https://kubernetes.io/docs/concepts/storage/storage-classes/).
88

99
If a [StorageClass](https://kubernetes.io/docs/concepts/storage/storage-classes/)
10-
is not provided in the examples, the `scw-fs` storage class will be used.
10+
is not provided in the examples, the `sfs-standard` storage class will be used.
1111

1212
## PVC & Deployment
1313

@@ -41,7 +41,7 @@ spec:
4141
volumeMode: Filesystem
4242
accessModes:
4343
- ReadWriteOnce
44-
storageClassName: scw-fs
44+
storageClassName: sfs-standard
4545
csi:
4646
driver: filestorage.csi.scaleway.com
4747
volumeHandle: fr-par/11111111-1111-1111-111111111111
@@ -55,7 +55,7 @@ spec:
5555
- fr-par
5656
```
5757
58-
Once the PV is created, create a PVC with the same attributes (here `scw-fs`
58+
Once the PV is created, create a PVC with the same attributes (here `sfs-standard`
5959
as storage class and a size of 100G):
6060

6161
```bash
@@ -73,7 +73,7 @@ kubectl apply -f importing/pod.yaml
7373
[StorageClasses](https://kubernetes.io/docs/concepts/storage/storage-classes/)
7474
offer a way to easily create different types of [Volumes](https://kubernetes.io/docs/concepts/storage/persistent-volumes/).
7575

76-
In the installation guide, a basic storage class is deployed: `scw-fs` that
76+
In the installation guide, a basic storage class is deployed: `sfs-standard` that
7777
will provision standard Scaleway File Systems. We will see here how to customize
7878
different storage classes. The provisioner will always be `filestorage.csi.scaleway.com`.
7979

examples/kubernetes/importing/pv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
volumeMode: Filesystem
99
accessModes:
1010
- ReadWriteMany
11-
storageClassName: scw-fs
11+
storageClassName: sfs-standard
1212
csi:
1313
driver: filestorage.csi.scaleway.com
1414
volumeHandle: fr-par/11111111-1111-1111-111111111111

examples/kubernetes/importing/pvc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ spec:
88
resources:
99
requests:
1010
storage: 100G
11-
storageClassName: scw-fs
11+
storageClassName: sfs-standard
1212
volumeName: test-pv

examples/kubernetes/pvc-deployment/pvc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ spec:
88
resources:
99
requests:
1010
storage: 100G
11-
storageClassName: scw-fs
11+
storageClassName: sfs-standard

0 commit comments

Comments
 (0)