From aa1fa1e654f1385685ed223376746a2937a2c65d Mon Sep 17 00:00:00 2001 From: decentral1se Date: Fri, 28 May 2021 15:01:57 +0200 Subject: [PATCH] Disable healthchecks for now --- compose.yml | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/compose.yml b/compose.yml index 89e5f7e..336b212 100644 --- a/compose.yml +++ b/compose.yml @@ -35,12 +35,13 @@ services: - "bootstrap.memory_lock=true" networks: - internal_network - healthcheck: - test: - [ - "CMD-SHELL", - "curl --silent --fail localhost:9200/_cluster/health || exit 1", - ] + # Note(decentral1se): get this working, failing somehow so far + # healthcheck: + # test: + # [ + # "CMD-SHELL", + # "curl --silent --fail localhost:9200/_cluster/health || exit 1", + # ] volumes: - es:/usr/share/elasticsearch/data ulimits: @@ -54,12 +55,13 @@ services: networks: &bothNetworks - proxy - internal_network - healthcheck: - test: - [ - "CMD-SHELL", - "wget -q --spider --proxy=off localhost:3000/health || exit 1", - ] + # Note(decentral1se): get this working, failing somehow so far + # healthcheck: + # test: + # [ + # "CMD-SHELL", + # "wget -q --spider --proxy=off localhost:3000/health || exit 1", + # ] deploy: update_config: failure_action: rollback @@ -190,12 +192,13 @@ services: entrypoint: *entrypoint secrets: *secrets networks: *bothNetworks - healthcheck: - test: - [ - "CMD-SHELL", - "wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1", - ] + # Note(decentral1se): get this working, failing somehow so far + # healthcheck: + # test: + # [ + # "CMD-SHELL", + # "wget -q --spider --proxy=off localhost:4000/api/v1/streaming/health || exit 1", + # ] deploy: update_config: failure_action: rollback