From ff69876ec27edcb8c535156861f1b024f59ecd3a Mon Sep 17 00:00:00 2001 From: Calvin Audier Date: Wed, 2 Oct 2024 15:45:25 +0200 Subject: [PATCH] Remove executor section of configmap - It was removed to allow overwrite others values in the executor section - As this value was static it will be added back from in the default configmap value. (This mean the configuration will still be there and we can even overwrite now) Signed-off-by: Calvin Audier --- custom/litmus-helm-agent/pkg/litmus/client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/custom/litmus-helm-agent/pkg/litmus/client.go b/custom/litmus-helm-agent/pkg/litmus/client.go index d074f2ec..b6368386 100644 --- a/custom/litmus-helm-agent/pkg/litmus/client.go +++ b/custom/litmus-helm-agent/pkg/litmus/client.go @@ -68,7 +68,6 @@ func prepareWorkflowControllerConfigMap(clusterID string) map[string]string { configMapWorkflowController["containerRuntimeExecutor"] = os.Getenv("CONTAINER_RUNTIME_EXECUTOR") configMapWorkflowController["instanceID"] = clusterID - configMapWorkflowController["executor"] = "imagePullPolicy: IfNotPresent\n" return configMapWorkflowController }