## Google Cloud compute options for Kubernetes -> Getting started with GKE
## Prerequisites: Ensure that the GKE and Cloud operations API are enabled in your GCP project.
PROJECT_ID=”<your-project-id>"
gcloud services enable apigateway.googleapis.com
gcloud services enable servicemanagement.googleapis.com
gcloud services enable servicecontrol.googleapis.com
gcloud config set project <<project id>
gcloud config set compute/zone us-central1-a
gcloud container clusters create hello-cluster — enable-autoscaling — min-nodes=1 — max-nodes=3
git clone https://github.com/574n13y/microservices-demo.git
cd microservices-demo
kubectl apply -f ./release/kubernetes-manifests.yaml
kubectl get ns
kubectl get pods
kubectl get service frontend-external | awk '{print $4}'
The application will open once you click on the link:
**********