Forrest logo
back to the eksctl tool

eksctl:tldr:27ef3

eksctl: List the details about a cluster or all of the clusters.
$ eksctl get cluster --name=${name} --region=${region}
try on your machine

This command eksctl get cluster is used to retrieve information about an Amazon Elastic Kubernetes Service (EKS) cluster. The --name flag is used to specify the name of the cluster, and the --region flag is used to specify the AWS region in which the cluster is located.

In the command, ${name} and ${region} are variables. You need to replace them with the actual name and region of the EKS cluster you want to retrieve information for. For example, if your cluster's name is "my-cluster" and it is located in the "us-west-2" region, the command would appear as follows:

eksctl get cluster --name=my-cluster --region=us-west-2

When executed, this command will fetch details about the specified EKS cluster, including its name, status, version, endpoint, VPC configuration, and other relevant information.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the eksctl tool