Commit 39849d2b authored by Ivan Vandot's avatar Ivan Vandot Committed by GitHub

add pingpong and fullconnectivity e2e tests to github actions (#172)

parent 2922c5b1
......@@ -40,5 +40,7 @@ jobs:
until kubectl get svc traefik -n kube-system &> /dev/null; do echo "Waiting for the traefik service..."; sleep 1; done
helm install bee -f .github/beekeper/bee.yaml ethersphere/bee --namespace bee --set image.repository=registry.localhost:5000/ethersphere/bee --set replicaCount="${REPLICA}" --set bootnode.enabled=true --wait
until [[ "$(curl -s bee-${LAST_BEE}-debug.localhost/readiness | jq -r .status)" == "ok" ]] &> /dev/null; do echo "Waiting for the last bee..."; sleep 1; done
- name: Test peercount
run: ./beekeeper check peercount -c "${REPLICA}" -u http://bee-%d-debug.localhost
\ No newline at end of file
- name: Test pingpong
run: ./beekeeper check pingpong --disable-namespace --debug-api-domain localhost --api-domain localhost --node-count "${REPLICA}"
- name: Test fullconnectivity
run: ./beekeeper check fullconnectivity --disable-namespace --debug-api-domain localhost --api-domain localhost --node-count "${REPLICA}"
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment