From acf5c7f28423f0ac9feabaf82e433f02b1ef90c1 Mon Sep 17 00:00:00 2001 From: Christopher Hase Date: Mon, 16 Jun 2025 15:07:16 +0200 Subject: [PATCH] fix(pipeline): fix argocd path routing due to domain --- .../stacks/core/argocd/manifests/argocd-server-ingress.yaml | 2 +- template/stacks/core/argocd/values.yaml | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/template/stacks/core/argocd/manifests/argocd-server-ingress.yaml b/template/stacks/core/argocd/manifests/argocd-server-ingress.yaml index 80e492e..b48f465 100644 --- a/template/stacks/core/argocd/manifests/argocd-server-ingress.yaml +++ b/template/stacks/core/argocd/manifests/argocd-server-ingress.yaml @@ -23,7 +23,7 @@ spec: name: argocd-server port: number: 80 - path: /argocd + path: / pathType: Prefix tls: - hosts: diff --git a/template/stacks/core/argocd/values.yaml b/template/stacks/core/argocd/values.yaml index 26ac60e..dfb7f96 100644 --- a/template/stacks/core/argocd/values.yaml +++ b/template/stacks/core/argocd/values.yaml @@ -4,8 +4,6 @@ global: configs: params: server.insecure: true - server.basehref: /argocd - server.rootpath: /argocd cm: application.resourceTrackingMethod: annotation timeout.reconciliation: 60s @@ -21,7 +19,7 @@ configs: clusters: - "*" accounts.provider-argocd: apiKey - url: https://{{{ .Env.DOMAIN_ARGOCD }}}/argocd + url: https://{{{ .Env.DOMAIN_ARGOCD }}} rbac: policy.csv: 'g, provider-argocd, role:admin'