我想在EKS集群中启用功能网关,因为我想使用io2 PVC。我正在遵循这份文档。https://github.com/kubernetes-sigs/aws-ebs-csi-driver,并显示以下内容。但是,在eksctl中,我看不到任何选项来创建启用这些功能或传递这些选项的节点组。
我该怎么做呢?
Enable flag --allow-privileged=true for kubelet and kube-apiserver
Enable kube-apiserver feature gates --feature-gates=CSINodeInfo=true,CSIDriverRegistry=true,CSIBlockVolume=true,VolumeSnapshotDataSource=true
Enable kubelet feature gates --feature-gates=CSINodeInfo=true,CSIDriverRegistry=true,CSIBlockVolume=true发布于 2020-11-16 08:28:19
我发现了问题,我们不需要为EKS启用功能门。对于io2,我们必须使用alpha版本的CSI驱动程序,而不是稳定版本。如果你使用稳定版本并尝试io2 PVC,它将失败。
https://stackoverflow.com/questions/64841789
复制相似问题