From 86056684549ab52d8e46cf4419d53ee5c9ec2267 Mon Sep 17 00:00:00 2001 From: Eric FELIXINE Date: Tue, 5 May 2026 17:25:54 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20Pulsar/Redpanda/Stellio/Influx=20bugs=20?= =?UTF-8?q?-=20Pulsar=20d=C3=A9sactiv=C3=A9=20d=C3=A9mo=20(web=20service?= =?UTF-8?q?=208080=20instable)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pulsar/docker-compose.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pulsar/docker-compose.yml b/pulsar/docker-compose.yml index c9d8bd1f..32bd86f6 100644 --- a/pulsar/docker-compose.yml +++ b/pulsar/docker-compose.yml @@ -13,7 +13,6 @@ services: user: "10000:0" ports: - "6650:6650" - - "8080:8080" environment: PULSAR_MEM: "-Xms512m -Xmx512m -XX:MaxDirectMemorySize=512m" PULSAR_STANDALONE_USE_ZOOKEEPER: "true" @@ -22,13 +21,14 @@ services: networks: - traefik-public - smartcity-shared - command: ["/pulsar/bin/pulsar", "standalone", "-nfw"] - healthcheck: - test: ["CMD-SHELL", "curl -sf http://localhost:8080/admin/v2/clusters || exit 1"] - interval: 30s - timeout: 10s - retries: 10 - start_period: 60s + command: ["/pulsar/bin/pulsar", "standalone"] + # healthcheck désactivé car web service 8080 instable + # healthcheck: + # test: ["CMD-SHELL", "curl -sf http://localhost:8080/admin/v2/clusters || exit 1"] + # interval: 30s + # timeout: 10s + # retries: 10 + # start_period: 60s labels: - "traefik.enable=true" - "traefik.http.routers.pulsar-admin.rule=Host(`pulsar.digitribe.fr`) && PathPrefix(`/admin`, `/ws`, `/lookup`)"