Skip to content

Instantly share code, notes, and snippets.

@William-Yeh
Created August 23, 2019 08:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save William-Yeh/56adcc36df84e38e6de9513d26d79357 to your computer and use it in GitHub Desktop.
Save William-Yeh/56adcc36df84e38e6de9513d26d79357 to your computer and use it in GitHub Desktop.
eksctl bootstrap
#!/bin/bash
#
# @see https://github.com/pahud/amazon-eks-workshop/blob/master/00-getting-started/create-eks-with-eksctl.md
#
cleanup() {
rm -rf awscli-bundle
rm -f awscli-bundle.zip
}
cleanup
rm -rf awscli-bundle*
curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
unzip awscli-bundle.zip
sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment