From bd9664d0da5a43d06897207b2012728da3657fa5 Mon Sep 17 00:00:00 2001 From: Quentin Campos Date: Wed, 22 Apr 2026 09:11:37 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20tailscale:=20expose=20argocd=20o?= =?UTF-8?q?ver=20private=20network?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- system/tailscale/argocd-expose.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 system/tailscale/argocd-expose.yaml diff --git a/system/tailscale/argocd-expose.yaml b/system/tailscale/argocd-expose.yaml new file mode 100644 index 0000000..6968539 --- /dev/null +++ b/system/tailscale/argocd-expose.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: Service +metadata: + name: argocd-server-tailscale + namespace: argocd + annotations: + tailscale.com/expose: "true" + tailscale.com/hostname: "argocd" +spec: + type: LoadBalancer + selector: + app.kubernetes.io/name: argocd-server + ports: + - name: https + port: 443 + targetPort: 8080 \ No newline at end of file