Skip to content

Commit 68ac825

Browse files
authored
Correct wrong bool type to string in EFS static PV yaml
spec.csi.volumeAttributes are not allowed to configure the value with bool type, so correct it as string type in the yaml. * Reference: https://issues.redhat.com/browse/OSDOCS-4490
1 parent 7567b5f commit 68ac825

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/persistent-storage-csi-efs-static-pv.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
driver: efs.csi.aws.com
3838
volumeHandle: fs-ae66151a <2>
3939
volumeAttributes:
40-
encryptInTransit: false <3>
40+
encryptInTransit: "false" <3>
4141
----
4242
<1> `spec.capacity` does not have any meaning and is ignored by the CSI driver. It is used only when binding to a PVC. Applications can store any amount of data to the volume.
4343
<2> `volumeHandle` must be the same ID as the EFS volume you created in AWS. If you are providing your own access point, `volumeHandle` should be ``<EFS volume ID>::<access point ID>``. For example: `fs-6e633ada::fsap-081a1d293f0004630`.

0 commit comments

Comments
 (0)