From a5ba3c851434263128a1464a2c41e528779eeefa Mon Sep 17 00:00:00 2001 From: Amine Date: Wed, 6 Mar 2024 22:21:32 +0100 Subject: [PATCH] Correct helm resource MCR flags (#519) :hidding:, it looks like, i fat fingered before commit and the e2e tests didn't catch this typo... By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. --- templates/helm/templates/deployment.yaml.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/helm/templates/deployment.yaml.tpl b/templates/helm/templates/deployment.yaml.tpl index 25f16282..97786787 100644 --- a/templates/helm/templates/deployment.yaml.tpl +++ b/templates/helm/templates/deployment.yaml.tpl @@ -73,11 +73,11 @@ spec: - {{ "\"$(RECONCILE_RESOURCE_RESYNC_SECONDS_{{ $key | upper }})\"" }} {{ "{{- end }}" }} {{ "{{- if gt (int .Values.reconcile.defaultMaxConcurrentSyncs) 0 }}" }} - - --reconcile-default-max-concurrenct-syncs + - --reconcile-default-max-concurrent-syncs - "$(RECONCILE_DEFAULT_MAX_CONCURRENT_SYNCS)" {{ "{{- end }}" }} {{ "{{- range $key, $value := .Values.reconcile.resourceMaxConcurrentSyncs }}" }} - - --reconcile-resource-max-concurrenct-syncs + - --reconcile-resource-max-concurrent-syncs - {{ "\"$(RECONCILE_RESOURCE_MAX_CONCURRENT_SYNCS_{{ $key | upper }})\"" }} {{ "{{- end }}" }} image: {{ "{{ .Values.image.repository }}:{{ .Values.image.tag }}" }}