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
description: The number of failed health checks before considered unhealthy.
7
+
minimum: 1
8
+
maximum: 50
9
+
example: 18
10
+
11
+
port:
12
+
type: integer
13
+
format: int64
14
+
description: The port on which the health check will be performed.
15
+
example: 80
16
+
maximum: 65535
17
+
minimum: 1
18
+
19
+
http_path:
20
+
type: string
21
+
description: The route path used for the HTTP health check ping. If not set, the HTTP health check will be disabled and a TCP health check used instead.
22
+
example: /health
23
+
24
+
initial_delay_seconds:
25
+
type: integer
26
+
format: int32
27
+
description: The number of seconds to wait before beginning health checks.
28
+
minimum: 0
29
+
maximum: 3600
30
+
example: 30
31
+
32
+
period_seconds:
33
+
type: integer
34
+
format: int32
35
+
description: The number of seconds to wait between health checks.
36
+
minimum: 1
37
+
maximum: 300
38
+
example: 10
39
+
40
+
success_threshold:
41
+
type: integer
42
+
format: int32
43
+
description: The number of successful health checks before considered healthy.
44
+
example: 1
45
+
minimum: 1
46
+
maximum: 1
47
+
48
+
timeout_seconds:
49
+
type: integer
50
+
format: int32
51
+
description: The number of seconds after which the check times out.
0 commit comments