Remove gp3 from supported EBS volume types
gp3 is not supported for the in-tree plugin "kubernetes.io/aws-ebs", only for external EBS CSI driver. So we have to remove it here See following issue which shows that it does not work: https://github.com/kubernetes/website/issues/33036#issuecomment-1110766774
This commit is contained in:
@@ -49,7 +49,7 @@ metadata:
|
|||||||
name: standard
|
name: standard
|
||||||
provisioner: kubernetes.io/aws-ebs
|
provisioner: kubernetes.io/aws-ebs
|
||||||
parameters:
|
parameters:
|
||||||
type: gp3
|
type: gp2
|
||||||
reclaimPolicy: Retain
|
reclaimPolicy: Retain
|
||||||
allowVolumeExpansion: true
|
allowVolumeExpansion: true
|
||||||
mountOptions:
|
mountOptions:
|
||||||
@@ -271,9 +271,9 @@ parameters:
|
|||||||
fsType: ext4
|
fsType: ext4
|
||||||
```
|
```
|
||||||
|
|
||||||
* `type`: `io1`, `gp2`, `gp3`, `sc1`, `st1`. See
|
* `type`: `io1`, `gp2`, `sc1`, `st1`. See
|
||||||
[AWS docs](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html)
|
[AWS docs](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html)
|
||||||
for details. Default: `gp3`.
|
for details. Default: `gp2`.
|
||||||
* `zone` (Deprecated): AWS zone. If neither `zone` nor `zones` is specified, volumes are
|
* `zone` (Deprecated): AWS zone. If neither `zone` nor `zones` is specified, volumes are
|
||||||
generally round-robin-ed across all active zones where Kubernetes cluster
|
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.
|
has a node. `zone` and `zones` parameters must not be used at the same time.
|
||||||
|
|||||||
Reference in New Issue
Block a user