From a8936e96bbd5d2bffa4ab8a5ae42aa2150bf94d4 Mon Sep 17 00:00:00 2001 From: Linus Vogel Date: Sat, 27 Jun 2026 18:14:28 +0200 Subject: [PATCH] ingress gateway --- helm/istiod/templates/ingress-gateway.yaml | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 helm/istiod/templates/ingress-gateway.yaml diff --git a/helm/istiod/templates/ingress-gateway.yaml b/helm/istiod/templates/ingress-gateway.yaml new file mode 100644 index 0000000..aa2fb6f --- /dev/null +++ b/helm/istiod/templates/ingress-gateway.yaml @@ -0,0 +1,31 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + name: istio-ingressgateway + namespace: istio-ingress +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: istio-ingressgateway + namespace: istio-ingress +spec: + replicas: 1 + selector: + matchLabels: + istio: ingressgateway + template: + metadata: + labels: + istio: ingressgateway + annotations: + inject.istio.io/templates: gateway + sidecar.istio.io/inject: "true" + spec: + serviceAccountName: istio-ingressgateway + containers: + - name: istio-proxy + image: auto + ports: + - containerPort: 8080 + - containerPort: 15021 \ No newline at end of file