Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test instance-type and node-count for GKE
Browse files Browse the repository at this point in the history
Craig O'Donnell committed Sep 22, 2023
1 parent 2c4686a commit 2ac8cf3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/kots-e2e/action.yml
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ runs:

- name: Create a c11y matrix cluster
id: create-cluster
uses: replicatedhq/replicated-actions/create-cluster@v1
uses: replicatedhq/replicated-actions/create-cluster@a7383f37fbe938bb7a0aaa42e8939da7d2604e51
if: ${{ inputs.k8s-distribution != 'k3s-local' }}
with:
api-token: ${{ inputs.replicated-api-token }}
@@ -99,6 +99,8 @@ runs:
cluster-name: automated-kots-${{ github.run_id }}-${{ inputs.k8s-distribution }}-${{ inputs.k8s-version }}
timeout-minutes: '120'
ttl: ${{ inputs.k8s-cluster-ttl }}
instance-type: ${{ inputs.k8s-distribution == 'gke' && 'n2-standard-4' || '' }}
node-count: ${{ inputs.k8s-distribution == 'gke' && '3' || '' }}
export-kubeconfig: true

- name: execute suite "${{ inputs.test-focus }}"

0 comments on commit 2ac8cf3

Please sign in to comment.