You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fails due to timeout. Deployments become available after this function already gave up (it is effectively waiting 120s only).
This leads to a pure timeout failure but this is anyway masked by 1.
To reproduce
Run test locally or in CI.
Observe in logs:
kubectl create namespace seldon-system || echo "namespace seldon-system exists"
Error from server (AlreadyExists): namespaces "seldon-system" already exists
namespace seldon-system exists
helm install seldon \
../../helm-charts/seldon-core-operator \
--namespace seldon-system \
--set istio.enabled=true \
--set istio.gateway=istio-system/seldon-gateway \
--set certManager.enabled=false \
--set executor.enabled="true" \
--wait
Error: cannot re-use a name that is still in use
make[1]: *** [Makefile:76: install_seldon] Error 1
make[1]: Leaving directory '/workspace/source/testing/scripts'
PASSED
I observe it in current master as well as commits from last week before starting to upgrade dependencies.
Expected behaviour
Fails when is really failing, passes without problems if things are ok.
The text was updated successfully, but these errors were encountered:
Describe the bug
There are multiple issues with
operator_upgrade
notebook test.PASS
because there is missingraise
to re-raise the caught exception.fails due to timeout. Deployments become available after this function already gave up (it is effectively waiting 120s only).
This leads to a pure timeout failure but this is anyway masked by 1.
To reproduce
I observe it in current master as well as commits from last week before starting to upgrade dependencies.
Expected behaviour
Fails when is really failing, passes without problems if things are ok.
The text was updated successfully, but these errors were encountered: