# ingress gateway — chart: istio/gateway 1.30.0 # helm upgrade --install istio-ingressgateway istio/gateway -n istio-system -f 이 파일 # 외부 → 메시 인입. bare-metal(LB 없음)이므로 NodePort로 노출. name: istio-ingressgateway # Pod/Service 셀렉터 라벨. Gateway 리소스의 selector(istio: ingressgateway)와 일치해야 함. labels: app: istio-ingressgateway istio: ingressgateway service: type: NodePort # bare-metal: MetalLB 도입 전까지 NodePort. (LB 있으면 LoadBalancer) ports: - name: status-port port: 15021 targetPort: 15021 - name: http2 port: 80 targetPort: 8080 nodePort: 31080 - name: https port: 443 targetPort: 8443 nodePort: 31443 autoscaling: enabled: false replicaCount: 1 resources: requests: cpu: 50m memory: 128Mi