From 5fe1ce808040b4b26a0405c235a668945bf32386 Mon Sep 17 00:00:00 2001 From: Adrian Stobbe Date: Fri, 29 Dec 2023 17:14:29 +0100 Subject: [PATCH] set node count to 1 in test --- .github/workflows/e2e-test-provider-example.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-test-provider-example.yml b/.github/workflows/e2e-test-provider-example.yml index 88bbb44c9b5..583f0a1d8e5 100644 --- a/.github/workflows/e2e-test-provider-example.yml +++ b/.github/workflows/e2e-test-provider-example.yml @@ -218,6 +218,11 @@ jobs: } } + locals { + control_plane_count = 1 + worker_count = 1 + } + # by default use latest nightly image for devbuilds and release image otherwise if [[ "${{ inputs.providerVersion }}" == "" ]]; then if [[ "${{ inputs.image }}" == "" ]]; then @@ -407,8 +412,8 @@ jobs: IMAGE: ${{ inputs.toImage && inputs.toImage || steps.find-latest-image.outputs.output }} KUBERNETES: ${{ inputs.toKubernetes }} MICROSERVICES: ${{ inputs.toProviderVersion }} - WORKERNODES: 2 - CONTROLNODES: 3 + WORKERNODES: 1 + CONTROLNODES: 1 run: | terraform output -raw kubeconfig > constellation-admin.conf