eksctl
code:bash
# クラスター作成 便利コマンド
eksctl create cluster --name ${cluster-name} --nodegroup-name ${nodegroup-name} --ssh-public-key ${ssh-key-file-path} --managed --spot --instance-types=t2.small,t3.small --asg-access --external-dns-access --full-ecr-access --alb-ingress-access --vpc-private-subnets=${private-subnet-ids} --vpc-public-subnets=${public-subnet-ids} --with-oidc
# クラスター操作で利用するAWS Profileの更新(MFA利用時など)
aws eks update-kubeconfig --profile ${profile-name} --name ${cluster-name} --region ${region}