From 1b93b9af0bb084e4c0b40569965dd19830b3abdb Mon Sep 17 00:00:00 2001 From: Daniela Plascencia Date: Mon, 11 Sep 2023 10:28:36 +0200 Subject: [PATCH] skip: fix executor image --- charms/argo-controller/src/components/pebble_component.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charms/argo-controller/src/components/pebble_component.py b/charms/argo-controller/src/components/pebble_component.py index 26dc858..fd5733d 100644 --- a/charms/argo-controller/src/components/pebble_component.py +++ b/charms/argo-controller/src/components/pebble_component.py @@ -8,7 +8,7 @@ logger = logging.getLogger(__name__) ARGO_CONTROLLER_CONFIGMAP = "argo-workflow-controller-configmap" -EXECUTOR_IMAGE_CONFIG = "executor-image" +EXECUTOR_IMAGE_CONFIG_NAME = "executor-image" LIVENESS_PROBE_PORT = "6060" METRICS_PORT = "9090" LIVENESS_PROBE_PATH = "/healthz" @@ -47,7 +47,7 @@ def get_layer(self) -> Layer: "--configmap " f"{ARGO_CONTROLLER_CONFIGMAP} " "--executor-image " - "{self.model.config[EXECUTOR_IMAGE_CONFIG_NAME]} " + f"{self.model.config[EXECUTOR_IMAGE_CONFIG_NAME]} " "--namespaced" ), "startup": "enabled",