-
-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(helm): configure liveness and readiness probes (#604)
* feat(helm): configure liveness and readiness probes Signed-off-by: Eric Lin <[email protected]> * feat(helm): bump chart version Signed-off-by: Eric Lin <[email protected]> * fix: typo Signed-off-by: Eric Lin <[email protected]> * fix: minor bump and gen docs Signed-off-by: Eric Lin <[email protected]> --------- Signed-off-by: Eric Lin <[email protected]>
- Loading branch information
Showing
4 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,14 @@ serviceAccount: | |
# iam.gke.io/gcp-service-account: [email protected] | ||
# -- Defines if token is automatically mounted to the pod after it has been created | ||
# automountServiceAccountToken: false | ||
# Liveness and readiness probes for the application controller pods | ||
livenessProbe: | ||
initialDelaySeconds: 5 | ||
timeoutSeconds: 30 | ||
|
||
readinessProbe: | ||
initialDelaySeconds: 5 | ||
timeoutSeconds: 30 | ||
# -- Resource limits and requests for the application controller pods | ||
resources: {} | ||
# limits: | ||
|