Skip to content

Commit

Permalink
tests/e2e: Increase timeouts
Browse files Browse the repository at this point in the history
the uninstall timeouts seems to be too low for the azure runners.

Signed-off-by: Lukáš Doktor <[email protected]>
  • Loading branch information
ldoktor committed Dec 7, 2023
1 parent fb4ef8d commit 002882b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/operator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ uninstall_ccruntime() {
local cmd="! sudo -E kubectl get pods -n confidential-containers-system|"
cmd+="grep -q -e cc-operator-daemon-install"
cmd+=" -e cc-operator-pre-install-daemon"
if ! wait_for_process 180 30 "$cmd"; then
if ! wait_for_process 720 30 "$cmd"; then
echo "ERROR: there are ccruntime pods still running"
echo "::group::Describe pods from $op_ns namespace"
kubectl -n "$op_ns" describe pods || true
Expand Down Expand Up @@ -247,7 +247,7 @@ uninstall_operator() {
local pod="cc-operator-controller-manager"
local cmd="! kubectl get pods -n confidential-containers-system |"
cmd+="grep -q $pod"
if ! wait_for_process 90 30 "$cmd"; then
if ! wait_for_process 180 30 "$cmd"; then
echo "ERROR: the controller manager is still running"

local pod_id="$(get_pods_regex $pod $op_ns)"
Expand Down

0 comments on commit 002882b

Please sign in to comment.