You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/kubernetes/user-guides/basic.md
+16
Original file line number
Diff line number
Diff line change
@@ -77,4 +77,20 @@ web-server 1/1 Running 0 1m
77
77
78
78
The list of recognized StorageClass [`parameters`](https://kubernetes.io/docs/concepts/storage/storage-classes/#parameters) is the same as the list of [CSI CreateVolume parameters](../../../README.md#createvolume-parameters).
79
79
80
+
Additional provisioning parameters are described
81
+
[here](https://kubernetes-csi.github.io/docs/external-provisioner.html), for
82
+
example the following `StorageClass` will format provisioned volumes as XFS.
83
+
84
+
```yaml
85
+
apiVersion: storage.k8s.io/v1
86
+
kind: StorageClass
87
+
metadata:
88
+
name: csi-gce-pd-xfs
89
+
provisioner: pd.csi.storage.gke.io
90
+
parameters:
91
+
type: pd-standard
92
+
csi.storage.k8s.io/fstype: xfs
93
+
volumeBindingMode: WaitForFirstConsumer
94
+
```
95
+
80
96
The list of recognized topology keys in [`allowedTopologies`](https://kubernetes.io/docs/concepts/storage/storage-classes/#allowed-topologies) is listed [here](../../../README.md#topology)
0 commit comments