无法再通过 UI 更新 Application Load Balancer(不支持的字段:“defaultRouteAction”)

问题描述 投票:0回答:1

我想使用 Google Cloud UI 来更新我的负载均衡器,但在尝试了一些设置后,我达到了只能通过 gcloud CLI 更新(或重置)它的状态。

它抱怨 UI 不支持“defaultRouteAction”。如何通过 gcloud CLI 重置或更新它以再次使用“将客户端重定向到不同的主机/路径”?

It should not redirect to single backend

google-cloud-platform gcloud google-cloud-load-balancer
1个回答
0
投票

我能够添加一个假的

pathMatcher
,这使得再次编辑负载均衡器成为可能:

defaultService: https://www.googleapis.com/compute/v1/projects/[YOUR_URL_MAP]
pathMatchers:
- defaultService: https://www.googleapis.com/compute/v1/projects/[YOUR_URL_MAP]
  name: www
  pathRules:
  - paths:
    - /search
    - /search/*
    service: https://www.googleapis.com/compute/v1/projects/[YOUR_URL_MAP]
© www.soinside.com 2019 - 2024. All rights reserved.