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
is there any way to make the deployAll task run and block until the deployed Pods are up and running? In my case we're trying to use this in a Jenkinsfile as part of an integration test suite and we're running in the problem, that the deployment task finishes too soon and thus the tests fail.
cheers
christian
The text was updated successfully, but these errors were encountered:
Right now there is no blocking feature like that. The plugin blocks until the pods are or the deployment is created, but not until the pods are completely running.
It should be possible to implement such a feature using healthcheck adresses. We'll discuss that! I'll keep you informed!
Until that, there is no other solution than implementing such a logic in your test cases. You could use a rest client which blocks until a request is successful...
Hi,
is there any way to make the deployAll task run and block until the deployed Pods are up and running? In my case we're trying to use this in a Jenkinsfile as part of an integration test suite and we're running in the problem, that the deployment task finishes too soon and thus the tests fail.
cheers
christian
The text was updated successfully, but these errors were encountered: