簡體   English   中英

安裝后正在重新創建 Istio ingress pod

[英]Istio ingress pod is re-creating after installation

我已經使用istioctl在 AKS 集群中安裝了 istio 1.6.7。 我已經使用init命令啟用了 istio 操作符。 當我嘗試使用 kubectl 在已安裝的 istio 系統之上使用單獨的 yaml 啟用 Grafana 和kubectl時,將重新創建 istio ingress gateway pod 並刪除我的自定義配置。

文檔指定我們可以使用kubectl安裝附加組件。

插件 yaml 如下:

apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
spec:
  values:
   grafana:
      enabled: true

我假設您指的是獨立操作員安裝指南。 更新配置時,您必須更改原始清單而不是創建新清單。 您指定的清單不包含任何配置文件或元數據信息。 它應該如下所示:

apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
metadata:
  namespace: istio-system
  name: example-istiocontrolplane
spec:
  profile: default
  addonComponents:
    grafana:
      enabled: true

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM