Skip to content

Commit 51c1bf0

Browse files
authored
Merge pull request #2375 from jcpunk/startupProbe
chore(helm): allow for startupProbe if wanted
2 parents 46f076c + 0d0ce76 commit 51c1bf0

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

manifests/helm/kepler/templates/daemonset.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ spec:
6565
readOnly: true
6666
- name: cfm
6767
mountPath: /etc/kepler
68+
{{- with .Values.daemonset.startupProbe }}
69+
startupProbe:
70+
{{- toYaml . | nindent 12 }}
71+
{{- end }}
6872
{{- with .Values.daemonset.livenessProbe }}
6973
livenessProbe:
7074
{{- toYaml . | nindent 12 }}

manifests/helm/kepler/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ daemonset:
6161
initialDelaySeconds: 10
6262
periodSeconds: 60
6363

64+
startupProbe: {}
65+
6466
readinessProbe: {}
6567

6668
config:

0 commit comments

Comments
 (0)