Skip to content

Commit

Permalink
skip: fix executor image
Browse files Browse the repository at this point in the history
  • Loading branch information
DnPlas committed Sep 11, 2023
1 parent 6597ae6 commit 1b93b9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charms/argo-controller/src/components/pebble_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 1b93b9a

Please sign in to comment.