From 35a582c260c6fd63dee3b1dfb9984e7549a6dac5 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 27 Apr 2026 16:44:12 +0200 Subject: [PATCH 1/2] Enhance error message for existing Central deployment Updated error message for existing Central deployment to provide more context. --- release/start-acs/start-acs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/start-acs/start-acs.sh b/release/start-acs/start-acs.sh index a98c80df..ab801726 100755 --- a/release/start-acs/start-acs.sh +++ b/release/start-acs/start-acs.sh @@ -31,7 +31,7 @@ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" source "${STACKROX_DIR}"/deploy/common/deploy.sh if kubectl -n stackrox get deploy/central; then - gh_log error "Central is already running" + gh_log error "Central is already running. It means that you are trying to create a long running cluster for a release for the second time when the first cluster already exists. Try looking for another workflow that created the cluster." exit 1 fi From 03c83e11d2c90006fddc6727ae8dabc88413ecf0 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 27 Apr 2026 17:07:12 +0200 Subject: [PATCH 2/2] Update release/start-acs/start-acs.sh Co-authored-by: Tom Martensen --- release/start-acs/start-acs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/start-acs/start-acs.sh b/release/start-acs/start-acs.sh index ab801726..bce490d6 100755 --- a/release/start-acs/start-acs.sh +++ b/release/start-acs/start-acs.sh @@ -31,7 +31,7 @@ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" source "${STACKROX_DIR}"/deploy/common/deploy.sh if kubectl -n stackrox get deploy/central; then - gh_log error "Central is already running. It means that you are trying to create a long running cluster for a release for the second time when the first cluster already exists. Try looking for another workflow that created the cluster." + gh_log error "Central is already running. It means that you are trying to deploy ACS to a cluster where it is already deployed. This can happen if you try to create a long-running cluster for a release candicate when the such a cluster already exists. Try looking for another workflow that created the cluster." exit 1 fi