-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Add additional wait after containers are healthy #27
Comments
I wonder what's the recommended way of configuring zero downtime deployment for your service, maybe it was designed for environments supporting multiple healthchecks like Kubernetes. Anyway, contributions are always welcome 😃 |
The root of my problem appears to be traefik doing it's own health checks and only a single container instance running. |
Implemented in #28 |
I am having issues with some images that report 'ready' slightly before they are actually ready to do real business. One in particular would need just another few seconds to finish its infinispan-syncronisation (i.e., it is ready to sync, but not with the sync).
My proposal would be to define a switch like
-g | --graceperiod SECONDS
with default0
and insert a suitable wait alselse
branch of thisif [ "$SUCCESS" != "$SCALE" ]; then
.I can create a PR if that is desired.
Best regards
The text was updated successfully, but these errors were encountered: