-
Notifications
You must be signed in to change notification settings - Fork 31
63 lines (61 loc) · 1.66 KB
/
e2e.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: "e2e"
on:
pull_request:
paths-ignore:
- "**/*.md"
- "CODEOWNERS"
push:
paths-ignore:
- "**/*.md"
- "CODEOWNERS"
branches:
- "main"
jobs:
e2e-k8s:
name: "e2e-k8s"
runs-on: "ubuntu-22.04"
strategy:
matrix:
kubernetes_versions: ["1.31.0", "1.30.4", "1.29.8"]
env:
KUBERNETES_VERSION: ${{ matrix.kubernetes_versions }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- run: make -C test/e2e setup
- run: make -C test/e2e init-app-with-cert-manager
- run: make -C test/e2e test
e2e-k8s-without-cert-manager:
name: "e2e-k8s-without-cert-manager"
runs-on: "ubuntu-22.04"
strategy:
matrix:
kubernetes_versions: ["1.31.0", "1.30.4", "1.29.8"]
env:
KUBERNETES_VERSION: ${{ matrix.kubernetes_versions }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- run: make -C test/e2e setup
- run: make -C test/e2e init-app-without-cert-manager
- run: make -C test/e2e test
e2e-k8s-with-metrics-api:
name: "e2e-k8s-with-metrics-api"
runs-on: "ubuntu-22.04"
strategy:
matrix:
kubernetes_versions: ["1.31.0", "1.30.4", "1.29.8"]
env:
KUBERNETES_VERSION: ${{ matrix.kubernetes_versions }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- run: make -C test/e2e setup
- run: make -C test/e2e init-app-with-metrics-api
- run: make -C test/e2e test