Skip to content

Commit 2919ced

Browse files
committed
Restructure Deployments (new folder)
1 parent f764057 commit 2919ced

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+20
-19
lines changed

.github/workflows/build_and_test_no_docker.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@ jobs:
5454
uses: dcarbone/install-jq-action@e397bd87438d72198f81efd21f876461183d383a # v3.0.1
5555

5656
- name: Run k6 foundations tests
57-
run: ./scripts/run-tests.sh -t **/k6/foundations/*.js -u http://localhost:3333
57+
run: ./k6/run-tests.sh -t **/k6/foundations/*.js -u http://localhost:3333
5858

5959
- name: Run k6 foundations TS tests
60-
run: ./scripts/run-tests.sh -t **/k6/foundations/*.ts -u http://localhost:3333
60+
run: ./k6/run-tests.sh -t **/k6/foundations/*.ts -u http://localhost:3333
6161

6262
- name: Run k6 internal tests
63-
run: ./scripts/run-tests.sh -t **/k6/internal/*.js -u http://localhost:3333
63+
run: ./k6/run-tests.sh -t **/k6/internal/*.js -u http://localhost:3333
6464

6565
- name: Run k6 browser tests
66-
run: ./scripts/run-tests.sh -t **/k6/browser/*.js -u http://localhost:3333
66+
run: ./k6/run-tests.sh -t **/k6/browser/*.js -u http://localhost:3333
6767

6868
- name: Stop Server
6969
run: pkill -9 quickpizza

CLAUDE.md

Lines changed: 2 additions & 2 deletions

compose.grafana-cloud.microservices.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
labels:
1818
- "service.type=instrumentation"
1919
volumes:
20-
- "./alloy/${ALLOY_FILE_NAME:-cloud.alloy}:/config.alloy:Z"
20+
- "./deployments/docker-compose/grafana-cloud/${ALLOY_FILE_NAME:-config.alloy}:/config.alloy:Z"
2121
- "${DOCKER_SOCKET:-/var/run/docker.sock}:/var/run/docker.sock"
2222
command:
2323
- run
@@ -157,7 +157,7 @@ services:
157157
DB_O11Y_DATABASES: quickpizza_db
158158
volumes:
159159
- postgres_data:/var/lib/postgresql
160-
- ./scripts/init-db-observability.sh:/docker-entrypoint-initdb.d/init-db-observability.sh:Z
160+
- ./deployments/init-db-observability.sh:/docker-entrypoint-initdb.d/init-db-observability.sh:Z
161161
command:
162162
- "postgres"
163163
- "-c"

compose.grafana-cloud.monolithic.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
labels:
66
- "service.type=instrumentation"
77
volumes:
8-
- "./alloy/${ALLOY_FILE_NAME:-cloud.alloy}:/config.alloy:Z"
8+
- "./deployments/docker-compose/grafana-cloud/${ALLOY_FILE_NAME:-config.alloy}:/config.alloy:Z"
99
- "${DOCKER_SOCKET:-/var/run/docker.sock}:/var/run/docker.sock"
1010
command:
1111
- run
@@ -75,7 +75,7 @@ services:
7575
DB_O11Y_DATABASES: quickpizza_db
7676
volumes:
7777
- postgres_data:/var/lib/postgresql
78-
- ./scripts/init-db-observability.sh:/docker-entrypoint-initdb.d/init-db-observability.sh:Z
78+
- ./deployments/init-db-observability.sh:/docker-entrypoint-initdb.d/init-db-observability.sh:Z
7979
command:
8080
- "postgres"
8181
- "-c"

compose.grafana-local-stack.microservices.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
labels:
1818
- "service.type=instrumentation"
1919
volumes:
20-
- "./alloy/${ALLOY_FILE_NAME:-local.alloy}:/config.alloy:Z"
20+
- "./deployments/docker-compose/grafana-local-stack/${ALLOY_FILE_NAME:-config.alloy}:/config.alloy:Z"
2121
- "${DOCKER_SOCKET:-/var/run/docker.sock}:/var/run/docker.sock"
2222
command:
2323
- run
@@ -177,7 +177,7 @@ services:
177177
- "9090:9090"
178178

179179
pyroscope:
180-
image: grafana/pyroscope:1.16.0@sha256:58e49fa3443195c7b95f5c9821ce8920a8627f215c2ccdf955a9cd78c76a3468
180+
image: grafana/pyroscope:1.16.0
181181
container_name: pyroscope
182182
labels:
183183
- "service.type=instrumentation"
@@ -191,7 +191,7 @@ services:
191191
- "service.type=instrumentation"
192192
command: ["-config.file=/etc/tempo.yaml"]
193193
volumes:
194-
- ./alloy/local-tempo.yaml:/etc/tempo.yaml
194+
- ./deployments/docker-compose/grafana-local-stack/tempo.yaml:/etc/tempo.yaml
195195
ports:
196196
- "3200:3200" # Tempo API/UI
197197
depends_on:
@@ -210,7 +210,7 @@ services:
210210
- GF_AUTH_BASIC_ENABLED=false
211211
- GF_FEATURE_TOGGLES_ENABLE=tempoAlerting
212212
volumes:
213-
- ./grafana:/etc/grafana/provisioning/
213+
- ./deployments/docker-compose/grafana-local-stack/grafana:/etc/grafana/provisioning/
214214

215215
volumes:
216216
postgres_data:

compose.grafana-local-stack.monolithic.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
labels:
66
- "service.type=instrumentation"
77
volumes:
8-
- "./alloy/${ALLOY_FILE_NAME:-local.alloy}:/config.alloy:Z"
8+
- "./deployments/docker-compose/grafana-local-stack/${ALLOY_FILE_NAME:-config.alloy}:/config.alloy:Z"
99
- "${DOCKER_SOCKET:-/var/run/docker.sock}:/var/run/docker.sock"
1010
command:
1111
- run
@@ -114,7 +114,7 @@ services:
114114
- "service.type=instrumentation"
115115
command: ["-config.file=/etc/tempo.yaml"]
116116
volumes:
117-
- ./alloy/local-tempo.yaml:/etc/tempo.yaml
117+
- ./deployments/docker-compose/grafana-local-stack/tempo.yaml:/etc/tempo.yaml
118118
ports:
119119
- "3200:3200" # Tempo API/UI
120120
depends_on:
@@ -133,7 +133,7 @@ services:
133133
- GF_AUTH_BASIC_ENABLED=false
134134
- GF_FEATURE_TOGGLES_ENABLE=tempoAlerting
135135
volumes:
136-
- ./grafana:/etc/grafana/provisioning/
136+
- ./deployments/docker-compose/grafana-local-stack/grafana:/etc/grafana/provisioning/
137137

138138
volumes:
139139
postgres_data:
Lines changed: 1 addition & 0 deletions

alloy/cloud.alloy renamed to deployments/docker-compose/grafana-cloud/config.alloy

File renamed without changes.

alloy/local.alloy renamed to deployments/docker-compose/grafana-local-stack/config.alloy

File renamed without changes.

grafana/dashboards/dashboards.yaml renamed to deployments/docker-compose/grafana-local-stack/grafana/dashboards/dashboards.yaml

File renamed without changes.

0 commit comments

Comments
 (0)