Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix race conditions in empty cluster K8s tests. #1517

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
4 changes: 2 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,7 +126,7 @@ bazel_dep(
)
bazel_dep(
name = "common-jvm",
version = "0.75.0",
version = "0.78.0",
repo_name = "wfa_common_jvm",
)
bazel_dep(
Expand Down
1,240 changes: 626 additions & 614 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

Loading
Loading