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