Last active
January 18, 2022 00:53
-
-
Save vfarcic/a94dffef7d6dc60f79570d351c92408d to your computer and use it in GitHub Desktop.
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
###################### | |
# Create The Cluster # | |
###################### | |
# Make sure that you're using eksctl v0.1.5+. | |
# Follow the instructions from https://github.com/weaveworks/eksctl to intall eksctl. | |
export AWS_ACCESS_KEY_ID=[...] # Replace [...] with AWS access key ID | |
export AWS_SECRET_ACCESS_KEY=[...] # Replace [...] with AWS secret access key | |
export AWS_DEFAULT_REGION=us-west-2 | |
export NAME=devops25 | |
mkdir -p cluster | |
eksctl create cluster \ | |
-n $NAME \ | |
-r $AWS_DEFAULT_REGION \ | |
--kubeconfig cluster/kubecfg-eks \ | |
--node-type t2.small \ | |
--nodes 3 \ | |
--nodes-max 9 \ | |
--nodes-min 3 | |
export KUBECONFIG=$PWD/cluster/kubecfg-eks | |
################## | |
# Install Tiller # | |
################## | |
kubectl create \ | |
-f https://raw.githubusercontent.com/vfarcic/k8s-specs/master/helm/tiller-rbac.yml \ | |
--record --save-config | |
helm init --service-account tiller | |
kubectl -n kube-system \ | |
rollout status deploy tiller-deploy | |
####################### | |
# Destroy the cluster # | |
####################### | |
eksctl delete cluster -n devops25 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment