Google Cloud Platform, offered by Google, is a suite of cloud computing services.
The Google Cloud Console provides a web-based, graphical user interface that you can use to manage your Google Cloud projects and resources.
In this series, practise labs & learn GCP components.
Google Kubernetes Engine (GKE) provides a managed environment for deploying, managing, and scaling your containerized applications using Google infrastructure.
The GKE environment consists of multiple machines (specifically, Compute Engine instances) grouped together to form a cluster.
Google Cloud console - https://console.cloud.google.com
Kubernetes Engine API
Container Registry API
export MY_ZONE=us-central1-a
gcloud container clusters create webfrontend --zone $MY_ZONE --num-nodes 2
kubectl version
kubectl create deploy nginx --image=nginx:1.17.10
kubectl get pods
kubectl expose deployment nginx --port 80 --type LoadBalancer
kubectl get services
kubectl scale deployment nginx --replicas 3
kubectl get pods
kubectl get services
You can subscribe my channel for more educational videos on Cloud & related topics.
Download
0 formats
No download links available.
Lab 5 | Google Cloud Platform Tutorial for Beginners | Google Kubernetes Engine Demo | NatokHD