Skip to content

Commit

Permalink
don't create unused kind cluster in deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake committed Feb 9, 2022
1 parent 1c518ac commit 6e39426
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,16 +116,6 @@ jobs:
wget https://selenium-release.storage.googleapis.com/3.14/selenium-server-standalone-3.14.0.jar
xvfb-run -a --server-args="-screen 0 1280x1024x24" java -jar ./selenium-server-standalone-3.14.0.jar &
- name: Setup Kubernetes
shell: bash
env:
KIND_CLUSTER_NAME: ${{ format('katc-{0}', github.run_id) }}
KIND_CLUSTER_IMAGE: kindest/node:v1.21.1
run: |
make local-kind-cluster-with-registry
- name: Kind-check
run: |
kubectl get pods -A
- name: Download gitops binaries
uses: actions/download-artifact@v2
with:
Expand Down Expand Up @@ -153,6 +143,7 @@ jobs:
- name: Run acceptance tests
run: |
export WEGO_BIN_PATH=$(pwd)/bin/gitops
export CLUSTER_PROVIDER=kind
go get github.com/onsi/ginkgo/ginkgo
go get github.com/onsi/gomega
ACCEPTANCE_TEST_ARGS="--randomizeSuites --reportFile=${{ env. ARTIFACTS_BASE_DIR }}/test-results/acceptance-test-results.xml" make acceptance-tests
Expand Down

0 comments on commit 6e39426

Please sign in to comment.