개발
kubernetes istio 설치
eun2ce
2023. 1. 16. 07:30
최신 Istio Releases를 다운로드 한다. (본문에서는 Istio 1.9.6 사용)
다운 받은 폴더로 이동 후, Istioctl 경로를 추가한다.
curl -L https://istio.io/downloadIstio | sh -
cd istio-1.9.6
export PATH=$PWD/bin:$PATH
Istio가 제공하는 profile을 확인하고, 설치한다.
istioctl profile list
istioctl install --set profile=demo -y
kubectl label namespace default istio-injection=enabled
* demo 의 경우 가장 많은 컴포넌트를 설치한다.
* 다른 profile로 변경하고자 한다면 동일한 명령어에서 profile 만 변경해주면 된다.