From 0d11bdbfb69abc6f4f89fb12e3e4a2028101f478 Mon Sep 17 00:00:00 2001 From: Gauthier POGAM--LE MONTAGNER Date: Wed, 15 Oct 2025 18:50:09 +0200 Subject: [PATCH] feat(signoz): pin service image tags and `exclude_from_hc` flag to services excluded from health checks --- templates/compose/signoz.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/templates/compose/signoz.yaml b/templates/compose/signoz.yaml index 9025ce468..42e21790c 100644 --- a/templates/compose/signoz.yaml +++ b/templates/compose/signoz.yaml @@ -21,13 +21,14 @@ services: mkdir -p /var/lib/clickhouse/user_scripts/histogramQuantile mv histogram-quantile /var/lib/clickhouse/user_scripts/histogramQuantile restart: on-failure + exclude_from_hc: true logging: options: max-size: 50m max-file: "3" zookeeper: - image: signoz/zookeeper:latest + image: signoz/zookeeper:3.9.3 user: root healthcheck: test: @@ -384,7 +385,7 @@ services: signoz: - image: signoz/signoz:latest + image: signoz/signoz:v0.97.1 depends_on: clickhouse: condition: service_healthy @@ -462,7 +463,7 @@ services: retries: 3 otel-collector: - image: signoz/signoz-otel-collector:latest + image: signoz/signoz-otel-collector:v0.129.7 depends_on: clickhouse: condition: service_healthy @@ -592,7 +593,7 @@ services: retries: 3 schema-migrator-sync: - image: signoz/signoz-schema-migrator:latest + image: signoz/signoz-schema-migrator:v0.129.7 command: - sync - --dsn=tcp://clickhouse:9000 @@ -601,18 +602,21 @@ services: clickhouse: condition: service_healthy restart: on-failure + exclude_from_hc: true logging: options: max-size: 50m max-file: "3" schema-migrator-async: - image: signoz/signoz-schema-migrator:latest + image: signoz/signoz-schema-migrator:v0.129.7 depends_on: clickhouse: condition: service_healthy schema-migrator-sync: condition: service_completed_successfully + restart: on-failure + exclude_from_hc: true logging: options: max-size: 50m @@ -621,4 +625,3 @@ services: - async - --dsn=tcp://clickhouse:9000 - --up= - restart: on-failure