From 22218d1d94e51f7d60222a7805da5ad508925906 Mon Sep 17 00:00:00 2001 From: Yury Kovalev Date: Fri, 19 Dec 2025 18:43:30 +0100 Subject: [PATCH] fix(e2e-tests): Use jsonpath instead of condition in the kubectl wait condtion --- dev/env/scripts/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/env/scripts/lib.sh b/dev/env/scripts/lib.sh index 372db3db2b..1a59f3f6d1 100644 --- a/dev/env/scripts/lib.sh +++ b/dev/env/scripts/lib.sh @@ -318,7 +318,7 @@ wait_for_cluster_resource_condition() { wait_for_crd() { local name="$1" - wait_for_cluster_resource_condition crd "$name" "condition=established" + wait_for_cluster_resource_condition crd "$name" "jsonpath={.status.conditions[?(@.type==\"Established\")].status}=True" } assemble_kubeconfig() {