-
Notifications
You must be signed in to change notification settings - Fork 1
201 lines (160 loc) · 6.29 KB
/
test.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
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
name: Test
on:
pull_request:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
test-unit:
name: Unit
runs-on: ubuntu-latest
steps:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Checkout Repo
uses: actions/checkout@v2
- name: Install Dependencies
working-directory: ./tests/
run: npm ci
- name: Install Dependencies (Synchronizer)
working-directory: ./admission-controller/synchronizer/
run: npm ci
- name: Test
working-directory: ./tests/
run: npm run test:unit
test-skaffold:
name: Skaffold
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
type: [standalone, cloud]
steps:
- name: Setup Skaffold
run: curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64 && sudo install skaffold /usr/local/bin/
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Checkout Repo
uses: actions/checkout@v2
- name: Start Minikube
run: minikube start --extra-config=apiserver.enable-admission-plugins=ValidatingAdmissionWebhook
- name: Deploy Admission Controller
run: ./scripts/deploy-${{ matrix.type }}.sh host.minikube.internal:5000
- name: Preview namespace state
run: kubectl -n monokle-admission-controller get all,CustomResourceDefinition,ValidatingWebhookConfiguration,secrets
- name: Install Dependencies
working-directory: ./tests/
run: npm ci
- name: Test
working-directory: ./tests/
run: npm test "${{ matrix.type }}"
test-helm-standalone:
name: Helm (Standalone)
runs-on: ubuntu-latest
needs: [test-unit, test-skaffold]
strategy:
fail-fast: true
matrix:
k8s: [v1.25.15, v1.26.10, v1.27.7, v1.28.3]
helm: [v3.11.3, v3.12.3, v3.13.1]
steps:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Setup Helm
uses: azure/setup-helm@v3
with:
version: ${{ matrix.helm }}
- name: Debug helm
run: helm version
- name: Checkout Repo
uses: actions/checkout@v2
- name: Start Minikube
run: minikube start --kubernetes-version=${{ matrix.k8s }} --extra-config=apiserver.enable-admission-plugins=ValidatingAdmissionWebhook
- name: Build local images (init container)
run: eval $(minikube -p minikube docker-env) && minikube image build -t admission-webhook-init -f ./Dockerfile .
working-directory: ./admission-controller/init
- name: Build local images (server container)
run: eval $(minikube -p minikube docker-env) && minikube image build -t admission-webhook -f ./Dockerfile .
working-directory: ./admission-controller/server
- name: Helm install
run: |
eval $(minikube -p minikube docker-env)
helm package ./helm --version 0.0.0
helm install monokle-ac monokle-admission-controller-0.0.0.tgz \
--set namespace=mac-test \
--set image.init.pullPolicy=Never \
--set image.init.overridePath=admission-webhook-init \
--set image.server.pullPolicy=Never \
--set image.server.overridePath=admission-webhook \
--set logLevel=debug
- name: Preview namespace state
run: kubectl -n mac-test get all,CustomResourceDefinition,ValidatingWebhookConfiguration,secrets
- name: Install Dependencies
working-directory: ./tests/
run: npm ci
- name: Test
working-directory: ./tests/
run: MONOKLE_NAMESPACE=mac-test npm run test standalone
test-helm-cloud:
name: Helm (Cloud)
runs-on: ubuntu-latest
needs: [test-unit, test-skaffold]
strategy:
fail-fast: true
matrix:
k8s: [v1.24.17, v1.28.3]
helm: [v3.13.1]
steps:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Setup Helm
uses: azure/setup-helm@v3
with:
version: ${{ matrix.helm }}
- name: Debug helm
run: helm version
- name: Checkout Repo
uses: actions/checkout@v2
- name: Start Minikube
run: minikube start --kubernetes-version=${{ matrix.k8s }} --extra-config=apiserver.enable-admission-plugins=ValidatingAdmissionWebhook
- name: Build local images (init container)
run: eval $(minikube -p minikube docker-env) && minikube image build -t admission-webhook-init -f ./Dockerfile .
working-directory: ./admission-controller/init
- name: Build local images (server container)
run: eval $(minikube -p minikube docker-env) && minikube image build -t admission-webhook -f ./Dockerfile .
working-directory: ./admission-controller/server
- name: Build local images (synchronizer container)
run: eval $(minikube -p minikube docker-env) && minikube image build -t admission-webhook-synchronizer -f ./Dockerfile .
working-directory: ./admission-controller/synchronizer
- name: Helm install
run: |
eval $(minikube -p minikube docker-env)
helm package ./helm --version 0.0.0
helm install monokle-ac monokle-admission-controller-0.0.0.tgz \
--set namespace=mac-test \
--set image.init.pullPolicy=Never \
--set image.init.overridePath=admission-webhook-init \
--set image.server.pullPolicy=Never \
--set image.server.overridePath=admission-webhook \
--set image.server.pullPolicy=Never \
--set image.server.overridePath=admission-webhook-synchronizer \
--set logLevel=debug \
--set cloudApiUrl="host.minikube.internal:5000" \
--set automationToken=SAMPLE_TOKEN
- name: Preview namespace state
run: kubectl -n mac-test get all,CustomResourceDefinition,ValidatingWebhookConfiguration,secrets
- name: Install Dependencies
working-directory: ./tests/
run: npm ci
- name: Test
working-directory: ./tests/
run: MONOKLE_NAMESPACE=mac-test npm run test cloud