关于“Implement Load Balancing on Compute Engine:挑戰研究室”的评价
评论
Ahmad A. · 评论1 day之前
,
Ravi B. · 评论1 day之前
TATIKONDA YASHWANTH .. · 评论1 day之前
Pascal G. · 评论1 day之前
Adrian Y. · 评论1 day之前
So hard
Valentin L. · 评论1 day之前
Brainy B. · 评论1 day之前
The verification doesn't work. I follow: Setup export INSTANCE_NAME=nucleus-jumphost-338 export REGION=us-east1 export ZONE=us-east1-b export FW_ALLOW_NETWORK_LB_NAME=grant-tcp-rule-731 export TAG_NETWORK_LB_NAME=network-lb-tag export FW_ALLOW_HEALTH_NAME=fw-allow-health-check export INSTANCE_TEMPLATE_NAME=lb-backend-template export INSTANCE_GROUP_NAME=lb-backend-group export BACKEND_SERVICE_NAME=web-backend-service Create SINGLE virtual machine gcloud compute instances create $INSTANCE_NAME \ --zone=$ZONE \ --tags=$TAG_NETWORK_LB_NAME \ --machine-type=e2-micro \ --image-family=debian-11 \ --image-project=debian-cloud Create an Application Load Balancer gcloud compute instance-templates create $INSTANCE_TEMPLATE_NAME \ --region=$REGION \ --network=default \ --subnet=default \ --tags=$TAG_NETWORK_LB_NAME \ --machine-type=e2-medium \ --image-family=debian-11 \ --image-project=debian-cloud \ --metadata=startup-script='#! /bin/bash apt-get update apt-get install -y nginx service nginx start sed -i -- "s/nginx/Google Cloud Platform - $HOSTNAME/" /var/www/html/index.nginx-debian.html ' gcloud compute instance-groups managed create $INSTANCE_GROUP_NAME \ --template=$INSTANCE_TEMPLATE_NAME --size=2 --zone=$ZONE gcloud compute firewall-rules create $FW_ALLOW_NETWORK_LB_NAME \ --target-tags $TAG_NETWORK_LB_NAME --allow tcp:80 Create fix IP gcloud compute addresses create lb-ipv4-1 \ --ip-version=IPV4 \ --global export LB_IPV4=$(gcloud compute addresses describe lb-ipv4-1 --format="get(address)" --global) Healthcheck gcloud compute health-checks create http http-basic-check \ --port 80 gcloud compute firewall-rules create $FW_ALLOW_HEALTH_NAME \ --network=default \ --action=allow \ --direction=ingress \ --source-ranges=130.211.0.0/22,35.191.0.0/16 \ --target-tags=$TAG_NETWORK_LB_NAME\ --rules=tcp:80 Backend service gcloud compute backend-services create $BACKEND_SERVICE_NAME \ --protocol=HTTP \ --port-name=http \ --health-checks=http-basic-check \ --global gcloud compute backend-services add-backend $BACKEND_SERVICE_NAME \ --instance-group=$INSTANCE_GROUP_NAME \ --instance-group-zone=$ZONE \ --global URL Map gcloud compute url-maps create web-map-http \ --default-service $BACKEND_SERVICE_NAME Target gcloud compute target-http-proxies create http-lb-proxy \ --url-map web-map-http Global forward gcloud compute forwarding-rules create http-content-rule \ --address=lb-ipv4-1\ --global \ --target-http-proxy=http-lb-proxy \ --ports=80 Load for I in {1..15} do curl $LB_IPV4 & sleep 1.5 done
Vinicio S. · 评论1 day之前
Anitha J. · 评论1 day之前
sakthivel R. · 评论1 day之前
Instructions are not CLEAR !!!!
Sujit S. · 评论1 day之前
Ritesh M. · 评论1 day之前
Enrique G. · 评论1 day之前
Vasco R. · 评论1 day之前
DADAN DARSONO 4. · 评论1 day之前
Fernando M. · 评论1 day之前
Madhan R. · 评论1 day之前
Khaing M. · 评论1 day之前
Prince K. · 评论1 day之前
Ravi B. · 评论1 day之前
Lluís A. · 评论1 day之前
Alok G. · 评论1 day之前
Nitesh J. · 评论1 day之前
Gayathri R. · 评论1 day之前
Huang D. · 评论1 day之前
我们无法确保发布的评价来自已购买或已使用产品的消费者。评价未经 Google 核实。