This is a simple guide to getting up and running with kubernetes on AWS.
Install the aws CLI.
brew install awscli
Setup a profile in the aws CLI and enter some credentials, I create an IAM account in my AWS and give it admin, then generate some credentials.
aws configure --profile wolfeidau_dev
Download the latest kebernetes release.
wget https://github.com/kubernetes/kubernetes/releases/download/v1.0.6/kubernetes.tar.gz
Extract the archive.
tar xvzf kubernetes.tar.gz
Navigate into the directory.
cd kubernetes
Download the awssetup.sh script.
Modify the header of the awssetup.sh
to reflect the settings you want, you will want to update AWS_DEFAULT_PROFILE
and AWS_S3_BUCKET
.
Lastly execute it.
./awssetup.sh start