AWS
AWS (EKS)
tl;dr
eksctl create cluster -f - <<EOF
---
apiVersion: eksctl.io/v1alpha5
kind: ClusterConfig
metadata:
name: $USER-cluster
region: $AWS_REGION
managedNodeGroups:
- name: mng
instanceSelector:
vCPUs: 4
memory: 16
iam:
withOIDC: true
serviceAccounts:
- metadata:
name: ecr-poweruser
# set namespace to your developer namespace
namespace: $USER-dev
attachPolicyARNs:
- "arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryPowerUser"
EOFPermissions
Last updated
Was this helpful?

