Cloud Infra Architecture (AWS)/AWS Build

[Trouble Shooting] AWS EKS rabbitmq pod 생성시 EBS 볼륨 에러 발생 "default-scheduler Successfully assigned default/rabbitmq-5d797cbcfd-8tv6s to ip-172-31-0-33.ap-northeast-2.compute.internal Warning FailedAttachVolume 70s (x2 over 3m11s) attachdetach-co

seongduck 2024. 10. 20. 23:30

해당 에러는 AWS EBS CSI 드라이버가 없을 때 발생한다.

 

해결법

eksctl utils associate-iam-oidc-provider --region <your-region> --cluster <your-cluster-name> --approve
eksctl create addon --name aws-ebs-csi-driver --cluster <your-cluster-name> --region <your-region> --force