From 07d63255ae19ff1e08a22e71c932f686f8f619ac Mon Sep 17 00:00:00 2001 From: Petr Drastil Date: Wed, 21 Sep 2022 21:06:10 +0200 Subject: [PATCH] fix(argo-cd): Fix UI error caused by new config (#1480) Signed-off-by: Petr Drastil --- charts/argo-cd/Chart.yaml | 4 ++-- charts/argo-cd/README.md | 2 +- charts/argo-cd/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml index 339b47fd..947f2362 100644 --- a/charts/argo-cd/Chart.yaml +++ b/charts/argo-cd/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.4.12 description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. name: argo-cd -version: 5.5.1 +version: 5.5.2 home: https://github.com/argoproj/argo-helm icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png keywords: @@ -19,4 +19,4 @@ dependencies: condition: redis-ha.enabled annotations: artifacthub.io/changes: | - - "[Added]: REDIS_USERNAME environment variable added automatically based on externalRedis.username" + - "[Fixed]: Argo CD server returns 404 due to invalid default value" diff --git a/charts/argo-cd/README.md b/charts/argo-cd/README.md index 0117b4ad..68befdd7 100644 --- a/charts/argo-cd/README.md +++ b/charts/argo-cd/README.md @@ -373,7 +373,7 @@ NAME: my-release | configs.params."server.disable.auth" | bool | `false` | Disable Argo CD RBAC for user authentication | | configs.params."server.enable.gzip" | bool | `false` | Enable GZIP compression | | configs.params."server.insecure" | bool | `false` | Run server without TLS | -| configs.params."server.rootpath" | string | `"/"` | Used if Argo CD is running behind reverse proxy under subpath different from / | +| configs.params."server.rootpath" | string | `""` | Used if Argo CD is running behind reverse proxy under subpath different from / | | configs.params."server.staticassets" | string | `"/shared/app"` | Directory path that contains additional static assets | | configs.params."server.x.frame.options" | string | `"sameorigin"` | Set X-Frame-Options header in HTTP responses to value. To disable, set to "". | | configs.params."timeout.hard.reconciliation" | int | `0` | Time period in seconds for application hard resync | diff --git a/charts/argo-cd/values.yaml b/charts/argo-cd/values.yaml index 82560619..6160cbcc 100755 --- a/charts/argo-cd/values.yaml +++ b/charts/argo-cd/values.yaml @@ -320,7 +320,7 @@ configs: # -- Value for base href in index.html. Used if Argo CD is running behind reverse proxy under subpath different from / server.basehref: / # -- Used if Argo CD is running behind reverse proxy under subpath different from / - server.rootpath: / + server.rootpath: '' # -- Directory path that contains additional static assets server.staticassets: /shared/app # -- Disable Argo CD RBAC for user authentication