Skip to content

Commit 782edac

Browse files
committed
set startupProbe defaults
1 parent d1c441e commit 782edac

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

charts/jupyter-python/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type: application
2222
# This is the chart version. This version number should be incremented each time you make changes
2323
# to the chart and its templates, including the app version.
2424
# Versions are expected to follow Semantic Versioning (https://semver.org/)
25-
version: 2.1.23
25+
version: 2.1.24
2626
dependencies:
2727
- name: library-chart
2828
version: 1.5.42

charts/jupyter-python/values.schema.json

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -788,11 +788,26 @@
788788
"description": "Startup probe",
789789
"type": "object",
790790
"properties": {
791-
"failureThreshold": { "type": "integer" },
792-
"initialDelaySeconds": { "type": "integer" },
793-
"periodSeconds": { "type": "integer" },
794-
"successThreshold": { "type": "integer" },
795-
"timeoutSeconds": { "type": "integer" }
791+
"failureThreshold": {
792+
"type": "integer",
793+
"default": 60
794+
},
795+
"initialDelaySeconds": {
796+
"type": "integer",
797+
"default": 10
798+
},
799+
"periodSeconds": {
800+
"type": "integer",
801+
"default": 10
802+
},
803+
"successThreshold": {
804+
"type": "integer",
805+
"default": 1
806+
},
807+
"timeoutSeconds": {
808+
"type": "integer",
809+
"default": 2
810+
}
796811
},
797812
"default": {
798813
"failureThreshold": 60,

0 commit comments

Comments
 (0)