Forrest logo
back to context overview

eksctl

List of commands for eksctl:

  • 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
    explain this command
  • eksctl:tldr:43311 eksctl: Delete a cluster.
    $ eksctl delete cluster --name=${name} --region=${region}
    try on your machine
    explain this command
  • eksctl:tldr:6a111 eksctl: Create a cluster and prevent storing cluster credentials locally.
    $ eksctl create cluster --name=${name} --nodes=${4} --write-kubeconfig=false
    try on your machine
    explain this command
  • eksctl:tldr:6f736 eksctl: Create a cluster using a configuration file and skip creating nodegroups until later.
    $ eksctl create cluster --config-file= --without-nodegroup
    try on your machine
    explain this command
  • eksctl:tldr:90923 eksctl: Create a cluster and let `eksctl` manage cluster credentials under the `~/.kube/eksctl/clusters` directory.
    $ eksctl create cluster --name=${name} --nodes=${4} --auto-kubeconfig
    try on your machine
    explain this command
  • eksctl:tldr:c0480 eksctl: Create a cluster passing all configuration information in a file.
    $ eksctl create cluster --config-file=${filename}
    try on your machine
    explain this command
  • eksctl:tldr:cc7a0 eksctl: 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}
    try on your machine
    explain this command
  • eksctl:tldr:f268d eksctl: Create a basic cluster.
    $ eksctl create cluster
    try on your machine
    explain this command
back to context overview