Google Cloud Fundamentals: Getting Started with GKE Reviews
303271 reviews
Nice lab
Abubakar N. · Reviewed over 2 years ago
Anna L. · Reviewed over 2 years ago
Abdul Fazeel K. · Reviewed over 2 years ago
Anant J. · Reviewed over 2 years ago
very satisfied.
Abdul W. · Reviewed over 2 years ago
Ankit G. · Reviewed over 2 years ago
Alicja S. · Reviewed over 2 years ago
Antonio M. · Reviewed over 2 years ago
amazing lab about GKE.
Ali Z. · Reviewed over 2 years ago
Aya A. · Reviewed over 2 years ago
abenezer B. · Reviewed over 2 years ago
Great Lab
ALVIN J. · Reviewed over 2 years ago
Aleksandr M. · Reviewed over 2 years ago
Welcome to Cloud Shell! Type "help" to get started. Your Cloud Platform project in this session is set to qwiklabs-gcp-00-f3b81ca6f19c. Use “gcloud config set project [PROJECT_ID]” to change to a different project. student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ export MY_ZONE="us-central1-a" student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ gcloud container clusters create webfrontend --zone $MY_ZONE --num-nodes 2 Default change: VPC-native is the default mode during cluster creation for versions greater than 1.21.0-gke.1500. To create advanced routes based clusters, please pass the `--no-enable-ip-alias` flag Default change: During creation of nodepools or autoscaling configuration changes for cluster versions greater than 1.24.1-gke.800 a default location policy is applied. For Spot and PVM it defaults to ANY, and for all other VM kinds a BALANCED policy is used. To change the default values use the `--location-policy` flag. Note: Your Pod address range (`--cluster-ipv4-cidr`) can accommodate at most 1008 node(s). Creating cluster webfrontend in us-central1-a... Cluster is being health-checked (master is healthy)...done. Created [https://container.googleapis.com/v1/projects/qwiklabs-gcp-00-f3b81ca6f19c/zones/us-central1-a/clusters/webfrontend]. To inspect the contents of your cluster, go to: https://console.cloud.google.com/kubernetes/workload_/gcloud/us-central1-a/webfrontend?project=qwiklabs-gcp-00-f3b81ca6f19c kubeconfig entry generated for webfrontend. NAME: webfrontend LOCATION: us-central1-a MASTER_VERSION: 1.27.3-gke.100 MASTER_IP: 34.71.65.165 MACHINE_TYPE: e2-medium NODE_VERSION: 1.27.3-gke.100 NUM_NODES: 2 STATUS: RUNNING student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kubectl version Client Version: v1.28.1 Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3 Server Version: v1.27.3-gke.100 student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kubectl create deploy nginx --image=nginx:1.17.10 deployment.apps/nginx created student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kubectl get pods NAME READY STATUS RESTARTS AGE nginx-6779589d85-p6s59 1/1 Running 0 18s student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kubectl expose deployment nginx --port 80 --type LoadBalancer service/nginx exposed student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kubectl get services NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes ClusterIP 10.52.0.1 <none> 443/TCP 5m52s nginx LoadBalancer 10.52.6.92 <pending> 80:30252/TCP 15s student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kubectl get services NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes ClusterIP 10.52.0.1 <none> 443/TCP 7m23s nginx LoadBalancer 10.52.6.92 34.67.99.144 80:30252/TCP 106s student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kubectl scale deployment nginx --replicas 3 deployment.apps/nginx scaled student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kube ctl get pods -bash: kube: command not found student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kubectl get pods NAME READY STATUS RESTARTS AGE nginx-6779589d85-p6s59 1/1 Running 0 4m9s nginx-6779589d85-sxrwl 1/1 Running 0 32s nginx-6779589d85-vhrp2 1/1 Running 0 32s student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$ kubectl get services NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes ClusterIP 10.52.0.1 <none> 443/TCP 9m4s nginx LoadBalancer 10.52.6.92 34.67.99.144 80:30252/TCP 3m27s student_01_2d2380c04493@cloudshell:~ (qwiklabs-gcp-00-f3b81ca6f19c)$
Adilson C. · Reviewed over 2 years ago
Andreu R. · Reviewed over 2 years ago
Andre B. · Reviewed over 2 years ago
Aymen B. · Reviewed over 2 years ago
Alberto M. · Reviewed over 2 years ago
Ahmed Esam A. · Reviewed over 2 years ago
Abdennour G. · Reviewed over 2 years ago
very interesting
andrea g. · Reviewed over 2 years ago
Aditi T. · Reviewed over 2 years ago
Amaury S. · Reviewed over 2 years ago
Amon S. · Reviewed over 2 years ago
Akinwunmi A. · Reviewed over 2 years ago
We do not ensure the published reviews originate from consumers who have purchased or used the products. Reviews are not verified by Google.