-
Notifications
You must be signed in to change notification settings - Fork 18
210 lines (180 loc) · 5.31 KB
/
kind.yml
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
name: KinD tests
on:
push:
branches:
- main
- release-[0-9]+.[0-9]+
pull_request:
branches:
- main
- release-[0-9]+.[0-9]+
defaults:
run:
shell: bash
jobs:
preflight-tests:
name: Preflight Tests
runs-on: ubuntu-latest
env:
KIND_VERSION: latest
REGISTRY: localhost:5000
steps:
- name: Checkout Config Policy Controller
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Format, Lint, and Generate
run: |
go mod verify
make fmt
git diff --exit-code
make lint
make generate
make generate-operator-yaml
git diff --exit-code
- name: Unit Tests
run: |
make test-coverage
- name: Upload Unit Test Coverage
uses: actions/upload-artifact@v4
with:
name: coverage_unit
path: coverage_unit.out
- name: Bootstrap K8s KinD Cluster and Deploy Controller
run: |
make kind-bootstrap-cluster-dev
KUBECONFIG=${PWD}/kubeconfig_managed make kind-ensure-sa
make build-images
KUBECONFIG=${PWD}/kubeconfig_managed_e2e make kind-deploy-controller-dev
- name: E2E tests that require the controller running in a cluster
run: |
export GOPATH=$(go env GOPATH)
KUBECONFIG=${PWD}/kubeconfig_managed make e2e-test-running-in-cluster
- name: Upload Uninstall Test Coverage
uses: actions/upload-artifact@v4
with:
name: coverage_e2e_uninstall
path: coverage_e2e_uninstall.out
- name: Debug
if: ${{ failure() }}
run: |
make e2e-debug
- name: Clean up cluster
if: ${{ always() }}
run: |
make kind-delete-cluster
kind-tests:
name: KinD tests
runs-on: ubuntu-latest
env:
REGISTRY: localhost:5000
strategy:
fail-fast: false
matrix:
# Run tests on minimum and newest supported OCP Kubernetes
# The "minimum" tag is set in the Makefile
# KinD tags: https://hub.docker.com/r/kindest/node/tags
kind:
- "minimum"
- "latest"
steps:
- name: Checkout Config Policy Controller
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Create K8s KinD Cluster - ${{ matrix.kind }}
env:
KIND_VERSION: ${{ matrix.kind }}
run: |
make kind-bootstrap-cluster-dev
KUBECONFIG=${PWD}/kubeconfig_managed make kind-ensure-sa
- name: E2E Tests
run: |
export GOPATH=$(go env GOPATH)
KUBECONFIG=${PWD}/kubeconfig_managed make e2e-test-coverage
- name: Upload E2E Test Coverage
uses: actions/upload-artifact@v4
if: ${{ matrix.kind == 'latest' }}
with:
name: coverage_e2e
path: coverage_e2e.out
- name: Debug
if: ${{ failure() }}
run: |
make e2e-debug
- name: Clean up cluster
if: ${{ always() }}
run: |
make kind-delete-cluster
hosted-tests:
name: Hosted KinD tests
runs-on: ubuntu-latest
env:
REGISTRY: localhost:5000
strategy:
fail-fast: false
matrix:
# Run tests on minimum and newest supported OCP Kubernetes
# The "minimum" tag is set in the Makefile
# KinD tags: https://hub.docker.com/r/kindest/node/tags
kind:
- "minimum"
- "latest"
steps:
- name: Checkout Config Policy Controller
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Create K8s KinD Clusters - ${{ matrix.kind }}
env:
KIND_VERSION: ${{ matrix.kind }}
run: |
make kind-bootstrap-cluster-dev
KUBECONFIG=${PWD}/kubeconfig_managed make kind-ensure-sa
make kind-additional-cluster
- name: E2E tests that simulate hosted mode
run: |
export GOPATH=$(go env GOPATH)
KUBECONFIG=${PWD}/kubeconfig_managed make e2e-test-hosted-mode-coverage
- name: Upload Hosted Mode Coverage
uses: actions/upload-artifact@v4
if: ${{ matrix.kind == 'latest' }}
with:
name: coverage_e2e_hosted_mode
path: coverage_e2e_hosted_mode.out
- name: Debug
if: ${{ failure() }}
run: |
make e2e-debug
- name: Clean up cluster
if: ${{ always() }}
run: |
make kind-delete-cluster
coverage-verification:
needs: [preflight-tests, kind-tests, hosted-tests]
defaults:
run:
working-directory: '.'
name: Test Coverage Verification
runs-on: ubuntu-latest
steps:
- name: Checkout Config Policy Controller
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Download Coverage Results
uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Test Coverage Verification
run: |
make coverage-verify
make gosec-scan