Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 761 Bytes

File metadata and controls

42 lines (25 loc) · 761 Bytes

AWS EKS

Terraform

Planning: terraform plan -var-file dev.tfvars

Applying: terraform apply -var-file dev.tfvars

Destroying: terraform destroy -var-file dev.tfvars

References:

AWS

Set the cluster config for kubeconfig: aws eks --region sa-east-1 update-kubeconfig --name training-eks-tsoutello

Checking the clusters: aws eks list-clusters

References:

Kubernetes commands

Checking the resources

  • kubectl get all
  • kubectl get svc
  • kubectl get services

References: