From 58c3dca8684328fd113104e546e2c814a84a6229 Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Sun, 29 Jun 2025 20:16:13 -0500 Subject: [PATCH] add traefik --- apps/traefik.yaml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 apps/traefik.yaml diff --git a/apps/traefik.yaml b/apps/traefik.yaml new file mode 100644 index 0000000..97797c9 --- /dev/null +++ b/apps/traefik.yaml @@ -0,0 +1,36 @@ +apiVersion: argoproj.io/v1alpha1 +kind: ApplicationSet +metadata: + name: traefik +spec: + goTemplate: true + goTemplateOptions: ["missingkey=error"] + generators: + - list: + elements: + - cluster: production + url: https://kubernetes.default.svc + chart: 36.2.0 + - cluster: staging + url: https://k3s-ctrl-lb.lab.kill0.net:6443 + chart: 36.2.0 + - cluster: development + url: https://k0s-ctrl-vip.lab.kill0.net:6443 + chart: 36.2.0 + template: + metadata: + name: 'traefik-{{.cluster}}' + spec: + project: default + source: + chart: traefik + repoURL: https://traefik.github.io/charts + targetRevision: '{{.chart}}' + helm: + releaseName: traefik + destination: + server: '{{.url}}' + syncPolicy: + automated: + prune: true + selfHeal: true