由于凭据名称,使用SDS的Istio Ingress Gateway失败

时间:2019-04-16 18:16:03

标签: gateway kubernetes-ingress istio

我正在尝试遵循https://istio.io/docs/tasks/traffic-management/secure-ingress/sds/

中的说明

但是,当尝试创建Ingress网关时,出现某种形式的验证错误。

很多谷歌搜索都找不到我!

Error from server: error when creating "STDIN": admission webhook "pilot.validation.istio.io" denied the request: error decoding configuration: YAML decoding error: selector:
  istio: ingressgateway
servers:
- hosts:
  - httpbin.example.com
  port:
    name: https
    number: 443
    protocol: HTTPS
  tls:
    credentialName: httpbin-credential
    mode: SIMPLE
 unknown field "credentialName" in v1alpha3.Server_TLSOptions

1 个答案:

答案 0 :(得分:3)

错误特别是

  v1alpha3.Server_TLSOptions中的

未知字段“ credentialName”

您尝试使用的功能仅在Istio 1.1中可用;您需要升级到1.1系列(可能是1.1.2或1.1.3才能利用安全修补程序)才能实现此目的。

相关问题