[bitnami/argo-cd] Fix issue with server.config (#8173)

* [bitnami/argo-cd] Fix issue with server.config

* Re-generate README
This commit is contained in:
Miguel Ángel Cabrera Miñagorri
2021-11-18 10:11:53 +01:00
committed by GitHub
parent 255116c5c9
commit 3da431157c
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -200,7 +200,7 @@ The command removes all the Kubernetes components associated with the chart and
| `server.logLevel` | ArgoCD server logs level | `info` |
| `server.configEnabled` | Enable Argo CD server config | `true` |
| `server.url` | Argo CD server base URL. Required when configuring SSO. Required when enabling dex. | `""` |
| `server.config` | Argo CD server configuration that will end on the argocd-cm Config Map | `""` |
| `server.config` | Argo CD server configuration that will end on the argocd-cm Config Map | `{}` |
| `server.ingress.enabled` | Enable the creation of an ingress for the Argo CD server | `false` |
| `server.ingress.pathType` | Path type for the Argo CD server ingress | `ImplementationSpecific` |
| `server.ingress.apiVersion` | Ingress API version for the Argo CD server ingress | `""` |
+3
View File
@@ -17,5 +17,8 @@ metadata:
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
data:
{{- if .Values.config.styles }}
ui.cssurl: "./custom/custom.styles.css"
{{- end }}
{{- include "common.tplvalues.render" ( dict "value" .Values.server.config "context" $ ) | nindent 2 }}
{{- end }}
+3 -6
View File
@@ -536,7 +536,7 @@ server:
url: ""
## Argo CD server config. This object will be directly rendered
## @param server.config [string] Argo CD server configuration that will end on the argocd-cm Config Map
## @param server.config [object] Argo CD server configuration that will end on the argocd-cm Config Map
## Ref: https://argoproj.github.io/argo-cd/operator-manual/user-management/
## E.g:
## repositories:
@@ -573,15 +573,12 @@ server:
## clientSecret: $dex.github.clientSecret
## orgs:
## - name: your-github-org
config: |
{{- if .Values.config.styles }}
ui.cssurl: "./custom/custom.styles.css"
{{- end }}
config:
## Argo CD external base URL. Required when configuring SSO. Required when enabling dex.
## E.g:
## url: https://argocd.example.com
##
url: {{ .Values.server.url | quote }}
url: "{{ .Values.server.url }}"
## Argo CD instance label key
##
application.instanceLabelKey: argocd.argoproj.io/instance