Add configManagementPlugins option to argo-cd (#63)
parent
4a81cb0714
commit
315ea0516e
|
@ -28,3 +28,7 @@ data:
|
|||
oidc.config: |
|
||||
{{ toYaml .Values.config.oidcConfig | indent 4 }}
|
||||
{{- end }}
|
||||
{{- if .Values.config.configManagementPlugins }}
|
||||
configManagementPlugins: |
|
||||
{{ toYaml .Values.config.configManagementPlugins | indent 4 }}
|
||||
{{- end }}
|
||||
|
|
|
@ -122,6 +122,15 @@ config:
|
|||
githubSecret:
|
||||
gitlabSecret:
|
||||
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:
|
||||
# # 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.
|
||||
|
|
Loading…
Reference in New Issue