Created
February 21, 2019 05:54
-
-
Save wongcyrus/25e6623b2db29117c257f69a0fd91f12 to your computer and use it in GitHub Desktop.
Basic Setup for eksworkshop.com
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
mkdir -p ~/.kube | |
sudo curl --silent --location -o /usr/local/bin/kubectl "https://amazon-eks.s3-us-west-2.amazonaws.com/1.11.5/2018-12-06/bin/linux/amd64/kubectl" | |
sudo chmod +x /usr/local/bin/kubectl | |
go get -u -v github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator | |
sudo mv ~/go/bin/aws-iam-authenticator /usr/local/bin/aws-iam-authenticator | |
sudo yum -y install jq | |
cd ~/environment | |
git clone https://github.com/brentley/ecsdemo-frontend.git | |
git clone https://github.com/brentley/ecsdemo-nodejs.git | |
git clone https://github.com/brentley/ecsdemo-crystal.git | |
rm -vf ${HOME}/.aws/credentials | |
export AWS_REGION=$(curl -s 169.254.169.254/latest/dynamic/instance-identity/document | jq -r .region) | |
echo "export AWS_REGION=${AWS_REGION}" >> ~/.bash_profile | |
aws configure set default.region ${AWS_REGION} | |
aws configure get default.region | |
curl --silent --location "https://github.com/weaveworks/eksctl/releases/download/latest_release/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp | |
sudo mv -v /tmp/eksctl /usr/local/bin | |
eksctl create cluster --name=eksworkshop-eksctl --nodes=3 --node-ami=auto --region=${AWS_REGION} | |
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
cd ~/environment | |
curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh | |
chmod +x get_helm.sh | |
./get_helm.sh | |
cat <<EoF > ~/environment/rbac.yaml | |
--- | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: tiller | |
namespace: kube-system | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: tiller | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: ClusterRole | |
name: cluster-admin | |
subjects: | |
- kind: ServiceAccount | |
name: tiller | |
namespace: kube-system | |
EoF | |
kubectl apply -f ~/environment/rbac.yaml | |
helm init --service-account tiller | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment