Add ability to configure instanceLabelKey
This commit is contained in:
parent
9b74f69ec0
commit
018e82352c
2 changed files with 4 additions and 0 deletions
|
@ -39,6 +39,7 @@ $ helm install --name my-release argo/argo-cd
|
||||||
| config.repositories | string | `nil` | Configuration for remote Git repositories for Applications, see [values.yaml](./values.yaml) for format |
|
| config.repositories | string | `nil` | Configuration for remote Git repositories for Applications, see [values.yaml](./values.yaml) for format |
|
||||||
| config.resourceCustomizations | string | `nil` | resourceCustomizations can be used to create custom health checks for resources [https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/health.md#way-1-define-a-custom-health-check-in-argocd-cm-configmap] |
|
| config.resourceCustomizations | string | `nil` | resourceCustomizations can be used to create custom health checks for resources [https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/health.md#way-1-define-a-custom-health-check-in-argocd-cm-configmap] |
|
||||||
| config.url | string | `nil` | External URL for ArgoCD |
|
| config.url | string | `nil` | External URL for ArgoCD |
|
||||||
|
| config.instanceLabelKey | string | `nil` | Custom instance label key |
|
||||||
| config.webhook.bitbucketSecret | string | `nil` | BitBucket incoming webhook secret |
|
| config.webhook.bitbucketSecret | string | `nil` | BitBucket incoming webhook secret |
|
||||||
| config.webhook.githubSecret | string | `nil` | GitHub incoming webhook secret |
|
| config.webhook.githubSecret | string | `nil` | GitHub incoming webhook secret |
|
||||||
| config.webhook.gitlabSecret | string | `nil` | GitLab incoming webhook secret |
|
| config.webhook.gitlabSecret | string | `nil` | GitLab incoming webhook secret |
|
||||||
|
|
|
@ -24,6 +24,9 @@ data:
|
||||||
{{- if .Values.config.url }}
|
{{- if .Values.config.url }}
|
||||||
url: {{ .Values.config.url }}
|
url: {{ .Values.config.url }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.config.instanceLabelKey }}
|
||||||
|
application.instanceLabelKey: {{ .Values.config.instanceLabelKey }}
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.config.oidcConfig }}
|
{{- if .Values.config.oidcConfig }}
|
||||||
oidc.config: |
|
oidc.config: |
|
||||||
{{ toYaml .Values.config.oidcConfig | indent 4 }}
|
{{ toYaml .Values.config.oidcConfig | indent 4 }}
|
||||||
|
|
Loading…
Reference in a new issue