Skip to content

Commit

Permalink
set node count to 1 in test
Browse files Browse the repository at this point in the history
  • Loading branch information
elchead committed Dec 29, 2023
1 parent 978ba0a commit 5fe1ce8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/e2e-test-provider-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5fe1ce8

Please sign in to comment.