feat(argo-cd): add dex server extra args (#1146)
Signed-off-by: krrrr38 <k.kaizu38@gmail.com>
This commit is contained in:
parent
3be6c52a64
commit
4538e57aae
4 changed files with 9 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.2.5
|
appVersion: v2.2.5
|
||||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 3.33.6
|
version: 3.33.7
|
||||||
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:
|
||||||
|
@ -21,4 +21,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Fixed]: Fix typo of policy.csv comment in values"
|
- "[Added]: dex-server extraArgs"
|
||||||
|
|
|
@ -520,6 +520,7 @@ NAME: my-release
|
||||||
| dex.enabled | bool | `true` | Enable dex |
|
| dex.enabled | bool | `true` | Enable dex |
|
||||||
| dex.env | list | `[]` | Environment variables to pass to the Dex server |
|
| dex.env | list | `[]` | Environment variables to pass to the Dex server |
|
||||||
| dex.envFrom | list | `[]` (See [values.yaml]) | envFrom to pass to the Dex server |
|
| dex.envFrom | list | `[]` (See [values.yaml]) | envFrom to pass to the Dex server |
|
||||||
|
| dex.extraArgs | list | `[]` | Additional command line arguments to pass to the Dex server |
|
||||||
| dex.extraContainers | list | `[]` | Additional containers to be added to the dex pod |
|
| dex.extraContainers | list | `[]` | Additional containers to be added to the dex pod |
|
||||||
| dex.extraVolumeMounts | list | `[]` | Extra volumeMounts to the dex pod |
|
| dex.extraVolumeMounts | list | `[]` | Extra volumeMounts to the dex pod |
|
||||||
| dex.extraVolumes | list | `[]` | Extra volumes to the dex pod |
|
| dex.extraVolumes | list | `[]` | Extra volumes to the dex pod |
|
||||||
|
|
|
@ -56,6 +56,9 @@ spec:
|
||||||
command:
|
command:
|
||||||
- /shared/argocd-dex
|
- /shared/argocd-dex
|
||||||
- rundex
|
- rundex
|
||||||
|
{{- with .Values.dex.extraArgs }}
|
||||||
|
{{- . | toYaml | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.dex.containerSecurityContext }}
|
{{- if .Values.dex.containerSecurityContext }}
|
||||||
securityContext: {{- toYaml .Values.dex.containerSecurityContext | nindent 10 }}
|
securityContext: {{- toYaml .Values.dex.containerSecurityContext | nindent 10 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -363,6 +363,9 @@ dex:
|
||||||
# -- Dex name
|
# -- Dex name
|
||||||
name: dex-server
|
name: dex-server
|
||||||
|
|
||||||
|
# -- Additional command line arguments to pass to the Dex server
|
||||||
|
extraArgs: []
|
||||||
|
|
||||||
metrics:
|
metrics:
|
||||||
# -- Deploy metrics service
|
# -- Deploy metrics service
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
Loading…
Reference in a new issue