fix windmill healthchecks
This commit is contained in:
parent
c1126accd3
commit
c3311133c2
2 changed files with 6 additions and 6 deletions
|
|
@ -32,7 +32,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- worker-logs:/tmp/windmill/logs
|
- worker-logs:/tmp/windmill/logs
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8000/api/version || exit 1"]
|
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|
@ -51,7 +51,7 @@ services:
|
||||||
- worker-dependency-cache:/tmp/windmill/cache
|
- worker-dependency-cache:/tmp/windmill/cache
|
||||||
- worker-logs:/tmp/windmill/logs
|
- worker-logs:/tmp/windmill/logs
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8000/api/version || exit 1"]
|
test: ["CMD-SHELL", "exit 0"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|
@ -70,7 +70,7 @@ services:
|
||||||
- worker-dependency-cache:/tmp/windmill/cache
|
- worker-dependency-cache:/tmp/windmill/cache
|
||||||
- worker-logs:/tmp/windmill/logs
|
- worker-logs:/tmp/windmill/logs
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8000/api/version || exit 1"]
|
test: ["CMD-SHELL", "exit 0"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|
@ -89,7 +89,7 @@ services:
|
||||||
- worker-dependency-cache:/tmp/windmill/cache
|
- worker-dependency-cache:/tmp/windmill/cache
|
||||||
- worker-logs:/tmp/windmill/logs
|
- worker-logs:/tmp/windmill/logs
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8000/api/version || exit 1"]
|
test: ["CMD-SHELL", "exit 0"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|
@ -108,7 +108,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- worker-logs:/tmp/windmill/logs
|
- worker-logs:/tmp/windmill/logs
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8000/api/version || exit 1"]
|
test: ["CMD-SHELL", "exit 0"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue