fix(argo-cd): Fix UI error caused by new config (#1480)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
This commit is contained in:
parent
67659d4db0
commit
07d63255ae
3 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.4.12
|
appVersion: v2.4.12
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 5.5.1
|
version: 5.5.2
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -19,4 +19,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
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"
|
||||||
|
|
|
@ -373,7 +373,7 @@ NAME: my-release
|
||||||
| configs.params."server.disable.auth" | bool | `false` | Disable Argo CD RBAC for user authentication |
|
| 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.enable.gzip" | bool | `false` | Enable GZIP compression |
|
||||||
| configs.params."server.insecure" | bool | `false` | Run server without TLS |
|
| 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.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."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 |
|
| configs.params."timeout.hard.reconciliation" | int | `0` | Time period in seconds for application hard resync |
|
||||||
|
|
|
@ -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 /
|
# -- Value for base href in index.html. Used if Argo CD is running behind reverse proxy under subpath different from /
|
||||||
server.basehref: /
|
server.basehref: /
|
||||||
# -- Used if Argo CD is running behind reverse proxy under subpath different from /
|
# -- Used if Argo CD is running behind reverse proxy under subpath different from /
|
||||||
server.rootpath: /
|
server.rootpath: ''
|
||||||
# -- Directory path that contains additional static assets
|
# -- Directory path that contains additional static assets
|
||||||
server.staticassets: /shared/app
|
server.staticassets: /shared/app
|
||||||
# -- Disable Argo CD RBAC for user authentication
|
# -- Disable Argo CD RBAC for user authentication
|
||||||
|
|
Loading…
Reference in a new issue