通过使用私有注册表中的istioctl安装Istio

时间:2020-09-03 10:17:28

标签: istio

我需要从私有注册表中安装istio,我可以使用“ --set hub = xxx.xxx.io”设置私有注册表,但由于需要登录,因此找不到提供映像提取机密的方法。

1 个答案:

答案 0 :(得分:1)

我认为您要寻找的价值是global.imagePullSecrets。 与此相关的github issuedocumentation

global.imagePullSecrets []  Lists the secrets you need to use to pull Istio images from a private registry.

您应该可以通过以下方式进行更改

istioctl

istioctl install --set values.global.imagePullSecrets


istio运算符

apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
spec:
  values:
    global:
      imagePullSecrets:

此外,there也是在describe.istio上讨论的话题。