-
Notifications
You must be signed in to change notification settings - Fork 202
Fix #1444: Option to Disable Liveness/readiness checks #1569
Conversation
e1a795e
to
a1a4fdf
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor nitpicks, otherwise LGTM. @lordofthejars let us know what you think of my comments. I'll approve if you deem it correct.
@@ -225,6 +225,9 @@ | |||
@Parameter(property = "fabric8.namespace") | |||
private String namespace; | |||
|
|||
@Parameter(property = "fabric8.skipHealthChecks", defaultValue = "false") | |||
private Boolean skipHealthChecks; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fabric8.disableProbes might be a better name since Its Health probe and liveness probe.
if not, atleast remove s , just fabric8.skipHealthCheck :)
| If the value is set to `true` then no readiness/liveness checks would be added to any containers. | ||
| `false` | ||
|
||
| *fabric8.openshift.deployTimeoutSeconds* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not much of an issue, but maybe a seperate commit should be there for the 'extra' documentation, not relating to PR or commit description.
+ Added an option fabric8.disableHealthChecks to disable readiness/liveness checks + Added path option in SpringBootHealthCheckEnricher to overwrite path for liveness/readiness
a1a4fdf
to
30cc140
Compare
@dev-gaur : I've addressed your comments, going to merge now. |
Fix #1444
fabric8.disableHealthChecks
to disable readiness/liveness checks