Created
August 23, 2019 08:15
-
-
Save William-Yeh/56adcc36df84e38e6de9513d26d79357 to your computer and use it in GitHub Desktop.
eksctl bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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