From e167ab56bd5af91829d30a36e63ca47a22df9fb8 Mon Sep 17 00:00:00 2001 From: Christian Rost Date: Fri, 3 Apr 2020 01:45:38 +0200 Subject: [PATCH] add fstype parameter for gce pd --- content/en/docs/concepts/storage/storage-classes.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/en/docs/concepts/storage/storage-classes.md b/content/en/docs/concepts/storage/storage-classes.md index 694ea7742f..9d6fc1c3c5 100644 --- a/content/en/docs/concepts/storage/storage-classes.md +++ b/content/en/docs/concepts/storage/storage-classes.md @@ -281,6 +281,7 @@ metadata: provisioner: kubernetes.io/gce-pd parameters: type: pd-standard + fstype: ext4 replication-type: none ``` @@ -292,6 +293,8 @@ parameters: is specified, volumes are generally round-robin-ed across all active zones where Kubernetes cluster has a node. `zone` and `zones` parameters must not be used at the same time. +* `fstype`: `ext4` or `xfs`. Default: `ext4`. The defined filesystem type must be supported by the host operating system. + * `replication-type`: `none` or `regional-pd`. Default: `none`. If `replication-type` is set to `none`, a regular (zonal) PD will be provisioned.