tests: kata-deploy: Remove --wait from helm uninstall

As we're using a `kubectl wait --timeout ...` to check whether the
kata-deploy pod's been deleted or not, let's remove the `--wait` from
the `helm uninstall ...` call as k0s tests were failing because the
`kubectl wait --timeout...` was starting after the pod was deleted,
making the test fail.

Signed-off-by: Fabiano Fidêncio <fidencio@northflank.com>
This commit is contained in:
Fabiano Fidêncio 2025-07-09 13:28:16 +02:00
parent 842e17b756
commit 5f17e61d11

View File

@ -91,7 +91,7 @@ setup() {
teardown() {
pushd "${repo_root_dir}"
helm uninstall --namespace=kube-system kata-deploy --wait
helm uninstall --namespace=kube-system kata-deploy
kubectl -n kube-system wait --timeout=10m --for=delete -l name=kata-deploy pod
popd