-
Notifications
You must be signed in to change notification settings - Fork 1
EKS Cluster
dx edited this page Nov 16, 2025
·
1 revision
The Kubernetes cluster is created using the official Terraform EKS module.
After terraform apply, export the kubeconfig:
terraform output secure_shop_eks_kubeconfig > kubeconfig_secure_shop
export KUBECONFIG=$PWD/kubeconfig_secure_shopkubectl get nodesExpected result: worker nodes are in the Ready state.
kubectl get pods -A
kubectl get svc
kubectl describe node <node-name>