Google Cloud Fundamentals: Getting Started with GKE のレビュー
303271 件のレビュー
Nice lab
Njumwa Abubakar · 2年以上前にレビュー済み
Legierska Anna · 2年以上前にレビュー済み
Khaji Abdul Fazeel · 2年以上前にレビュー済み
Jauhari Anant · 2年以上前にレビュー済み
very satisfied.
Wahab Abdul · 2年以上前にレビュー済み
Gautam Ankit · 2年以上前にレビュー済み
Skraburska Alicja · 2年以上前にレビュー済み
Martin Alonso Antonio · 2年以上前にレビュー済み
amazing lab about GKE.
Zoubair Ali · 2年以上前にレビュー済み
ABDELAAL Aya · 2年以上前にレビュー済み
Belay abenezer · 2年以上前にレビュー済み
Great Lab
JAMWAKA ALVIN · 2年以上前にレビュー済み
Musorin Aleksandr · 2年以上前にレビュー済み
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)$
Camenha Adilson · 2年以上前にレビュー済み
Ramis Andreu · 2年以上前にレビュー済み
Barrett Andre · 2年以上前にレビュー済み
Boukesra Aymen · 2年以上前にレビュー済み
Melita Alberto · 2年以上前にレビュー済み
Amin Ahmed Esam · 2年以上前にレビュー済み
Guerroudj Abdennour · 2年以上前にレビュー済み
very interesting
galiero andrea · 2年以上前にレビュー済み
Tanna Aditi · 2年以上前にレビュー済み
Steenhout Amaury · 2年以上前にレビュー済み
Shawa Amon · 2年以上前にレビュー済み
Akinrimisi Akinwunmi · 2年以上前にレビュー済み
公開されたレビューが、製品を購入または使用した人によるものであることは保証されません。Google はこれらのレビューの検証を行っていません。