forked from argoproj/argo-helm
fix(argo-cd): Fix UI error caused by new config (#1480)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>main argo-cd-5.5.2
parent
67659d4db0
commit
07d63255ae
|
@ -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"
|
||||
|
|
|
@ -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 |
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue