File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
charts/sombra-job-scheduler Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ dependencies:
77 version: 0.2.2
88- name: sombra-job-scheduler
99 repository: ""
10- version: 0.1.2
11- digest: sha256:6bb385784d3b63469e0199c8f97e326594e20f6c5ac92069ad3817f612f2c194
12- generated: "2026-01-29T15:52:54.010231601Z "
10+ version: 0.1.3
11+ digest: sha256:dab38d516e78868bf4677a3550cc5c200d39ea72855ec3ce116b34b3594fde63
12+ generated: "2026-01-29T17:37:17.925068081Z "
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : sombra
33description : A Helm chart to deploy Sombra and its dependent services in a Kubernetes cluster
44type : application
5- version : 0.9.2
5+ version : 0.9.3
66maintainers :
77 - name : Transcend
88 email : dev@transcend.io
@@ -15,4 +15,4 @@ dependencies:
1515 version : " 0.2.2"
1616 - name : sombra-job-scheduler
1717 condition : sombra-job-scheduler.enabled
18- version : " 0.1.2 "
18+ version : " 0.1.3 "
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ apiVersion: v2
22name : sombra-job-scheduler
33description : A Helm chart to deploy the Sombra Job Scheduler in a Kubernetes cluster
44type : application
5- version : 0.1.2
5+ version : 0.1.3
Original file line number Diff line number Diff line change 2222 command :
2323 - /bin/sh
2424 - -c
25- - test -f /tmp/sombra-job-scheduler-alive && find /tmp/sombra-job-scheduler-alive -mmin + 1 -print -quit 2>/dev/null | grep -q .
25+ - test -f /tmp/sombra-job-scheduler-alive && find /tmp/sombra-job-scheduler-alive -mmin - 1 -print -quit 2>/dev/null | grep -q .
2626 timeoutSeconds : 30
2727 periodSeconds : 10
2828 successThreshold : 1
Original file line number Diff line number Diff line change @@ -69,15 +69,15 @@ resources:
6969livenessProbe :
7070 exec :
7171 # This tests to see whether the file /tmp/sombra-job-scheduler-alive exists (test -f)
72- # and if it is less than a minute old find ... -mmin + 1 ....
72+ # and if it was modified within the last minute: ` find ... -mmin - 1 ....`
7373 # Every time sombra-job-scheduler executes it's loop to pollSombraJobs
7474 # it touches /tmp/sombra-job-scheduler-alive. This happens every pollingInterval
7575 # (which defaults to 20 seconds). Therefore, if /tmp/sombra-job-scheduler-alive is missing
7676 # or hasn't been updated in over a minute, it means pollSombraJobs has not been running.
7777 command :
7878 - /bin/sh
7979 - -c
80- - test -f /tmp/sombra-job-scheduler-alive && find /tmp/sombra-job-scheduler-alive -mmin + 1 -print -quit 2>/dev/null | grep -q .
80+ - test -f /tmp/sombra-job-scheduler-alive && find /tmp/sombra-job-scheduler-alive -mmin - 1 -print -quit 2>/dev/null | grep -q .
8181 timeoutSeconds : 30
8282 periodSeconds : 10
8383 successThreshold : 1
@@ -89,7 +89,7 @@ startupProbe:
8989 command :
9090 - /bin/sh
9191 - -c
92- - test -f /tmp/sombra-job-scheduler-alive && find /tmp/sombra-job-scheduler-alive -mmin + 1 -print -quit 2>/dev/null | grep -q .
92+ - test -f /tmp/sombra-job-scheduler-alive && find /tmp/sombra-job-scheduler-alive -mmin - 1 -print -quit 2>/dev/null | grep -q .
9393 timeoutSeconds : 30
9494 periodSeconds : 20
9595 successThreshold : 1
You can’t perform that action at this time.
0 commit comments