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

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

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

但是,在尝试创建Ingress Gateway时,我遇到了某种形式的验证错误。

很多谷歌搜索没有找到任何东西!

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
gateway kubernetes-ingress istio
1个回答
4
投票

错误是具体的

v1alpha3.Server_TLSOptions中的未知字段“credentialName”

您尝试使用的功能仅适用于Istio 1.1;你需要升级到1.1系列(可能是1.1.2或1.1.3以利用安全修复程序)来实现这个目标。

© www.soinside.com 2019 - 2024. All rights reserved.