logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Create EKS Clusters - Manage Kubernetes with eksctl | Online Free DevTools by Hexmos

Create and manage Amazon EKS clusters efficiently with eksctl. Streamline Kubernetes deployment and scaling with this powerful command-line tool. Free online tool, no registration required.

eksctl

The official CLI for Amazon EKS. More information: https://eksctl.io.

  • Create a basic cluster:

eksctl create cluster

  • List the details about a cluster or all of the clusters:

eksctl get cluster --name={{name}} --region={{region}}

  • Create a cluster passing all configuration information in a file:

eksctl create cluster --config-file={{path/to/file}}

  • Create a cluster using a configuration file and skip creating nodegroups until later:

eksctl create cluster --config-file=<path> --without-nodegroup

  • Delete a cluster:

eksctl delete cluster --name={{name}} --region={{region}}

  • Create cluster and write cluster credentials to a file other than the default:

eksctl create cluster --name={{name}} --nodes={{4}} --kubeconfig={{path/to/config.yaml}}

  • Create a cluster and prevent storing cluster credentials locally:

eksctl create cluster --name={{name}} --nodes={{4}} --write-kubeconfig=false

  • Create a cluster and let eksctl manage cluster credentials under the ~/.kube/eksctl/clusters directory:

eksctl create cluster --name={{name}} --nodes={{4}} --auto-kubeconfig

See Also