Istio

    [Devops] istio 설치 후 Gateway, VirtualService 구성 하기

    intro istio를 설치 후에 쿠버네티스의 서비스(Service)와 연결하기위해 istio api를 사용하여 Gateway, Virtual Service를 생성해야합니다. istio 아키텍처 service.yaml apiVersion: v1 kind: Service metadata: labels: app: web-api service: web-api name: web-api namespace: frontend spec: ports: - port: 80 name: http protocol: TCP selector: app: web-apigateway.yaml apiVersion: networking.istio.io/v1alpha3 kind: Gateway metadata: name: web-gatewa..

    [Devops] istio 설치하기 (1.9.2 version)

    istio version releases istioctl install # istio download curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.9.2 TARGET_ARCH=x86_64 sh - # istioctl 환경변수 설정 export PATH=$PWD/bin:$PATH # istio version 확인 istioctl versionistio install istioctl install -f istio_values.yaml -n istio-systemistio_valuse.yaml 해당 yaml은 istioctl profile dump demo 명령어를 통해 얻은 demo yaml 입니다. profile의 종류는 아래와 같습니다. apiVe..