istio virtualservice

    [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..