使用kubectl,我可以执行以下命令:
kubectl get serviceentries
然后我收到一些信息。但是 serviceentries 是自定义资源。那么,如何使用kubernetes客户端获取相同的信息呢?
Yaml例如:
apiVersion: networking.istio.io/v1alpha3
kind: ServiceEntry
metadata:
name: external-svc-https
spec:
hosts:
- api.dropboxapi.com
- www.googleapis.com
- api.facebook.com
location: MESH_EXTERNAL
ports:
- number: 443
name: https
protocol: TLS
resolution: DNS
有人知道正确的使用方法吗?