-
Notifications
You must be signed in to change notification settings - Fork 108
362 lines (350 loc) · 15 KB
/
e2etests.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
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
name: E2E Test Istio Adapter - Control Plane
on:
push:
branches:
- "*"
tags:
- "v*"
paths-ignore:
- "docs/**"
pull_request:
branches:
- "*"
release:
types: [published]
jobs:
SetPatternfileForServicemeshInstall:
runs-on: ubuntu-22.04
outputs:
sm_version: ${{ steps.gettag.outputs.release }}
adapter_version: ${{ env.version }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Get version of adapter
run: |
if [ ${{ github.event_name }} == "release" ];then
echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
else
echo "version=edge" >> $GITHUB_ENV
fi
- name: Get latest release tag
id: gettag
uses: pozetroninc/github-action-get-latest-release@master
with:
repository: istio/istio
excludes: prerelease, draft, edge
- name: Change service mesh version in patternfile
run: |
yq e -i '.services.istio.version="${{ steps.gettag.outputs.release }}"' ./.github/install/deploy.yaml
cat ./.github/install/deploy.yaml
- name: Uploading file
uses: actions/upload-artifact@v3
with:
name: patternfile
path: ./.github/install/deploy.yaml
TestIstioForServicemeshInstall:
needs: SetPatternfileForServicemeshInstall
uses: meshery/meshery/.github/workflows/test_adaptersv2.yaml@master
with:
expected_resources: istiod,istio-egressgateway,istio-ingressgateway
expected_resources_types: pod,pod,pod
expected_resources_namespaces: istio-system,istio-system,istio-system
deployment_url: https://raw.githubusercontent.com/meshery/meshery/master/install/deployment_yamls/k8s/meshery-istio-deployment.yaml
service_url: https://raw.githubusercontent.com/meshery/meshery/master/install/deployment_yamls/k8s/meshery-istio-service.yaml
adapter_name: istio
patternfile_name: deploy.yaml
provider: Local
k8s_version: v1.20.1
sm_version: ${{ needs.SetPatternfileForServicemeshInstall.outputs.sm_version }}
adapter_version: ${{ needs.SetPatternfileForServicemeshInstall.outputs.adapter_version }}
output_filename: data.json
secrets:
token: ${{ secrets.PROVIDER_TOKEN }}
UpdateDocsForServicemeshInstall:
needs: TestIstioForServicemeshInstall
if: "always() && github.event_name != 'pull_request' "
runs-on: ubuntu-22.04
steps:
- name: Skip if needed
run: |
echo "this is it ${{ needs.SkipIfNeeded.outputs.skipdocupdate }} "
if [ "${{github.event_name }}" == "push" ];then
echo "version=edge" >> $GITHUB_ENV
fi
if [ "${{github.event_name }}" == "release" ];then
echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
fi
- uses: actions/checkout@v4
with:
repository: meshery/meshery
token: ${{ secrets.GH_ACCESS_TOKEN }}
- name: DownloadJSON
uses: actions/download-artifact@v3
with:
name: data.json
- name: Add commit SHORT_SHA
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
- name: echo results
run: |
pretty=$(jq . data.json)
rm data.json
cd ./docs/_compatibility/meshery-istio
touch data.json
echo $pretty > data.json
cat data.json
touch test.md
filename=(`date +%m-%d-%Y-%H-%M-%m_${SHORT_SHA}`)
echo $filename
echo "---
timestamp: $(jq '.metadata.runon| strptime("%a %b %e %X %Z %Y") | strftime("%Y-%m-%d %X %Z %a")' data.json)
meshery-component: meshery-istio
meshery-component-version: $version
meshery-server-version: $(jq '.metadata."meshery-server-version"' data.json)
k8s-distro: minikube
k8s-version: $(jq '.metadata.k8s_version' data.json)
service-mesh: istio
service-mesh-version: $(jq '.metadata.service_mesh_version' data.json)
tests:
pod/istiod: $(jq '.resources_status."pod/istiod"' data.json)
pod/istio-egressgateway: $(jq '.resources_status."pod/istio-egressgateway"' data.json)
pod/istio-ingressgateway: $(jq '.resources_status."pod/istio-ingressgateway"' data.json)
overall-status: $(jq '."overall-status"' data.json)
---" > test.md
mv test.md $filename.md
rm data.json
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: docs
commit_user_name: l5io
commit_user_email: [email protected]
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
commit_options: "--signoff"
commit_message: "[Docs] Test status of adapter"
SetPatternfileForServicemeshAndAddon:
runs-on: ubuntu-22.04
outputs:
sm_version: ${{ steps.gettag.outputs.release }}
adapter_version: ${{ env.version }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Get version of adapter
run: |
if [ ${{ github.event_name }} == "release" ];then
echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
else
echo "version=edge" >> $GITHUB_ENV
fi
- name: Get latest release tag
id: gettag
uses: pozetroninc/github-action-get-latest-release@master
with:
repository: istio/istio
excludes: prerelease, draft, edge
- name: Change service mesh version in patternfile
run: |
yq e -i '.services.istio.version="${{ steps.gettag.outputs.release }}"' ./.github/install/deploywithaddons.yaml
yq e -i '.services.grafana.version="${{ steps.gettag.outputs.release }}"' ./.github/install/deploywithaddons.yaml
yq e -i '.services.prometheus.version="${{ steps.gettag.outputs.release }}"' ./.github/install/deploywithaddons.yaml
cat ./.github/install/deploywithaddons.yaml
- name: Uploading file
uses: actions/upload-artifact@v3
with:
name: patternfile
path: ./.github/install/deploywithaddons.yaml
TestIstioForServicemeshAndAddon:
needs: SetPatternfileForServicemeshAndAddon
uses: meshery/meshery/.github/workflows/test_adaptersv2.yaml@master
with:
expected_resources: istiod,istio-egressgateway,istio-ingressgateway,grafana,prometheus
expected_resources_types: pod,pod,pod,pod,pod
expected_resources_namespaces: istio-system,istio-system,istio-system,istio-system,istio-system
deployment_url: https://raw.githubusercontent.com/meshery/meshery/master/install/deployment_yamls/k8s/meshery-istio-deployment.yaml
service_url: https://raw.githubusercontent.com/meshery/meshery/master/install/deployment_yamls/k8s/meshery-istio-service.yaml
adapter_name: istio
patternfile_name: deploywithaddons.yaml
provider: Local
k8s_version: v1.20.1
sm_version: ${{ needs.SetPatternfileForServicemeshAndAddon.outputs.sm_version }}
adapter_version: ${{ needs.SetPatternfileForServicemeshAndAddon.outputs.adapter_version }}
output_filename: data.json
secrets:
token: ${{ secrets.PROVIDER_TOKEN }}
UpdateDocsForServicemeshAndAddon:
needs: TestIstioForServicemeshAndAddon
if: "always() && github.event_name != 'pull_request' "
runs-on: ubuntu-22.04
steps:
- name: Skip if needed
run: |
echo "this is it ${{ needs.SkipIfNeeded.outputs.skipdocupdate }} "
if [ "${{github.event_name }}" == "push" ];then
echo "version=edge" >> $GITHUB_ENV
fi
if [ "${{github.event_name }}" == "release" ];then
echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
fi
- uses: actions/checkout@v4
with:
repository: meshery/meshery
token: ${{ secrets.GH_ACCESS_TOKEN }}
- name: DownloadJSON
uses: actions/download-artifact@v3
with:
name: data.json
- name: Add commit SHORT_SHA
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
- name: echo results
run: |
pretty=$(jq . data.json)
rm data.json
cd ./docs/_compatibility/meshery-istio
touch data.json
echo $pretty > data.json
cat data.json
touch test.md
filename=(`date +%m-%d-%Y-%H-%M-%m_${SHORT_SHA}`)
echo $filename
echo "---
timestamp: $(jq '.metadata.runon| strptime("%a %b %e %X %Z %Y") | strftime("%Y-%m-%d %X %Z %a")' data.json)
meshery-component: meshery-istio
meshery-component-version: $version
meshery-server-version: $(jq '.metadata."meshery-server-version"' data.json)
k8s-distro: minikube
k8s-version: $(jq '.metadata.k8s_version' data.json)
service-mesh: istio
service-mesh-version: $(jq '.metadata.service_mesh_version' data.json)
tests:
pod/istiod: $(jq '.resources_status."pod/istiod"' data.json)
pod/istio-egressgateway: $(jq '.resources_status."pod/istio-egressgateway"' data.json)
pod/istio-ingressgateway: $(jq '.resources_status."pod/istio-ingressgateway"' data.json)
pod/grafana-addon: $(jq '.resources_status."pod/grafana"' data.json)
pod/prometheus-addon: $(jq '.resources_status."pod/prometheus"' data.json)
overall-status: $(jq '."overall-status"' data.json)
---" > test.md
mv test.md $filename.md
rm data.json
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: docs
commit_user_name: l5io
commit_user_email: [email protected]
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
commit_options: "--signoff"
commit_message: "[Docs] Test status of adapter"
SetPatternfileForServicemeshAndSampleApp:
runs-on: ubuntu-22.04
outputs:
sm_version: ${{ steps.gettag.outputs.release }}
adapter_version: ${{ env.version }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Get version of adapter
run: |
if [ ${{ github.event_name }} == "release" ];then
echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
else
echo "version=edge" >> $GITHUB_ENV
fi
- name: Get latest release tag
id: gettag
uses: pozetroninc/github-action-get-latest-release@master
with:
repository: istio/istio
excludes: prerelease, draft, edge
- name: Change service mesh version in patternfile
run: |
yq e -i '.services.istioinstallation.settings.istioVersion="${{ steps.gettag.outputs.release }}"' ./.github/install/deploywithsampleapp.yaml
cat ./.github/install/deploywithsampleapp.yaml
- name: Uploading file
uses: actions/upload-artifact@v3
with:
name: patternfile
path: ./.github/install/deploywithsampleapp.yaml
TestIstioForServicemeshAndSampleApp:
needs: SetPatternfileForServicemeshAndSampleApp
uses: meshery/meshery/.github/workflows/test_adaptersv2.yaml@master
with:
expected_resources: istiod,details,productpage,ratings,reviews-v1,reviews-v2,reviews-v3
expected_resources_types: pod,pod,pod,pod,pod,pod,pod
expected_resources_namespaces: istio-system,default,default,default,default,default,default
deployment_url: https://raw.githubusercontent.com/meshery/meshery/master/install/deployment_yamls/k8s/meshery-istio-deployment.yaml
service_url: https://raw.githubusercontent.com/meshery/meshery/master/install/deployment_yamls/k8s/meshery-istio-service.yaml
adapter_name: istio
patternfile_name: deploywithsampleapp.yaml
provider: Local
k8s_version: v1.20.1
sm_version: ${{ needs.SetPatternfileForServicemeshAndSampleApp.outputs.sm_version }}
adapter_version: ${{ needs.SetPatternfileForServicemeshAndSampleApp.outputs.adapter_version }}
output_filename: data.json
secrets:
token: ${{ secrets.PROVIDER_TOKEN }}
UpdateDocsForServicemeshAndSampleApp:
needs: TestIstioForServicemeshAndSampleApp
if: "always() && github.event_name != 'pull_request' "
runs-on: ubuntu-22.04
steps:
- name: Skip if needed
run: |
echo "this is it ${{ needs.SkipIfNeeded.outputs.skipdocupdate }} "
if [ "${{github.event_name }}" == "push" ];then
echo "version=edge" >> $GITHUB_ENV
fi
if [ "${{github.event_name }}" == "release" ];then
echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
fi
- uses: actions/checkout@v4
with:
repository: meshery/meshery
token: ${{ secrets.GH_ACCESS_TOKEN }}
- name: DownloadJSON
uses: actions/download-artifact@v3
with:
name: data.json
- name: Add commit SHORT_SHA
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
- name: echo results
run: |
pretty=$(jq . data.json)
rm data.json
cd ./docs/_compatibility/meshery-istio
touch data.json
echo $pretty > data.json
cat data.json
touch test.md
filename=(`date +%m-%d-%Y-%H-%M-%m_${SHORT_SHA}`)
echo $filename
echo "---
timestamp: $(jq '.metadata.runon| strptime("%a %b %e %X %Z %Y") | strftime("%Y-%m-%d %X %Z %a")' data.json)
meshery-component: meshery-istio
meshery-component-version: $version
meshery-server-version: $(jq '.metadata."meshery-server-version"' data.json)
k8s-distro: minikube
k8s-version: $(jq '.metadata.k8s_version' data.json)
service-mesh: istio
service-mesh-version: $(jq '.metadata.service_mesh_version' data.json)
tests:
pod/istiod: $(jq '.resources_status."pod/istiod"' data.json)
pod/details: $(jq '.resources_status."pod/details"' data.json)
pod/productpage: $(jq '.resources_status."pod/productpage"' data.json)
pod/ratings: $(jq '.resources_status."pod/ratings"' data.json)
pod/reviews-v1: $(jq '.resources_status."pod/reviews-v1"' data.json)
pod/reviews-v2: $(jq '.resources_status."pod/reviews-v2"' data.json)
pod/reviews-v3: $(jq '.resources_status."pod/reviews-v3"' data.json)
overall-status: $(jq '."overall-status"' data.json)
---" > test.md
mv test.md $filename.md
rm data.json
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: docs
commit_user_name: l5io
commit_user_email: [email protected]
commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
commit_options: "--signoff"
commit_message: "[Docs] Test status of adapter"