Merge "Make Helm test timeouts configurable in multinode"

This commit is contained in:
Zuul 2019-07-10 14:09:31 +00:00 committed by Gerrit Code Review
commit 4e8f25b115

View File

@ -176,5 +176,7 @@ openstack network agent list
# Delete the test pods if they still exist
kubectl delete pods -l application=nova,release_group=nova,component=test --namespace=openstack --ignore-not-found
kubectl delete pods -l application=neutron,release_group=neutron,component=test --namespace=openstack --ignore-not-found
helm test nova --timeout 900
helm test neutron --timeout 900
timeout=${OSH_TEST_TIMEOUT:-900}
helm test nova --timeout $timeout
helm test neutron --timeout $timeout