[GKE] Deploying an application to the cluster
gcloud config set compute/zone us-central1-a gcloud container clusters create [CLUSTER-NAME] kubectl create deployment hello-server --image=gcr.io/google-samples/hello-app:1.0 kubectl expose deployment hello-server --type=LoadBalancer --port 8080 kubectl get service Access : http://[EXTERNAL-IP]:8080 gcloud container clusters delete [CLUSTER-NAME]