Setting up kubectl
Install kubectl
kubectl
Follow these instructions.
Install the AWS CLI
Follow these instructions.
Configure the AWS CLI
aws --version # should be >= 1.16
aws configure
Update kubeconfig
kubeconfig
aws eks update-kubeconfig --name=<cluster_name> --region=<region>
Test kubectl
kubectl
kubectl get pods
Last updated