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
The "process" healthcheck type will not be supported since it doesn't make sense
48
-
to have "process" readiness healthcheck type. Once any defined process exits AI
49
-
is marked as crashed.
44
+
[Similar to liveness healthchecks](https://docs.cloudfoundry.org/devguide/deploy-apps/healthchecks.html), readiness healthcheck can be of type "http", "port", or "process".
45
+
However, when a user selects the "process" healthcheck type, nothing will be passed to the LRP, because once a process exits the AI
46
+
is marked as crashed and Diego will attempt a restart. The default readiness healthcheck type is "process", which is backwards compatible.
50
47
51
48
## Rolling deploys
52
49
@@ -88,6 +85,7 @@ applications:
88
85
readiness-health-check-http-endpoint: /ready # 👈 new property
89
86
readiness-health-check-invocation-timeout: 2 # 👈 new property
90
87
readiness-health-check-type: http # 👈 new property
88
+
readiness-health-check-interval: 5 # 👈 new property
91
89
```
92
90
93
91
New `routable` field in CC API [process stats
@@ -135,10 +133,12 @@ CF CLI `cf app` output.
135
133
136
134
New CLI options will be added to `cf push` command:
137
135
138
-
*`--readiness-endpoint` will allows to set the endpoint for http readiness
136
+
*`--readiness-endpoint` will set the endpoint for http readiness
139
137
checks.
140
-
*`--readiness-health-check-type` will allows to set the type of the readiness
141
-
check: "http" or "port".
138
+
*`--readiness-health-check-type` will set the type of the readiness
139
+
check: "http", "port", or "process".
140
+
*`--readiness-health-check-interval` will set the interval of the readiness
0 commit comments