Bootstrap a Generally Acceptable EKS Cluster (Kubernetes on AWS)
brew install aws-cli && brew install aws-iam-authenticator
Create cluster with a template:
eksctl create cluster -f templates/standard.yaml --profile "${PROFILE}"
Delete cluster with a template:
eksctl delete cluster -f templates/standard.yaml --profile "${PROFILE}"
List available clusters:
eksctl get clusters --profile "${PROFILE}"
Choose cluster you'd like to get credentials for:
eksctl utils write-kubeconfig -c "${CLUSTER_NAME}" --profile "${PROFILE}"