Skip to content

Commit

Permalink
Wait for Kingdom restart in EmptyClusterPanelMatchCorrectnessTest.
Browse files Browse the repository at this point in the history
This fixes a race condition where the port forwarding may be pointing to the Kingdom pod used for resource setup.
  • Loading branch information
SanjayVas committed Mar 8, 2024
1 parent c9e982c commit a813002
Show file tree
Hide file tree
Showing 11 changed files with 1,027 additions and 990 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ jobs:
- name: Delete Kubernetes Resources
continue-on-error: true
run: |
kubectl delete all --namespace=default --all
kubectl delete networkpolicies --all-namespaces --all
kubectl delete all --namespace=default --all --cascade=foreground --wait
kubectl delete networkpolicies --namespace=default --all
- name: Run panelmatch correctness test
id: run-panelmatch-correctness-test
Expand Down
14 changes: 12 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ BORINGSSL_VERSION = "0.0.0-20230215-5c22014"
# * https://docs.aws.amazon.com/kinesisanalytics/latest/java/earlier.html
APACHE_BEAM_VERSION = "2.45.0"

K8S_CLIENT_VERSION = "16.0.0"
K8S_CLIENT_VERSION = "20.0.0"

# Bazel Central Registry modules.
bazel_dep(
Expand Down Expand Up @@ -126,9 +126,19 @@ bazel_dep(
)
bazel_dep(
name = "common-jvm",
version = "0.75.0",
repo_name = "wfa_common_jvm",
)

# DO_NOT_SUBMIT(world-federation-of-advertisers/common-jvm#237): Use version.
archive_override(
module_name = "common-jvm",
integrity = "sha256-yXW2WkNHSvaS6z3GAUcX4lgTn8TTFKWb7N7qVN3eC0Q=",
strip_prefix = "common-jvm-dc4cb16871f0db363047d3004a6ef6cd4fcd40d4",
urls = [
"https://github.com/world-federation-of-advertisers/common-jvm/archive/dc4cb16871f0db363047d3004a6ef6cd4fcd40d4.tar.gz",
],
)

bazel_dep(
name = "common-cpp",
version = "0.12.0",
Expand Down
Loading

0 comments on commit a813002

Please sign in to comment.