-
Notifications
You must be signed in to change notification settings - Fork 133
277 lines (230 loc) · 7.65 KB
/
test.yml
File metadata and controls
277 lines (230 loc) · 7.65 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
---
name: Tests
on:
pull_request: {}
push:
branches: [main]
jobs:
unit:
name: unit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- run: go test -v -race -coverprofile=coverage.txt ./...
- uses: codecov/codecov-action@v6
if: >
!startsWith(github.head_ref, 'renovate/') &&
!startsWith(github.head_ref, 'releaser-pleaser--')
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unit
cloud:
name: e2e k8s-${{ matrix.k3s }}
runs-on: ubuntu-latest
permissions:
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.k3s }}
cancel-in-progress: true
strategy:
fail-fast: false # Continue tests matrix if a flaky run occurs.
matrix:
k3s:
- v1.32
- v1.33
- v1.34
- v1.35
env:
K3S_CHANNEL: ${{ matrix.k3s }}
ENV: gha-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.k3s }}
# Domain must be available in the account running the tests. This domain is available in the account
# running the public integration tests.
CERT_DOMAIN: hc-integrations-test.de
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- uses: hetznercloud/setup-hcloud@v1
- uses: opentofu/setup-opentofu@v2
with:
tofu_version: v1.11.6 # renovate: datasource=github-releases depName=opentofu/opentofu
tofu_wrapper: false
- uses: yokawasa/action-setup-kube-tools@v0.13.4
with:
setup-tools: |
helm
kubectl
skaffold
helm: v4.1.3 # renovate: datasource=github-releases depName=helm/helm
kubectl: v1.35.3 # renovate: datasource=github-releases depName=kubernetes/kubernetes
skaffold: v2.18.2 # renovate: datasource=github-releases depName=GoogleContainerTools/skaffold
- name: Setup k3sup
env:
K3SUP_VERSION: 0.13.12 # renovate: datasource=github-releases depName=alexellis/k3sup
run: |
curl https://github.com/alexellis/k3sup/releases/download/$K3SUP_VERSION/k3sup -sSL -o /usr/local/bin/k3sup
chmod +x /usr/local/bin/k3sup
- uses: hetznercloud/tps-action@main
with:
token: ${{ secrets.HCLOUD_TOKEN }}
- name: Setup environment
run: make -C dev up
- name: Run skaffold
run: |
source dev/files/env.sh
skaffold run
- name: Run tests
run: |
source dev/files/env.sh
go test ./tests/e2e -tags e2e -v -race -timeout 60m
- name: Fetch coverage data
run: |
source dev/files/env.sh
bash scripts/get-coverage-from-k8s.sh
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v6
if: >
!startsWith(github.head_ref, 'renovate/') &&
!startsWith(github.head_ref, 'releaser-pleaser--')
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/coverage.txt
flags: e2e
- name: Dump logs & events
if: always()
continue-on-error: true
run: |
source dev/files/env.sh
mkdir debug-logs
echo "::group::hccm.log"
kubectl logs \
--namespace kube-system \
--selector app.kubernetes.io/name=hcloud-cloud-controller-manager \
--all-containers \
--prefix=true \
--tail=-1 \
| tee debug-logs/hccm.log
echo "::endgroup::"
echo "::group::events.yaml"
kubectl get events \
--all-namespaces \
--sort-by=.firstTimestamp \
--output yaml \
| tee debug-logs/events.yaml
echo "::endgroup::"
- name: Cleanup
if: always()
continue-on-error: true
run: make -C dev down
- name: Persist debug artifacts
if: always()
continue-on-error: true
uses: actions/upload-artifact@v7
with:
name: debug-logs-${{ env.ENV }}
path: debug-logs/
robot:
name: e2e robot
runs-on: ubuntu-latest
permissions:
id-token: write
# Make sure that only one job is using the server at a time
concurrency: robot
environment: e2e-robot
env:
K3S_CHANNEL: v1.35
ENV: gha-${{ github.run_id }}-${{ github.run_attempt }}-robot
ROBOT_ENABLED: "true"
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- uses: hetznercloud/setup-hcloud@v1
- uses: opentofu/setup-opentofu@v2
with:
tofu_version: v1.11.6 # renovate: datasource=github-releases depName=opentofu/opentofu
tofu_wrapper: false
- uses: yokawasa/action-setup-kube-tools@v0.13.4
with:
setup-tools: |
helm
kubectl
skaffold
helm: v4.1.3 # renovate: datasource=github-releases depName=helm/helm
kubectl: v1.35.3 # renovate: datasource=github-releases depName=kubernetes/kubernetes
skaffold: v2.18.2 # renovate: datasource=github-releases depName=GoogleContainerTools/skaffold
- name: Install k3sup
run: |
curl -sLS https://get.k3sup.dev | sh
- uses: hetznercloud/tps-action@main
with:
token: ${{ secrets.HCLOUD_TOKEN }}
- name: Setup environment
env:
ROBOT_SSH_KEY: ${{ secrets.ROBOT_SSH_KEY }}
ROBOT_USER: ${{ secrets.ROBOT_USER }}
ROBOT_PASSWORD: ${{ secrets.ROBOT_PASSWORD }}
run: |
dev/robot/with-ssh-agent make -C dev up
- name: Run skaffold
run: |
source dev/files/env.sh
skaffold run --profile=robot
- name: Run tests
env:
ROBOT_USER: ${{ secrets.ROBOT_USER }}
ROBOT_PASSWORD: ${{ secrets.ROBOT_PASSWORD }}
run: |
source dev/files/env.sh
go test ./tests/e2e -tags e2e,robot -v -timeout 60m
- name: Fetch coverage data
run: |
source dev/files/env.sh
bash scripts/get-coverage-from-k8s.sh
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v6
if: >
!startsWith(github.head_ref, 'renovate/') &&
!startsWith(github.head_ref, 'releaser-pleaser--')
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/coverage.txt
flags: e2e
- name: Dump logs & events
if: always()
continue-on-error: true
run: |
source dev/files/env.sh
mkdir debug-logs
echo "::group::hccm.log"
kubectl logs \
--namespace kube-system \
--selector app.kubernetes.io/name=hcloud-cloud-controller-manager \
--all-containers \
--prefix=true \
--tail=-1 \
| tee debug-logs/hccm.log
echo "::endgroup::"
echo "::group::events.yaml"
kubectl get events \
--all-namespaces \
--sort-by=.firstTimestamp \
--output yaml \
| tee debug-logs/events.yaml
echo "::endgroup::"
- name: Cleanup
if: always()
continue-on-error: true
run: make -C dev down
- name: Persist debug artifacts
if: always()
continue-on-error: true
uses: actions/upload-artifact@v7
with:
name: debug-logs-${{ env.ENV }}
path: debug-logs/