Merge branch 'master' into add-resource-customizations
This commit is contained in:
commit
a8f46f5c84
4 changed files with 24 additions and 6 deletions
|
@ -32,3 +32,7 @@ data:
|
|||
resource.customizations: |
|
||||
{{ toYaml .Values.config.resourceCustomizations | indent 4 }}
|
||||
{{- end }}
|
||||
{{- if .Values.config.configManagementPlugins }}
|
||||
configManagementPlugins: |
|
||||
{{ toYaml .Values.config.configManagementPlugins | indent 4 }}
|
||||
{{- end }}
|
||||
|
|
|
@ -124,12 +124,21 @@ config:
|
|||
bitbucketSecret:
|
||||
# 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
|
||||
# resourceCustomizations:
|
||||
resourceCustomizations:
|
||||
# certmanager.k8s.io/Certificate:
|
||||
# health.lua: |
|
||||
# hs = {}
|
||||
# ...
|
||||
# return hs
|
||||
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.
|
||||
|
|
|
@ -17,6 +17,9 @@ data:
|
|||
{{- end }}
|
||||
artifactRepository:
|
||||
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
|
||||
{{- if .Values.artifactRepository.archiveLogs }}
|
||||
archiveLogs: {{ .Values.artifactRepository.archiveLogs }}
|
||||
{{- end }}
|
||||
s3:
|
||||
{{- if .Values.useStaticCredentials }}
|
||||
accessKeySecret:
|
||||
|
|
|
@ -79,6 +79,8 @@ ui:
|
|||
useDefaultArtifactRepo: false
|
||||
useStaticCredentials: true
|
||||
artifactRepository:
|
||||
# archiveLogs will archive the main container logs as an artifact
|
||||
archiveLogs: false
|
||||
s3:
|
||||
# Note the `key` attribute is not the actual secret, it's the PATH to
|
||||
# the contents in the associated secret, as defined by the `name` attribute.
|
||||
|
|
Loading…
Reference in a new issue