From 925ee5517ab8ef2d62808e68655fffa0dcef510f Mon Sep 17 00:00:00 2001 From: Mans Ziesel Date: Fri, 25 Oct 2024 19:17:42 +0200 Subject: [PATCH] add argocd ingressroute --- argocd/base/argo-cd-ingressroute.yaml | 12 ++++++++++++ argocd/kustomization.yaml | 6 +++--- 2 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 argocd/base/argo-cd-ingressroute.yaml diff --git a/argocd/base/argo-cd-ingressroute.yaml b/argocd/base/argo-cd-ingressroute.yaml new file mode 100644 index 0000000..9eed12e --- /dev/null +++ b/argocd/base/argo-cd-ingressroute.yaml @@ -0,0 +1,12 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: argo-cd-ingressroute +spec: + routes: + - match: Host(`argocd.mziesel.nl`) + kind: Rule + services: + - name: argocd-server + port: 443 + tls: {} diff --git a/argocd/kustomization.yaml b/argocd/kustomization.yaml index 070c968..0781f01 100644 --- a/argocd/kustomization.yaml +++ b/argocd/kustomization.yaml @@ -4,6 +4,6 @@ kind: Kustomization namespace: argocd resources: -- base/argo-cd-namespace.yaml -- base/argo-cd-app-of-apps.yaml -- https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/ha/install.yaml + - https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/ha/install.yaml + - base/argo-cd-namespace.yaml + - base/argo-cd-app-of-apps.yaml