Skip to content
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

Openshift ocp fails due to livenessProbe. #8263

Merged
merged 1 commit into from
Jan 15, 2018

Commits on Jan 11, 2018

  1. Openshift ocp fails due to livenessProbe.

    The livenessProbe's failureThreshold is set to low. This causes the livenessProbe having to short a period of probing before it fails and removes the container. The failureThreshold is set to 4, the initialDelaySeconds is set to 5 and the periodSeconds is 5. This means 5s+4x5s=25s before the container fails. This patch set failureThreshold higher to 11 allowing for a more reasonable overall probe time of 60s (5s+11x5s=60s) before fails and removes the container.
    
    Signed-off-by: James Drummond <james@devcomb.com>
    devcomb committed Jan 11, 2018
    Configuration menu
    Copy the full SHA
    316266d View commit details
    Browse the repository at this point in the history