From 3ea7fddb03f079dec112dd724f35de46ec9d1400 Mon Sep 17 00:00:00 2001 From: Adrian Stobbe Date: Mon, 7 Aug 2023 08:38:14 +0200 Subject: [PATCH] fix upgrade test by adding deprecated flags(#2173) --- .github/actions/constellation_create/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/constellation_create/action.yml b/.github/actions/constellation_create/action.yml index 601a3d0c4..734da84d2 100644 --- a/.github/actions/constellation_create/action.yml +++ b/.github/actions/constellation_create/action.yml @@ -177,7 +177,8 @@ runs: if [[ $output == *"tf-log"* ]]; then TFFLAG="--tf-log=DEBUG" fi - constellation create -y --force --debug ${TFFLAG:-} + constellation create -y --force --debug ${TFFLAG:-} -c ${{ inputs.controlNodesCount }} -w ${{ inputs.workerNodesCount }} + # TODO(elchead): remove -c and -w once 2.10 is released, such that a fromVersion upgrade E2E no longer requires these flags - name: Cdbg deploy if: inputs.isDebugImage == 'true'