From 97a277b62330d28ed3d02cc573c354ef45c7eb27 Mon Sep 17 00:00:00 2001 From: Joe Monk Date: Sun, 4 Aug 2024 15:44:29 +0100 Subject: [PATCH] Add a change to traefik, probably won't work --- clusters/kairos/traefik/helmconfig.yaml | 17 +++++++++++++++++ clusters/kairos/traefik/kustomization.yaml | 5 +++++ 2 files changed, 22 insertions(+) create mode 100644 clusters/kairos/traefik/helmconfig.yaml create mode 100644 clusters/kairos/traefik/kustomization.yaml diff --git a/clusters/kairos/traefik/helmconfig.yaml b/clusters/kairos/traefik/helmconfig.yaml new file mode 100644 index 0000000..5bc0b0f --- /dev/null +++ b/clusters/kairos/traefik/helmconfig.yaml @@ -0,0 +1,17 @@ +apiVersion: helm.cattle.io/v1 +kind: HelmChartConfig +metadata: + name: traefik + namespace: kube-system +spec: + valuesContent: |- + additionalArguments: + - "--api" + - "--api.dashboard=true" + - "--api.insecure=true" + ports: + traefik: + expose: true + providers: + kubernetesCRD: + allowCrossNamespace: true \ No newline at end of file diff --git a/clusters/kairos/traefik/kustomization.yaml b/clusters/kairos/traefik/kustomization.yaml new file mode 100644 index 0000000..4e4c0dc --- /dev/null +++ b/clusters/kairos/traefik/kustomization.yaml @@ -0,0 +1,5 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +namespace: kube-system +resources: +- helmconfig.yaml \ No newline at end of file