Last active
March 23, 2020 00:44
-
-
Save vfarcic/5c52c165bf9c5002fedb61f8a5d6a6d1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 # | |
###################### | |
gcloud auth login | |
REGION=us-east1 | |
MACHINE_TYPE=n1-standard-1 | |
gcloud container clusters \ | |
create devops24 \ | |
--region $REGION \ | |
--machine-type $MACHINE_TYPE \ | |
--enable-autoscaling \ | |
--num-nodes 1 \ | |
--max-nodes 3 \ | |
--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 \ | |
--region $REGION \ | |
--quiet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment