crooked-lunch-29479
04/17/2023, 2:38 PMeksctl utils associate-iam-oidc-provider --cluster <Name-EKS-Cluster> --approve
2. Create the flyte-system
IAM role, attach the AmazonS3FullAccessservice
policy to it and associate the role with a new Kubernetes service account:
eksctl create iamserviceaccount --name <my-flyte-sa> --namespace flyte --cluster <my-eks-cluster> --region <region-code> --role-name flyte-system-role \
--attach-policy-arn arn:aws:iam::aws:policy/AmazonS3FullAccess --approve
billowy-army-68599
04/17/2023, 2:53 PMcrooked-lunch-29479
04/17/2023, 3:00 PMaws eks describe-cluster --region <region> --name <Name-EKS-Cluster> --query "cluster.identity.oidc.issuer" --output text
The more “learning” question for me is : “What are the packages I should be looking at if I need to run the cli commands using aws eks
, eksctl
. I don’t want to keep bothering the folks here 😄billowy-army-68599
04/17/2023, 3:01 PM