Skip to content

Commit e222c12

Browse files
authored
helm: Add readinessProbe and startupProbe to daemonSet (#84)
Signed-off-by: Pat Riehecky <riehecky@fnal.gov>
1 parent 19cb8e9 commit e222c12

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

chart/kepler/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ annotations:
2222
url: https://keybase.io/bradmccoydev/pgp_keys.asc
2323
2424
type: application
25-
version: 0.5.14
25+
version: 0.5.15
2626
appVersion: release-0.8.0

chart/kepler/templates/daemonset.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,18 @@ spec:
7474
periodSeconds: 60
7575
successThreshold: 1
7676
timeoutSeconds: 10
77+
readinessProbe:
78+
httpGet:
79+
path: /healthz
80+
port: http
81+
scheme: HTTP
82+
initialDelaySeconds: 10
83+
startupProbe:
84+
httpGet:
85+
path: /healthz
86+
port: http
87+
scheme: HTTP
88+
initialDelaySeconds: 1
7789
volumeMounts:
7890
- name: lib-modules
7991
mountPath: /lib/modules

0 commit comments

Comments
 (0)