SchemaValidationError

消息名称SchemaValidationError
消息代码IST0106
描述The resource has a schema validation error.
等级Error

当您的 Istio 配置没有成功通过架构验证时,会出现此消息。

例如,您将会看到以下错误:

  1. Error [IST0106] (VirtualService ratings-bogus-weight-default.default) Schema validation error: percentage 888 is not in range 0..100

并且您的 Istio 中包含以下配置

  1. apiVersion: networking.istio.io/v1alpha3
  2. kind: VirtualService
  3. metadata:
  4. name: ratings-bogus-weight-default
  5. namespace: default
  6. spec:
  7. hosts:
  8. - ratings
  9. http:
  10. - route:
  11. - destination:
  12. host: ratings
  13. subset: v1
  14. weight: 999
  15. - destination:
  16. host: ratings
  17. subset: v2
  18. weight: 888

在这个示例中,错误信息是指 weight 属性被检查出值错误或无效。

要解决此问题, 参考消息详情的字段来了解哪些属性无效或错误,更正所有错误后,重新尝试。

有关 Istio 资源架构设计的更详细信息,请看配置参考.