Istio - istioctl

목차

공식 홈페이지

Istioctl 설치

brew install istioctl

Istio Profile 확인

istioctl profile list

특정 Profile 설치

istioctl install --set profile=demo 

Profile 제거

istioctl uninstall --purge

Proxy Config 확인

istioctl proxy-status

Proxy 상태 확인

istioctl ps

cluster 정보

istioctl proxy-config clusters <pod 이름> -n <namespace>

endpoints 정보

istioctl proxy-config endpoints <pod 이름> -n <namespace>
istioctl proxy-config endpoints <pod 이름> -n <namespace> --cluster <cluster 정보> -o yaml
  hostStatuses:
... 생략
locality:
region: ap-northeast-2
zone: ap-northeast-2a
... 생략
locality:
region: ap-northeast-2
zone: ap-northeast-2c

listener 정보

istioctl proxy-config endpoints activity-5c6cfc9986-t2snx

route 정보

istioctl proxy-config route
Share