Bug 1664753
| Summary: | Service Catalog readiness probe should be split from liveness probe | |||
|---|---|---|---|---|
| Product: | OpenShift Container Platform | Reporter: | Jay Boyd <jaboyd> | |
| Component: | Service Catalog | Assignee: | Jay Boyd <jaboyd> | |
| Status: | CLOSED ERRATA | QA Contact: | Jian Zhang <jiazha> | |
| Severity: | unspecified | Docs Contact: | ||
| Priority: | unspecified | |||
| Version: | 3.11.0 | CC: | chezhang | |
| Target Milestone: | --- | |||
| Target Release: | 3.11.z | |||
| Hardware: | Unspecified | |||
| OS: | Unspecified | |||
| Whiteboard: | ||||
| Fixed In Version: | Doc Type: | If docs needed, set a value | ||
| Doc Text: | Story Points: | --- | ||
| Clone Of: | ||||
| : | 1664799 (view as bug list) | Environment: | ||
| Last Closed: | 2019-02-20 14:11:02 UTC | Type: | Bug | |
| Regression: | --- | Mount Type: | --- | |
| Documentation: | --- | CRM: | ||
| Verified Versions: | Category: | --- | ||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
| Cloudforms Team: | --- | Target Upstream Version: | ||
| Embargoed: | ||||
| Bug Depends On: | ||||
| Bug Blocks: | 1664799 | |||
PR in progress https://github.com/openshift/openshift-ansible/pull/10977 Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2019:0326 |
Description of problem: There is a single health probe endpoint in both API Server and Controller Manager pods for Service Catalog that covers both readiness and liveness. The readiness functionality should be split to a dedicated probe specific for readiness to avoid unnecessary pod restarts. Example from the API Server health probes: readinessProbe: httpGet: port: 6443 path: /healthz ..... livenessProbe: httpGet: port: 6443 path: /healthz readiness should have its own url.