diff --git a/.github/actions/constellation_create/action.yml b/.github/actions/constellation_create/action.yml index 7864523bbe0..384b4846d47 100644 --- a/.github/actions/constellation_create/action.yml +++ b/.github/actions/constellation_create/action.yml @@ -141,7 +141,7 @@ runs: id: constellation-init shell: bash run: | - constellation init --force --debug + constellation apply --force --debug echo "KUBECONFIG=$(pwd)/constellation-admin.conf" | tee -a $GITHUB_OUTPUT - name: Wait for nodes to join and become ready diff --git a/.github/workflows/e2e-windows.yml b/.github/workflows/e2e-windows.yml index db5c80f55a4..b3673f87549 100644 --- a/.github/workflows/e2e-windows.yml +++ b/.github/workflows/e2e-windows.yml @@ -78,7 +78,7 @@ jobs: - name: Initialize cluster shell: pwsh run: | - .\constellation.exe init --debug + .\constellation.exe apply --debug - name: Liveness probe shell: pwsh diff --git a/e2e/internal/upgrade/upgrade_test.go b/e2e/internal/upgrade/upgrade_test.go index b72d252f83f..d6cb9f4d8ca 100644 --- a/e2e/internal/upgrade/upgrade_test.go +++ b/e2e/internal/upgrade/upgrade_test.go @@ -343,7 +343,7 @@ func runUpgradeApply(require *require.Assertions, cli string) { tfLogFlag = "--tf-log=DEBUG" } - cmd = exec.CommandContext(context.Background(), cli, "upgrade", "apply", "--debug", "--yes", tfLogFlag) + cmd = exec.CommandContext(context.Background(), cli, "apply", "--debug", "--yes", tfLogFlag) stdout, stderr, err = runCommandWithSeparateOutputs(cmd) require.NoError(err, "Stdout: %s\nStderr: %s", string(stdout), string(stderr)) require.NoError(containsUnexepectedMsg(string(stdout)))