INGRESS_HOST Gists
Go through the prerequisites and installation details for deploying the INGRESS controller.
We'll cover the following...
GKE setup
Press + to interact
##################### Create a Cluster ###################### Only if you did not yet clone that repositorycd devops-catalog-codecd terraform-gke/simple# Only if you are not already logged ingcloud auth application-default logingcloud container get-server-config \--region us-east1# Replace `[...]` with a valid master version from the previous output.# It must be at least 1.16 or newer (e.g., 1.16.13-gke.1).export K8S_VERSION=[...]terraform initterraform apply \--var k8s_version=$K8S_VERSIONexport KUBECONFIG=$PWD/kubeconfigkubectl get nodescd ../../..######################## Destroy The Cluster ########################cd devops-catalog-code/terraform-gke/simpleterraform destroy \--var k8s_version=$K8S_VERSIONcd ../../..