Skip to content

Commit

Permalink
setup registry instead of cluster before deploying and specify provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake committed Feb 9, 2022
1 parent 1c518ac commit 4317bdd
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,10 @@ 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
- name: Setup registry
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
make local-registry
- name: Kind-check
run: |
kubectl get pods -A
Expand Down Expand Up @@ -153,6 +150,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 4317bdd

Please sign in to comment.