由于凭据名称,使用 SDS 的 Istio Ingress Gateway 失败
Istio Ingress Gateway using SDS failing due to credential Name
我正在尝试按照以下说明进行操作: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
错误具体是
unknown field "credentialName" in v1alpha3.Server_TLSOptions
您尝试使用的功能仅在 Istio 1.1 中可用;您需要升级到 1.1 系列(可能是 1.1.2 或 1.1.3 以利用安全修复程序)才能做到这一点。
我正在尝试按照以下说明进行操作: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
错误具体是
unknown field "credentialName" in v1alpha3.Server_TLSOptions
您尝试使用的功能仅在 Istio 1.1 中可用;您需要升级到 1.1 系列(可能是 1.1.2 或 1.1.3 以利用安全修复程序)才能做到这一点。