professional_cloud developer_转换结果

更新时间: 试题数量: 购买人数: 提供作者:

有效期: 个月

章节介绍: 共有个章节

收藏
搜索
题库预览
You have deployed an HTTP(s) Load Balancer with the gcloud commands shown below. export NAME-load-balancer # create network gcloud compute networks create $$[NAME] # add instance gcloud compute instances create $$[NAME]-backend-instance-1 --subnet $$[NAME] --no address # create the instance group gcloud compute instance-groups unmanaged create $$[NAME]-i gcloud compute instance-groups unmanaged set-named-ports $$[NAME]-i --named-ports http:80 gcloud compute instance-groups unmanaged add-instances $$[NAME]-i --instances $$[NAME]-instance-1 # configure health checks gcloud compute health-checks create http $$[NAME]-http-hc --port 80 # create backend service gcloud compute backend-services create $$[NAME]-http-bes --health-checks $$[NAME]-http-hc --protocol HTTP --port-name http --global gcloud compute backend-services add-backend $$[NAME]-http-bes --instance-group $$[NAME]-i --balancing-mode RATE --max-rate 100000 --capacity-scaler 1.0 --global --instance-group-zone us-east1-d # create url maps and forwarding rule gcloud compute url-maps create $$[NAME]-http-urlmap --default-service $$[NAME]-http-bes gcloud compute target-http-proxies create $$[NAME]-http-proxy --url-map $$[NAME]-http-urlmap gcloud compute forwarding-rules create $$[NAME]-http-fw --global --ip-protocol TCP --target-http-proxy $$[NAME]-http-proxy --ports 80 Health checks to port 80 on the Compute Engine virtual machine instance are failing and no traffic is sent to your instances. You want to resolve the problem. Which commands should you run?