From 4faeb67ff312075c48d444556b6100144d250f11 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sat, 16 May 2026 20:18:40 -0500 Subject: [PATCH] feat: add tailscale ingress --- .../cl01tl/helm/komodo/templates/ingress.yaml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 clusters/cl01tl/helm/komodo/templates/ingress.yaml diff --git a/clusters/cl01tl/helm/komodo/templates/ingress.yaml b/clusters/cl01tl/helm/komodo/templates/ingress.yaml new file mode 100644 index 000000000..2b9065980 --- /dev/null +++ b/clusters/cl01tl/helm/komodo/templates/ingress.yaml @@ -0,0 +1,28 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: {{ .Release.Name }}-tailscale + namespace: {{ .Release.Namespace }} + labels: + app.kubernetes.io/name: {{ .Release.Name }}-tailscale + {{- include "custom.labels" . | nindent 4 }} + tailscale.com/proxy-class: no-metrics + annotations: + tailscale.com/experimental-forward-cluster-traffic-via-ingress: "true" +spec: + ingressClassName: tailscale + tls: + - hosts: + - komodo-cl01tl + secretName: komodo-cl01tl + rules: + - host: komodo-cl01tl + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: komodo-main + port: + name: http -- 2.49.1