Add configManagementPlugins option to argo-cd (#63)

pull/65/head^2
Kouta Ozaki 2019-05-07 23:46:21 +09:00 committed by Alex Collins
parent 4a81cb0714
commit 315ea0516e
2 changed files with 18 additions and 5 deletions

View File

@ -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 }}

View File

@ -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.