Skip to content

Commit ad7915b

Browse files
Merge pull request #224935 from dem108/patch-13
clarify fixed property for liveness probe
2 parents bfeed81 + f36fcbc commit ad7915b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/reference-yaml-deployment-managed-online.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom: cliv2, event-tier1-build-2022
1010

1111
author: dem108
1212
ms.author: sehan
13-
ms.date: 04/26/2022
13+
ms.date: 01/24/2022
1414
ms.reviewer: larryfr
1515
---
1616

@@ -63,7 +63,7 @@ The source JSON schema can be found at https://azuremlschemas.azureedge.net/late
6363
| `initial_delay` | integer | The number of seconds after the container has started before the probe is initiated. Minimum value is `1`. | `10` |
6464
| `period` | integer | How often (in seconds) to perform the probe. | `10` |
6565
| `timeout` | integer | The number of seconds after which the probe times out. Minimum value is `1`. | `2` |
66-
| `success_threshold` | integer | The minimum consecutive successes for the probe to be considered successful after having failed. Minimum value is `1`. | `1` |
66+
| `success_threshold` | integer | The minimum consecutive successes for the probe to be considered successful after having failed. Minimum value is `1` for readiness probe. The value for liveness probe is fixed as `1`. | `1` |
6767
| `failure_threshold` | integer | When a probe fails, the system will try `failure_threshold` times before giving up. Giving up in the case of a liveness probe means the container will be restarted. In the case of a readiness probe the container will be marked Unready. Minimum value is `1`. | `30` |
6868

6969
## Remarks

0 commit comments

Comments
 (0)