Skip to content

Commit 00e794a

Browse files
committed
add readiness probes to worker groups
1 parent 41110b9 commit 00e794a

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

charts/windmill/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
22
name: windmill
33
type: application
4-
version: 2.0.370
5-
appVersion: 1.463.0
4+
version: 2.0.371
5+
appVersion: 1.464.0
66
dependencies:
77
- condition: postgresql.enabled
88
name: postgresql

charts/windmill/templates/worker-groups.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,17 @@ spec:
9191
{{ end }}
9292
ports:
9393
- containerPort: 8001
94+
readinessProbe:
95+
initialDelaySeconds: 1
96+
periodSeconds: 5
97+
timeoutSeconds: 1
98+
successThreshold: 1
99+
failureThreshold: 1
100+
httpGet:
101+
host:
102+
scheme: HTTP
103+
path: /ready
104+
port: 8001
94105
volumeMounts:
95106
{{ if or $.Values.windmill.exposeHostDocker $v.exposeHostDocker }}
96107
- name: docker-sock

0 commit comments

Comments
 (0)