From 4a27a7a49c920d115307282ad01bca0437d77338 Mon Sep 17 00:00:00 2001 From: Jan Safranek Date: Mon, 22 Mar 2021 19:06:49 +0100 Subject: [PATCH] csi.storage.k8s.io/fstype is case sensitive The external-provisioner does not treat csi.storage.k8s.io/fstype as case-insensitive. Update the documentation accordingly. --- docs/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/README.md b/docs/README.md index 80746f9615..81580c0e7c 100644 --- a/docs/README.md +++ b/docs/README.md @@ -33,7 +33,7 @@ There are several optional parameters that could be passed into `CreateVolumeReq | Parameters | Values | Default | Description | |-----------------------------|----------------------------------------|----------|---------------------| -| "csi.storage.k8s.io/fsType" | xfs, ext2, ext3, ext4 | ext4 | File system type that will be formatted during volume creation | +| "csi.storage.k8s.io/fstype" | xfs, ext2, ext3, ext4 | ext4 | File system type that will be formatted during volume creation. This parameter is case sensitive! | | "type" | io1, io2, gp2, gp3, sc1, st1,standard | gp3* | EBS volume type | | "iopsPerGB" | | | I/O operations per second per GiB. Required when io1 or io2 volume type is specified. If this value multiplied by the size of a requested volume produces a value below the minimum or above the maximum IOPs allowed for the volume type, as documented [here](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html), AWS will return an error and volume creation will fail | | "iops" | | 3000 | I/O operations per second. Only effetive when gp3 volume type is specified. If empty, it will set to 3000 as documented [here](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html). | @@ -43,7 +43,7 @@ There are several optional parameters that could be passed into `CreateVolumeReq **Notes**: * `gp3` is currently not supported on outposts. Outpost customers need to use a different type for their volumes. -* The parameters are case insensitive. +* Unless explicitly noted, all parameters are case insensitive (e.g. "kmsKeyId", "kmskeyid" and any other combination of upper/lowercase characters can be used). # EBS CSI Driver on Kubernetes Following sections are Kubernetes specific. If you are Kubernetes user, use followings for driver features, installation steps and examples.