From b5acdf28b52a624634a76564c7cca054299e851e Mon Sep 17 00:00:00 2001 From: Kochetkov S Date: Tue, 25 Aug 2026 18:40:55 +0300 Subject: [PATCH] ++ fix vad ingressgateway values schema, expose 30080/30443 --- .../istio-gateway/vad/istio-gateway.yaml | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/infrastructure/istio-gateway/vad/istio-gateway.yaml b/infrastructure/istio-gateway/vad/istio-gateway.yaml index bd1020d..67bc48a 100644 --- a/infrastructure/istio-gateway/vad/istio-gateway.yaml +++ b/infrastructure/istio-gateway/vad/istio-gateway.yaml @@ -12,6 +12,20 @@ spec: - name: istiod namespace: istio-system values: - global: - imagePullSecrets: - - regcred + service: + type: NodePort + ports: + - name: status-port + port: 15021 + protocol: TCP + targetPort: 15021 + - name: http2 + port: 80 + protocol: TCP + targetPort: 80 + nodePort: 30080 + - name: https + port: 443 + protocol: TCP + targetPort: 443 + nodePort: 30443