From 0cdfdf6b3c325c0339ebc184f7813e92f5d5f614 Mon Sep 17 00:00:00 2001 From: Linus Vogel Date: Thu, 2 Jul 2026 20:23:55 +0200 Subject: [PATCH] autocommit --- helm/istio/templates/service.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 helm/istio/templates/service.yaml diff --git a/helm/istio/templates/service.yaml b/helm/istio/templates/service.yaml new file mode 100644 index 0000000..d834600 --- /dev/null +++ b/helm/istio/templates/service.yaml @@ -0,0 +1,23 @@ +apiVersion: v1 +kind: Service +metadata: + name: istio-ingressgateway + namespace: istio-ingress +spec: + type: NodePort + externalTrafficPolicy: Local + selector: + istio: ingressgateway + ports: + - name: status-port + port: 15021 + targetPort: 15021 + nodePort: 31021 + - name: http2 + port: 80 + targetPort: 8080 + nodePort: 30080 + - name: https + port: 443 + targetPort: 8443 + nodePort: 30443