Skip to content

Commit 087a183

Browse files
committed
demo: Remove grafana+prometheus from quickstart demo
The current quickstart demo isn't showing stats in grafana properly again. We need to remove the custom-built grafana and prometheus containers from the demo so that we don't have to continue to test and maintain them. Change-Id: I6b304fbc300e01f59f829d146f9e4a626e47eae7 Reviewed-on: https://gerrit.readyset.name/c/readyset/+/6262 Reviewed-by: Jason Brown <[email protected]> Reviewed-by: Andrew Glover <[email protected]> Tested-by: Buildkite CI
1 parent f6b826b commit 087a183

File tree

3 files changed

+0
-72
lines changed

3 files changed

+0
-72
lines changed

quickstart/compose.mysql.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -31,29 +31,6 @@ services:
3131
depends_on:
3232
mysql:
3333
condition: service_healthy
34-
prometheus:
35-
image: public.ecr.aws/readyset/readyset-prometheus:latest
36-
healthcheck:
37-
test: ["CMD", "nc", "-vz", "localhost", "9090"]
38-
interval: 5s
39-
timeout: 5s
40-
retries: 12
41-
expose:
42-
- 9090
43-
volumes:
44-
- "prometheus:/prometheus"
45-
pushgateway:
46-
image: prom/pushgateway
47-
expose:
48-
- 9091
49-
grafana:
50-
image: public.ecr.aws/readyset/readyset-grafana:latest
51-
ports:
52-
- "4000:4000"
53-
environment:
54-
UPSTREAM_DB_URL: mysql://root:readyset@mysql/testdb
55-
RS_PORT: 3307
56-
RS_GRAFANA_PORT: 4000
5734
mysql:
5835
image: mysql:8
5936
environment:
@@ -71,5 +48,4 @@ services:
7148
- mysql:/var/lib/mysql
7249
volumes:
7350
mysql: ~
74-
prometheus: ~
7551
readyset: ~

quickstart/compose.postgres.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -31,29 +31,6 @@ services:
3131
depends_on:
3232
postgres:
3333
condition: service_healthy
34-
prometheus:
35-
image: public.ecr.aws/readyset/readyset-prometheus:latest
36-
healthcheck:
37-
test: ["CMD", "nc", "-vz", "localhost", "9090"]
38-
interval: 5s
39-
timeout: 5s
40-
retries: 12
41-
expose:
42-
- 9090
43-
volumes:
44-
- "prometheus:/prometheus"
45-
pushgateway:
46-
image: prom/pushgateway
47-
expose:
48-
- 9091
49-
grafana:
50-
image: public.ecr.aws/readyset/readyset-grafana:latest
51-
ports:
52-
- "4000:4000"
53-
environment:
54-
UPSTREAM_DB_URL: postgresql://postgres:readyset@postgres/testdb
55-
RS_PORT: 5433
56-
RS_GRAFANA_PORT: 4000
5734
postgres:
5835
image: postgres:14
5936
environment:
@@ -74,5 +51,4 @@ services:
7451
- postgres:/var/lib/postgresql/data
7552
volumes:
7653
postgres: ~
77-
prometheus: ~
7854
readyset: ~

quickstart/compose.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,5 @@ services:
3030
timeout: 1s
3131
retries: 5
3232
start_period: 5s
33-
prometheus:
34-
image: "public.ecr.aws/readyset/readyset-prometheus:latest"
35-
healthcheck:
36-
test: ["CMD", "nc", "-vz", "localhost", "9090"]
37-
interval: 5s
38-
timeout: 5s
39-
retries: 12
40-
expose:
41-
- 9090
42-
volumes:
43-
- "prometheus:/prometheus"
44-
pushgateway:
45-
image: prom/pushgateway
46-
expose:
47-
- 9091
48-
grafana:
49-
image: "public.ecr.aws/readyset/readyset-grafana:latest"
50-
ports:
51-
- 4000:4000
52-
environment:
53-
# UPSTREAM_DB_URL:
54-
RS_PORT: 5433
55-
RS_GRAFANA_PORT: 4000
5633
volumes:
57-
prometheus: ~
5834
readyset: ~

0 commit comments

Comments
 (0)