From 4b52fe20879f7687e7a68a20e7842cb58065ff05 Mon Sep 17 00:00:00 2001 From: Acha Bill Date: Tue, 27 Feb 2024 11:04:11 +0100 Subject: [PATCH] fix: wip --- .github/workflows/beekeeper.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/beekeeper.yml b/.github/workflows/beekeeper.yml index 2999e27eb47..56450434992 100644 --- a/.github/workflows/beekeeper.yml +++ b/.github/workflows/beekeeper.yml @@ -124,6 +124,12 @@ jobs: - name: Set local cluster run: | timeout ${TIMEOUT} make deploylocal BEEKEEPER_CLUSTER=local-dns + - name: Test pingpong + id: pingpong + run: timeout ${TIMEOUT} bash -c 'until beekeeper check --cluster-name local-dns --checks ci-pingpong; do echo "waiting for pingpong..."; sleep .3; done' + - name: Test fullconnectivity + id: fullconnectivity + run: timeout ${TIMEOUT} bash -c 'until beekeeper check --cluster-name local-dns --checks=ci-full-connectivity; do echo "waiting for full connectivity..."; sleep .3; done' - name: Redundancy id: redundancy run: timeout ${TIMEOUT} beekeeper check --cluster-name local-dns --checks ci-redundancy