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
Copy file name to clipboardExpand all lines: src/applications/managing-app-configuration.md
+1-12Lines changed: 1 addition & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ Detachments can be performed with `deis config:unset`.
56
56
57
57
By default, Workflow only checks that your application containers start in
58
58
their Pod. If you would like Kubernetes to respond to appliation health, you
59
-
may add a health check by configuring URL, port, initial delay, and timeout
59
+
may add a health check by configuring URL, initial delay, and timeout
60
60
values.
61
61
62
62
The health checks are implemented as [Kubernetes container probes][kubernetes-probes]. Currently only HTTP GET is supported.
@@ -67,10 +67,6 @@ Available configuration options for health checks are the following, including d
67
67
68
68
Path in the application to use for health check, such as /healthz - This value needs to be set for any health check to happen. Needs to accept a HTTP GET request and return a HTTP status between 200-399.
69
69
70
-
**HEALTHCHCK_PORT**
71
-
72
-
TCP port to use for health check. Defaults to using same port as the application
73
-
74
70
**HEALTHCHECK_TIMEOUT**
75
71
76
72
Number of seconds after which the health check times out. Defaults to 50 seconds
@@ -110,13 +106,6 @@ $ deis config:set HEALTHCHECK_TIMEOUT=5
110
106
HEALTHCHECK_TIMEOUT: 5
111
107
HEALTHCHECK_INITIAL_DELAY: 5
112
108
HEALTHCHECK_URL: /200.html
113
-
$ deis config:set HEALTHCHECK_PORT=5000
114
-
=== peachy-waxworks
115
-
HEALTHCHECK_TIMEOUT: 5
116
-
HEALTHCHECK_INITIAL_DELAY: 5
117
-
HEALTHCHECK_URL: /200.html
118
-
HEALTHCHECK_PORT: 5000
119
-
```
120
109
121
110
If an application times out, or responds to a health check with a response code
122
111
outside the 200-399 range, Kubernetes will stop sending requests to the
0 commit comments