Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 775 Bytes

File metadata and controls

29 lines (25 loc) · 775 Bytes

AWS EKS deployment Terraform template:

  • Initialize the project:
terraform init
  • Run terraform apply:
terraform apply --auto-approve
  • To set your eks profile context:
aws eks update-kubeconfig --region your-region --name your-eks-cluster-name

* To switch to a different eks profile:
```bash
aws eks update-kubeconfig --region your-region --name your-eks-cluster-name --profile your-other-profile
  • To check if k8s service account has admin access, run:
kubectl auth can-i "*" "*"
  • To get specific EKS add-on version using AWS cli run:
# Getting pod-identity-agent version as example

aws eks describe-addon-versions --addon-name eks-pod-identity-agent --kubernetes-version 1.32