Closed ande28em closed 8 months ago
It's because newer version(1.4.0) of mountpoint-s3-csi-driver is only compatible of Bottlerocket, and we're using Amazon linux, you need to downgrade the addon mountpoint-s3-csi-driver to v1.0.0, refer to Distros Support Matrix
I'll update the code later to fix that. You can also try it yourself.
Run following command to install fixed version of aws-mountpoint-s3-csi-driver addon
region="us-west-2" # Modify the region to your current region.
account=$(aws sts get-caller-identity --query Account --output text)
eksctl create addon --name aws-mountpoint-s3-csi-driver --version v1.0.0-eksbuild.1 --cluster Comfyui-Cluster --service-account-role-arn "arn:aws:iam::${account}:role/EKS-S3-CSI-DriverRole-${account}-${region}" --force
Doc has been revised.
After successfully following all prior steps and deploying the comfyui service, the pod hangs on
ContainerCreating
due to a failed mount. What am I missing?