Skip to content

Commit

Permalink
Update initialDelaySeconds default value to 1s
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Chang <[email protected]>
  • Loading branch information
mocsharp committed Jun 26, 2023
1 parent a53e970 commit 09eef73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guidelines/monai-application-package.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ The Application Manifest file provides information about the MAP's Application.
| `readiness.command` | **Yes** (when type is `command`) | N/A | array | shell command | Shell command and arguments in string array form. |
| `readiness.port` | **Yes** (when type is `tcp`, `grpc`, or `http-get`) | N/A | integer | number | The port number of readiness probe. |
| `readiness.path` | **Yes** (when type is `http-get`) | N/A | string | string | HTTP path and query to access the readiness probe. |
| `readiness.initialDelaySeconds` | No | 0 | integer | number | Number of seconds after the container has started before the readiness probe is initialized and performed. |
| `readiness.initialDelaySeconds` | No | 1 | integer | number | Number of seconds after the container has started before the readiness probe is initialized and performed. |
| `readiness.periodSeconds` | No | 10 | integer | number | Number of seconds between performing the readiness probe. |
| `readiness.timeoutSeconds` | No | 1 | integer | number | Number of seconds after which the probe times out. |
| `readiness.failureThreshold` | No | 3 | integer | number | Number of retries to be performed before considering the application is unhealthy. |
Expand All @@ -335,7 +335,7 @@ The Application Manifest file provides information about the MAP's Application.
| `liveness.command` | **Yes** (when type is `command`) | N/A | array | shell command | Shell command and arguments in string array form. |
| `liveness.port` | **Yes** (when type is `tcp`, `grpc`, or `http-get`) | N/A | integer | number | The port number of the liveness probe. |
| `liveness.path` | **Yes** (when type is `http-get`) | N/A | string | string | HTTP path and query to access the liveness probe. |
| `liveness.initialDelaySeconds` | No | 0 | integer | number | Number of seconds after the container has started before the liveness probe is initialized and performed. |
| `liveness.initialDelaySeconds` | No | 1 | integer | number | Number of seconds after the container has started before the liveness probe is initialized and performed. |
| `liveness.periodSeconds` | No | 10 | integer | number | Number of seconds between performing the liveness probe. |
| `liveness.timeoutSeconds` | No | 1 | integer | number | Number of seconds after which the probe times out. |
| `liveness.failureThreshold` | No | 3 | integer | number | Number of retries to be performed before considering the application is unhealthy. |
Expand Down

0 comments on commit 09eef73

Please sign in to comment.