Kubernetes Istio 설치/적용하기 (Kubernetes Istio service mesh)
1. Istio 설치 - 최신 Istio Releases를 다운로드 한다. (본문에서는 Istio 1.9.1 사용) 다운 받은 폴더로 이동 후, Istioctl 경로를 추가한다. curl -L https://istio.io/downloadIstio | sh - cd istio-1.9.1 export PATH=$PWD/bin:$PATH - Istio가 제공하는 profile을 확인하고, 설치한다. istioctl profile list istioctl install --set profile=demo -y kubectl label namespace default istio-injection=enabled 2. Sample Appl. 배포 - Istio 정상 동작을 확인하기 위해 MSA Appl.(BookIn..
2021.11.10