How to view EKS resources

Stanley Meng
May 9, 2023

--

You can view the Kubernetes resources deployed to your EKS clusters with the AWS Management Console. e.g. pods, nodes, configMap(this one is important). To view Kubernetes resources using a command-line tool, use kubectl. For instance, to get the configMap:

kubectl get configmap -n kube-system   aws-auth -o yaml

BUT, BUT,…… You can NOT view Kubernetes resources with the AWS CLI or eksctl.

Ref: View Kubernetes resources — Amazon EKS

--

--

No responses yet