Setting up kubectl

Install kubectl

Follow these instructionsarrow-up-right.

Install the AWS CLI

Follow these instructionsarrow-up-right.

Configure the AWS CLI

aws --version  # should be >= 1.16

aws configure

Update kubeconfig

aws eks update-kubeconfig --name=<cluster_name> --region=<region>

Test kubectl

kubectl get pods

Last updated