Skip to content

Commit ca15a30

Browse files
committed
Add a new mimir.alerts.kubernetes component
1 parent 96fbb84 commit ca15a30

File tree

22 files changed

+2762
-3
lines changed

22 files changed

+2762
-3
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Integration Tests on Kubernetes
2+
on:
3+
push:
4+
branches:
5+
- main
6+
paths:
7+
- internal/cmd/integration-tests-k8s/
8+
9+
jobs:
10+
run_tests:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
- name: Setup Go
16+
uses: actions/setup-go@v5
17+
with:
18+
go-version-file: go.mod
19+
- name: Run tests
20+
run: make integration-test-k8s

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,10 @@ endif
175175
integration-test:
176176
cd internal/cmd/integration-tests && $(GO_ENV) go run .
177177

178+
.PHONY: integration-test-k8s
179+
integration-test-k8s: alloy-image
180+
./internal/cmd/integration-tests-k8s/run.sh
181+
178182
#
179183
# Targets for building binaries
180184
#

0 commit comments

Comments
 (0)