Commit 16d8bea6 authored by Ivan Vandot's avatar Ivan Vandot Committed by GitHub

fix k3d initialization (#156)

parent f801af89
......@@ -36,8 +36,8 @@ jobs:
docker push registry.localhost:5000/ethersphere/bee:latest
- name: Set bees
run: |
export LAST_BEE=$(($REPLICA-1))
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/addresses" &> /dev/null; do echo "Waiting for the node..."; sleep 1; done
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
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