Skip to content

Commit 1002ab5

Browse files
chore(release): 📌 pin 0.7.4 SigNoz version and deployment changes
Signed-off-by: Prashant Shahi <[email protected]>
1 parent 3dc94c8 commit 1002ab5

File tree

5 files changed

+40
-48
lines changed

5 files changed

+40
-48
lines changed

deploy/docker-swarm/clickhouse-setup/docker-compose.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,20 @@ services:
1717
retries: 3
1818

1919
alertmanager:
20-
image: signoz/alertmanager:0.5.0
20+
image: signoz/alertmanager:0.6.0
2121
volumes:
22-
- ./alertmanager.yml:/prometheus/alertmanager.yml
2322
- ./data/alertmanager:/data
2423
command:
25-
- '--config.file=/prometheus/alertmanager.yml'
26-
- '--storage.path=/data'
24+
- --queryService.url=http://query-service:8080
25+
- --storage.path=/data
26+
depends_on:
27+
- query-service
2728
deploy:
2829
restart_policy:
2930
condition: on-failure
3031

3132
query-service:
32-
image: signoz/query-service:0.7.3
33+
image: signoz/query-service:0.7.4
3334
command: ["-config=/root/config/prometheus.yml"]
3435
ports:
3536
- "8080:8080"
@@ -48,10 +49,10 @@ services:
4849
restart_policy:
4950
condition: on-failure
5051
depends_on:
51-
- clickhouse
52+
- clickhouse
5253

5354
frontend:
54-
image: signoz/frontend:0.7.3
55+
image: signoz/frontend:0.7.4
5556
depends_on:
5657
- query-service
5758
ports:

deploy/docker/clickhouse-setup/docker-compose.arm.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,17 @@ services:
1515
retries: 3
1616

1717
alertmanager:
18-
image: signoz/alertmanager:0.5.0
18+
image: signoz/alertmanager:0.6.0
1919
volumes:
20-
- ./alertmanager.yml:/prometheus/alertmanager.yml
2120
- ./data/alertmanager:/data
21+
depends_on:
22+
- query-service
2223
command:
23-
- '--config.file=/prometheus/alertmanager.yml'
24-
- '--storage.path=/data'
24+
- --queryService.url=http://query-service:8080
25+
- --storage.path=/data
2526

2627
query-service:
27-
image: signoz/query-service:0.7.3
28+
image: signoz/query-service:0.7.4
2829
container_name: query-service
2930
command: ["-config=/root/config/prometheus.yml"]
3031
volumes:
@@ -44,7 +45,7 @@ services:
4445
condition: service_healthy
4546

4647
frontend:
47-
image: signoz/frontend:0.7.3
48+
image: signoz/frontend:0.7.4
4849
container_name: frontend
4950
depends_on:
5051
- query-service
@@ -66,7 +67,7 @@ services:
6667
# - "14268:14268" # Jaeger receiver
6768
# - "55678:55678" # OpenCensus receiver
6869
# - "55679:55679" # zpages extension
69-
# - "55680:55680" # OTLP gRPC legacy port
70+
# - "55680:55680" # OTLP gRPC legacy receiver
7071
# - "55681:55681" # OTLP HTTP legacy receiver
7172
mem_limit: 2000m
7273
restart: on-failure
@@ -93,7 +94,7 @@ services:
9394
max-file: "3"
9495
command: ["all"]
9596
environment:
96-
- JAEGER_ENDPOINT=http://otel-collector:14268/api/traces
97+
- JAEGER_ENDPOINT=http://otel-collector:14268/api/traces
9798

9899
load-hotrod:
99100
image: "grubykarol/locust:1.2.3-python3.9-alpine3.12"

deploy/docker/clickhouse-setup/docker-compose.yaml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,17 @@ services:
1717
alertmanager:
1818
image: signoz/alertmanager:0.6.0
1919
volumes:
20-
# we no longer need the config file as query services delivers
21-
# the required config now
22-
# - ./alertmanager.yml:/prometheus/alertmanager.yml
2320
- ./data/alertmanager:/data
2421
depends_on:
2522
- query-service
2623
command:
27-
- '--queryService.url=http://query-service:8080'
28-
- '--storage.path=/data'
24+
- --queryService.url=http://query-service:8080
25+
- --storage.path=/data
2926

3027
# Notes for Maintainers/Contributors who will change Line Numbers of Frontend & Query-Section. Please Update Line Numbers in `./scripts/commentLinesForSetup.sh` & `./CONTRIBUTING.md`
3128

3229
query-service:
33-
image: signoz/query-service:0.7.3
30+
image: signoz/query-service:0.7.4
3431
container_name: query-service
3532
command: ["-config=/root/config/prometheus.yml"]
3633
volumes:
@@ -43,14 +40,13 @@ services:
4340
- GODEBUG=netdns=go
4441
- TELEMETRY_ENABLED=true
4542
- DEPLOYMENT_TYPE=docker-standalone-amd
46-
4743
restart: on-failure
4844
depends_on:
4945
clickhouse:
5046
condition: service_healthy
5147

5248
frontend:
53-
image: signoz/frontend:0.7.3
49+
image: signoz/frontend:0.7.4
5450
container_name: frontend
5551
depends_on:
5652
- query-service
@@ -72,7 +68,7 @@ services:
7268
# - "14268:14268" # Jaeger receiver
7369
# - "55678:55678" # OpenCensus receiver
7470
# - "55679:55679" # zpages extension
75-
# - "55680:55680" # OTLP gRPC legacy port
71+
# - "55680:55680" # OTLP gRPC legacy receiver
7672
# - "55681:55681" # OTLP HTTP legacy receiver
7773
mem_limit: 2000m
7874
restart: on-failure

pkg/query-service/tests/test-deploy/docker-compose.arm.yaml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ services:
55
image: altinity/clickhouse-server:21.12.3.32.altinitydev.arm
66
volumes:
77
- ./clickhouse-config.xml:/etc/clickhouse-server/config.xml
8-
- ./data/clickhouse/:/var/lib/clickhouse/
98
healthcheck:
109
# "clickhouse", "client", "-u ${CLICKHOUSE_USER}", "--password ${CLICKHOUSE_PASSWORD}", "-q 'SELECT 1'"
1110
test: ["CMD", "wget", "--spider", "-q", "localhost:8123/ping"]
@@ -14,13 +13,12 @@ services:
1413
retries: 3
1514

1615
alertmanager:
17-
image: signoz/alertmanager:0.5.0
18-
volumes:
19-
- ./alertmanager.yml:/prometheus/alertmanager.yml
20-
- ./data/alertmanager:/data
16+
image: signoz/alertmanager:0.6.0
17+
depends_on:
18+
- query-service
2119
command:
22-
- '--config.file=/prometheus/alertmanager.yml'
23-
- '--storage.path=/data'
20+
- --queryService.url=http://query-service:8080
21+
- --storage.path=/data
2422

2523
query-service:
2624
image: signoz/query-service:latest
@@ -29,9 +27,9 @@ services:
2927
volumes:
3028
- ./prometheus.yml:/root/config/prometheus.yml
3129
- ../dashboards:/root/config/dashboards
32-
- ./data/signoz/:/var/lib/signoz/
30+
- ./data:/var/lib/signoz
3331
ports:
34-
- "8180:8080"
32+
- "8180:8080"
3533
environment:
3634
- ClickHouseUrl=tcp://clickhouse:9000
3735
- STORAGE=clickhouse
@@ -72,7 +70,7 @@ services:
7270
max-file: "3"
7371
command: ["all"]
7472
environment:
75-
- JAEGER_ENDPOINT=http://otel-collector:14268/api/traces
73+
- JAEGER_ENDPOINT=http://otel-collector:14268/api/traces
7674

7775
load-hotrod:
7876
image: "grubykarol/locust:1.2.3-python3.9-alpine3.12"
@@ -87,4 +85,4 @@ services:
8785
QUIET_MODE: "${QUIET_MODE:-false}"
8886
LOCUST_OPTS: "--headless -u 10 -r 1"
8987
volumes:
90-
- ../common/locust-scripts:/locust
88+
- ../../../../deploy/docker/common/locust-scripts:/locust

pkg/query-service/tests/test-deploy/docker-compose.yaml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,25 @@ services:
1313
retries: 3
1414

1515
alertmanager:
16-
image: signoz/alertmanager:0.5.0
17-
volumes:
18-
- ./alertmanager.yml:/prometheus/alertmanager.yml
16+
image: signoz/alertmanager:0.6.0
17+
depends_on:
18+
- query-service
1919
command:
20-
- '--config.file=/prometheus/alertmanager.yml'
21-
- '--storage.path=/data'
20+
- --queryService.url=http://query-service:8080
21+
- --storage.path=/data
2222

2323
# Notes for Maintainers/Contributors who will change Line Numbers of Frontend & Query-Section. Please Update Line Numbers in `./scripts/commentLinesForSetup.sh` & `./CONTRIBUTING.md`
2424

25-
2625
query-service:
2726
image: signoz/query-service:latest
27+
container_name: query-service
2828
command: ["-config=/root/config/prometheus.yml"]
2929
volumes:
3030
- ./prometheus.yml:/root/config/prometheus.yml
3131
- ../dashboards:/root/config/dashboards
32+
- ./data:/var/lib/signoz
33+
ports:
34+
- "8180:8080"
3235
environment:
3336
- ClickHouseUrl=tcp://clickhouse:9000
3437
- STORAGE=clickhouse
@@ -37,13 +40,6 @@ services:
3740
depends_on:
3841
clickhouse:
3942
condition: service_healthy
40-
ports:
41-
- "8180:8080"
42-
volumes:
43-
- type: bind
44-
source: ./data
45-
target: /var/lib/signoz
46-
read_only: false
4743

4844
otel-collector:
4945
image: signoz/otelcontribcol:0.43.0

0 commit comments

Comments
 (0)