Skip to content

Commit a5465fb

Browse files
authored
fix: use wget instead of curl for connectors healthcheck (#317)
1 parent 6d24fc8 commit a5465fb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

docker-compose/versions/camunda-8.6/docker-compose-core.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ services:
107107
- management.endpoints.web.exposure.include=health
108108
- management.endpoint.health.probes.enabled=true
109109
healthcheck:
110-
test: [ "CMD-SHELL", "curl -f http://localhost:8080/actuator/health/readiness" ]
110+
test: ["CMD-SHELL", "wget -q --spider http://localhost:8080/actuator/health/readiness"]
111111
interval: 30s
112112
timeout: 1s
113113
retries: 5

docker-compose/versions/camunda-8.6/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ services:
170170
- management.endpoint.health.probes.enabled=true
171171
env_file: connector-secrets.txt
172172
healthcheck:
173-
test: ["CMD-SHELL", "curl -f http://localhost:8080/actuator/health/readiness"]
173+
test: ["CMD-SHELL", "wget -q --spider http://localhost:8080/actuator/health/readiness"]
174174
interval: 30s
175175
timeout: 1s
176176
retries: 5

docker-compose/versions/camunda-8.7/docker-compose-core.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ services:
109109
- logging.level.io.camunda.zeebe.client.impl.ZeebeCallCredentials=ERROR
110110
- logging.level.io.camunda.connector.runtime.inbound.importer=ERROR
111111
healthcheck:
112-
test: [ "CMD-SHELL", "curl -f http://localhost:8080/actuator/health/readiness" ]
112+
test: ["CMD-SHELL", "wget -q --spider http://localhost:8080/actuator/health/readiness"]
113113
interval: 30s
114114
timeout: 1s
115115
retries: 5

docker-compose/versions/camunda-8.7/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ services:
184184
- management.endpoint.health.probes.enabled=true
185185
env_file: connector-secrets.txt
186186
healthcheck:
187-
test: ["CMD-SHELL", "curl -f http://localhost:8080/actuator/health/readiness"]
187+
test: ["CMD-SHELL", "wget -q --spider http://localhost:8080/actuator/health/readiness"]
188188
interval: 30s
189189
timeout: 1s
190190
retries: 5

docker-compose/versions/camunda-8.8/docker-compose-full.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ services:
7474
env_file: connector-secrets.txt
7575
restart: on-failure
7676
healthcheck:
77-
test: ["CMD", "curl", "-f", "http://localhost:8080/actuator/health/readiness"]
77+
test: ["CMD-SHELL", "wget -q --spider http://localhost:8080/actuator/health/readiness"]
7878
interval: 30s
7979
timeout: 5s
8080
retries: 5

docker-compose/versions/camunda-8.8/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ services:
4646
env_file: connector-secrets.txt
4747
restart: unless-stopped
4848
healthcheck:
49-
test: ["CMD-SHELL", "curl -f http://localhost:8080/actuator/health/readiness"]
49+
test: ["CMD-SHELL", "wget -q --spider http://localhost:8080/actuator/health/readiness"]
5050
interval: 30s
5151
timeout: 1s
5252
retries: 5

0 commit comments

Comments
 (0)