Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ LEADER_ELECT: true
LEADER_ELECT: false
{{- end }}
MAX_CONCURRENT_RELEASES: {{ .Values.config.maxConcurrentReleases }}
MAX_RECONCILE_RETRIES: {{ .Values.config.maxReconcileRetries }}
PROMOTION_WRAPPER_TEMPLATE: {{ .Values.config.promotionWrapperTemplate | quote }}
RUNTIME: {{ .Values.global.runtime.name }}
TASK_POLLING_INTERVAL: {{ .Values.config.taskPollingInterval }}
Expand Down Expand Up @@ -44,6 +45,4 @@ RUNTIME_VERSION:
configMapKeyRef:
name: codefresh-cm
key: version
SOURCES_SERVER_URL: http://argo-gateway # TODO: remove and leave only ARGO_GATEWAY_URL
ARGO_GATEWAY_URL: http://argo-gateway
{{- end -}}
4 changes: 3 additions & 1 deletion charts/gitops-runtime/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -626,13 +626,15 @@ gitops-operator:
workflowMonitorPollingInterval: 10s
# -- Maximum number of concurrent releases being processed by the operator (this will not affect the number of releases being processed by the gitops runtime)
maxConcurrentReleases: 100
# -- Maximum number of reconcile retries on promotion-related resources before failing a promotion task
maxReconcileRetries: 10
# -- An optional template for the promotion wrapper (empty default will use the embedded one)
promotionWrapperTemplate: ''
image:
# -- defaults
registry: quay.io
repository: codefresh/codefresh-gitops-operator
tag: 5ac8210
tag: 09098f6
env:
GITOPS_OPERATOR_VERSION: 0.11.1
serviceAccount:
Expand Down