【发布时间】:2020-02-25 09:31:25
【问题描述】:
是否有适用于 Istio 的其他 API?
如果我们想通过 rest call 使用 istio,我们有什么选择? 我是 istio 新手。请帮助我!
【问题讨论】:
标签: google-cloud-platform cloud microservices istio envoyproxy
是否有适用于 Istio 的其他 API?
如果我们想通过 rest call 使用 istio,我们有什么选择? 我是 istio 新手。请帮助我!
【问题讨论】:
标签: google-cloud-platform cloud microservices istio envoyproxy
您可以将 Kubernetes API groups 用于 Istio CRD
例如,apiVersion: networking.istio.io/v1alpha3 可以通过/apis/networking.istio.io/v1alpha3 访问。
GET /apis/networking.istio.io/v1alpha3/gateways 将获得所有命名空间的网关。
可以在 istio github 页面上找到 istio API 的完整列表。
要直接访问 kubernetes REST API,请遵循 these 说明。
希望这会有所帮助。
【讨论】: