透過其 GCP URI 定義 loadBalancerIP

透過其 GCP URI 定義 loadBalancerIP

我正在將我的 GKE 服務配置為與內部負載平衡器配合使用,例如GCP 文件

apiVersion: v1
kind: Service
metadata:
  name: [NAME]
  annotations:
    cloud.google.com/load-balancer-type: "Internal"
spec:
  type: LoadBalancer
  loadBalancerIP: [IP-ADDRESS]
  ...

我之前在GCP中分配了內部IP作為ILB位址,在API中顯示為:

> gcloud compute addresses list --project=[PROJECT] --uri
...
https://www.googleapis.com/compute/v1/projects/[PROJECT]/regions/us-central1/addresses/[NAME]
...

它工作得很好,但問題是:有沒有辦法透過 my 的 URI 引用 IP 位址service.yaml,或者我總是必須複製它的值?

相關內容