Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
panelIconId1f6e0
panelIcon:tools:
panelIconText🛠
bgColor#FFFAE6

This is an advanced topic for platform engineers.

Create a new root module in the cluster directory of your infrastructure repository.

Code Block
infra/
  cluster/
    sandbox-v2/

You can copy the configuration from the previous version of your cluster, updating the versions of Flightdeck and Kubernetes. We recommend running the latest version of Kubenetes supported by EKS.

Code Block
module "cluster" {
  # Update this to the latest version of Flightdeck
  source = "github.com/thoughtbot/flightdeck//aws/cluster?ref=UPDATE"

  # Use the name of your previous cluster and bump the version
  name        = "mycompany-sandbox-v2"
  
  # Use the latest version of Kubernetes supported by EKS.
  k8s_version = "UPDATE"

  # Copy existing configuration for node groups
  node_groups = {}
}

...

Info

The AWS Platform Guide now lives at thoughtbot.com

Visit Create a new sandbox cluster to access this page's content