Add configManagementPlugins option to argo-cd (#63)
This commit is contained in:
parent
4a81cb0714
commit
315ea0516e
2 changed files with 18 additions and 5 deletions
|
@ -28,3 +28,7 @@ data:
|
||||||
oidc.config: |
|
oidc.config: |
|
||||||
{{ toYaml .Values.config.oidcConfig | indent 4 }}
|
{{ toYaml .Values.config.oidcConfig | indent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.config.configManagementPlugins }}
|
||||||
|
configManagementPlugins: |
|
||||||
|
{{ toYaml .Values.config.configManagementPlugins | indent 4 }}
|
||||||
|
{{- end }}
|
||||||
|
|
|
@ -122,6 +122,15 @@ config:
|
||||||
githubSecret:
|
githubSecret:
|
||||||
gitlabSecret:
|
gitlabSecret:
|
||||||
bitbucketSecret:
|
bitbucketSecret:
|
||||||
|
configManagementPlugins:
|
||||||
|
# - name: pluginName
|
||||||
|
# init: # Optional command to initialize application source directory
|
||||||
|
# command: ["sample command"]
|
||||||
|
# args: ["sample args"]
|
||||||
|
# generate: # Command to generate manifests YAML
|
||||||
|
# command: ["sample command"]
|
||||||
|
# args: ["sample args"]
|
||||||
|
|
||||||
rbac:
|
rbac:
|
||||||
# # An RBAC policy .csv file containing additional policy and role definitions.
|
# # An RBAC policy .csv file containing additional policy and role definitions.
|
||||||
# # See https://github.com/argoproj/argo-cd/blob/master/docs/rbac.md on how to write RBAC policies.
|
# # See https://github.com/argoproj/argo-cd/blob/master/docs/rbac.md on how to write RBAC policies.
|
||||||
|
|
Loading…
Reference in a new issue