Skip to content

Instantly share code, notes, and snippets.

@vfarcic
Last active May 27, 2019 09:58
Show Gist options
  • Save vfarcic/e3a2be59b0294438707b6b48adeb1a68 to your computer and use it in GitHub Desktop.
Save vfarcic/e3a2be59b0294438707b6b48adeb1a68 to your computer and use it in GitHub Desktop.
######################
# Create The Cluster #
######################
gcloud auth login
ZONE=$(gcloud compute zones list \
--filter "region:(us-east1)" \
| awk '{print $1}' \
| tail -n 1)
ZONES=$(gcloud compute zones list \
--filter "region:(us-east1)" \
| tail -n +2 \
| awk '{print $1}' \
| tr '\n' ',')
MACHINE_TYPE=n1-highcpu-2
gcloud container clusters \
create devops24 \
--zone $ZONE \
--node-locations $ZONES \
--machine-type $MACHINE_TYPE \
--enable-autoscaling \
--num-nodes 1 \
--max-nodes 1 \
--min-nodes 1
kubectl create clusterrolebinding \
cluster-admin-binding \
--clusterrole cluster-admin \
--user $(gcloud config get-value account)
kubectl apply \
-f https://raw.githubusercontent.com/kubernetes/ingress-nginx/1cd17cd12c98563407ad03812aebac46ca4442f2/deploy/mandatory.yaml
kubectl apply \
-f https://raw.githubusercontent.com/kubernetes/ingress-nginx/1cd17cd12c98563407ad03812aebac46ca4442f2/deploy/provider/cloud-generic.yaml
#######################
# Destroy the cluster #
#######################
gcloud container clusters \
delete devops24 \
--zone $ZONE \
--quiet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment