Table of Contents
See docs here
The purpose of this doc is to install the tools necessary to provision the EKS cluster, work with the cluster, install Optimize and provision the cluster itself.
brew tap weaveworks/tap
brew install weaveworks/tap/eksctl
Note
|
you may need to install XCODE |
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /
Create the files
-
nano ~/.aws/credentials
-
nano ~/.aws/config
-
copy the IAM user creds into the file
eksctl create cluster --name camunda-cluster --version 1.17 --region us-west-2 --nodegroup-name camunda-nodes --node-type t2.micro --nodes 2
eksctl delete cluster --name camunda-cluster
Tip
|
See the cluster you provisioned in AWS EKS Console |
aws eks --region us-west-2 update-kubeconfig --name camunda-cluster
See more about CLI install here and config quickstart here