From f58613e5bbe8315ddc4c2d28800a1648fdfb12aa Mon Sep 17 00:00:00 2001 From: Linus Vogel Date: Sat, 27 Jun 2026 18:04:41 +0200 Subject: [PATCH] nodeport --- helm/istiod/templates/istio-service.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 helm/istiod/templates/istio-service.yaml diff --git a/helm/istiod/templates/istio-service.yaml b/helm/istiod/templates/istio-service.yaml new file mode 100644 index 0000000..0aac761 --- /dev/null +++ b/helm/istiod/templates/istio-service.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: Service +metadata: + name: istio-ingressgateway + namespace: istio-system +spec: + type: NodePort + selector: + istio: ingressgateway + ports: + - name: status-port + port: 15021 + targetPort: 15021 + nodePort: 32751 + - name: http + port: 80 + targetPort: 80 + nodePort: 10080 \ No newline at end of file