Skip to content

Commit 65debb5

Browse files
authored
Add --insecure to tracker health checks
Looks like the base image for trackers doesn't trust the root CA (or it is outdated) that signed our *.streamr.network certificate
1 parent c7f6a01 commit 65debb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ services:
6363
- ./certs:/certs
6464
command: node tracker.js 0xa4fc7b912ed4588080ac9f2044cb3d6cab961bcf0d96de6fa9e773860bf59e1c tracker-1 --port=30301 ${TRACKER_ARGS}
6565
healthcheck:
66-
test: ["CMD", "curl", "-sS", "${STREAMR_BASE_URL}:30301/topology/"]
66+
test: ["CMD", "curl", "-sS", "--insecure", "${STREAMR_BASE_URL}:30301/topology/"]
6767
interval: 30s
6868
timeout: 10s
6969
retries: 20
@@ -77,7 +77,7 @@ services:
7777
- ./certs:/certs
7878
command: node tracker.js 0x3b328103c0d043cd1b34f1203c0313eb70c98443444dfdf7125f2d4479b89eb9 tracker-2 --port=30302 ${TRACKER_ARGS}
7979
healthcheck:
80-
test: ["CMD", "curl", "-sS", "${STREAMR_BASE_URL}:30302/topology/"]
80+
test: ["CMD", "curl", "-sS", "--insecure", "${STREAMR_BASE_URL}:30302/topology/"]
8181
interval: 30s
8282
timeout: 10s
8383
retries: 20
@@ -91,7 +91,7 @@ services:
9191
- ./certs:/certs
9292
command: node tracker.js 0xf456bb2a958574416f4b9e1b1b642cb3092953aa6131aba6e36f7529d1137795 tracker-3 --port=30303 ${TRACKER_ARGS}
9393
healthcheck:
94-
test: ["CMD", "curl", "-sS", "${STREAMR_BASE_URL}:30303/topology/"]
94+
test: ["CMD", "curl", "-sS", "--insecure", "${STREAMR_BASE_URL}:30303/topology/"]
9595
interval: 30s
9696
timeout: 10s
9797
retries: 20

0 commit comments

Comments
 (0)