From dc36a6564a2539df3e8f33e8a3bbdc795cdc93f1 Mon Sep 17 00:00:00 2001 From: "A. F. Dudley" Date: Wed, 21 Jan 2026 19:32:53 -0500 Subject: [PATCH] Fix misleading error message in load_images_into_kind --- stack_orchestrator/deploy/k8s/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack_orchestrator/deploy/k8s/helpers.py b/stack_orchestrator/deploy/k8s/helpers.py index 9c01e3a0..de2dea7f 100644 --- a/stack_orchestrator/deploy/k8s/helpers.py +++ b/stack_orchestrator/deploy/k8s/helpers.py @@ -97,7 +97,7 @@ def load_images_into_kind(kind_cluster_name: str, image_set: Set[str]): for image in image_set: result = _run_command(f"kind load docker-image {image} --name {kind_cluster_name}") if result.returncode != 0: - raise DeployerException(f"kind create cluster failed: {result}") + raise DeployerException(f"kind load docker-image failed: {result}") def pods_in_deployment(core_api: client.CoreV1Api, deployment_name: str):