mirror of
https://github.com/bitnami/charts.git
synced 2026-08-10 14:15:55 +08:00
[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:
@@ -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 | `""` |
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user