-
Notifications
You must be signed in to change notification settings - Fork 78
187 lines (180 loc) · 6.24 KB
/
e2e-max-dim.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
#
# Copyright (C) 2019-2023 vdaas.org vald team <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: "Run E2E Max Dimension test"
on:
push:
tags:
- "*.*.*"
- "v*.*.*"
- "*.*.*-*"
- "v*.*.*-*"
pull_request:
types:
- "labeled"
jobs:
dump_contexts_to_log:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
id: github_context_step
run: echo $JSON
env:
JSON: ${{ toJSON(github) }}
- name: Dump job context
run: echo $JSON
env:
JSON: ${{ toJSON(job) }}
- name: Dump steps context
run: echo $JSON
env:
JSON: ${{ toJSON(steps) }}
- name: Dump runner context
run: echo $JSON
env:
JSON: ${{ toJSON(runner) }}
- name: Dump strategy context
run: echo $JSON
env:
JSON: ${{ toJSON(strategy) }}
- name: Dump matrix context
run: echo $JSON
env:
JSON: ${{ toJSON(matrix) }}
e2e-max-dimension-insert:
name: "E2E test (Max Dimension Insert: skip strict exist check)"
runs-on: ubuntu-latest
timeout-minutes: 60
if: startsWith( github.ref, 'refs/tags/') || github.event.action == 'labeled' && github.event.label.name == 'actions/e2e-max-dim'
steps:
- uses: actions/checkout@v3
- name: set git config
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
- name: Wait for Docker images
if: startsWith( github.ref, 'refs/tags/')
id: wait_for_docker_images
uses: ./.github/actions/wait-for-docker-image
- name: Get PR number
id: get_pr_number
if: github.event.action == 'labeled' && github.event.label.name == 'actions/e2e-deploy'
run: |
pr_num=`cat $GITHUB_EVENT_PATH | jq -r ".number"`
echo "PR_NUM=${pr_num}" >> $GITHUB_OUTPUT
- name: Specify container versions
if: github.event.action == 'labeled' && github.event.label.name == 'actions/e2e-deploy'
id: specify_container_versions
uses: ./.github/actions/detect-docker-image-tags
with:
tag_name: pr-${{ steps.get_pr_number.outputs.PR_NUM }}
- name: Fetch Helm version
run: |
HELM_VERSION=`make version/helm`
echo "helm=${HELM_VERSION}" >> $GITHUB_OUTPUT
id: version
- uses: rinx/[email protected]
with:
version: latest
name: vald
agents: 1
- name: check k3d
run: |
kubectl cluster-info
- uses: azure/setup-helm@v3
with:
version: ${{ steps.version.outputs.helm }}
- name: Helm version
run: |
helm version
- name: Fetch golang version
run: |
GO_VERSION=`make version/go`
echo "version=${GO_VERSION}" >> $GITHUB_OUTPUT
id: golang_version
- uses: actions/setup-go@v3
with:
go-version: ${{ steps.golang_version.outputs.version }}
- name: run E2E MaxDimension
run: |
go version
go get github.com/vdaas/vald-client-go/v1/payload
go get github.com/vdaas/vald-client-go/v1/vald
BIT=18
RELEASE=`helm list | grep vald | awk '{print $1}'`
while [ $BIT -ne 32 ]; do
echo "Start: Bit=${BIT}"
FILE="tmp.log"
touch ${FILE}
FILEPATH=`readlink -f ${FILE}`
DIM=$((1<<$BIT))
if [ $BIT = "32" ]; then
DIM=$(($DIM-1))
fi
export HELM_EXTRA_OPTIOINS="--set agent.ngt.dimension=${DIM}"
make k8s/vald/deploy VERSION="nightly" HELM_VALUES=${VALUES} HELM_EXTRA_OPTIONS="${HELM_EXTRA_OPTIOINS}"
sleep 3
kubectl rollout restart statefulset vald-agent-ngt
sleep 30
kubectl wait --for=condition=Ready pod -l ${WAIT_FOR_SELECTOR} --timeout=${WAIT_FOR_TIMEOUT}
POD_NAME=`kubectl get pods | grep vald-lb-gateway | awk '{print $1}'`
make E2E_BIND_PORT=8081 \
E2E_MAX_DIM_RESULT_FILEPATH=${FILEPATH} \
E2E_MAX_DIM_BIT=${BIT} \
E2E_TARGET_POD_NAME=${POD_NAME} \
E2E_TARGET_NAMESPACE=default \
e2e/maxdim
CODE=`sed -n 1P ${FILEPATH}`
if [ ${CODE} = "ResourceExhausted" ]; then
echo "Finish: Bit=${BIT} with ${CODE}"
BIT=$(($BIT-1))
rm ${FILEPATH}
break;
fi
if [ ${CODE} != "OK" ]; then
echo "Finish: Bit=${BIT} with Error: ${CODE}"
rm ${FILEPATH}
break;
fi
echo "Finish: Bit=${BIT}"
BIT=$(($BIT+1))
rm ${FILEPATH}
echo "removing cluster"
make k8s/vald/delete VERSION="nightly" HELM_VALUES=${VALUES} HELM_EXTRA_OPTIONS="${HELM_EXTRA_OPTIOINS}"
done
echo "MAX_BIT=${BIT}" >> $GITHUB_OUTPUT
echo "MAX_BIT=${BIT}"
env:
WAIT_FOR_SELECTOR: app=vald-agent-ngt
WAIT_FOR_TIMEOUT: 29m
VALUES: .github/helm/values/values-max-dim.yaml
timeout-minutes: 60
slack-notification:
name: "Slack notification"
needs:
- e2e-max-dimension-insert
runs-on: ubuntu-latest
if: startsWith( github.ref, 'refs/tags/')
steps:
- uses: technote-space/workflow-conclusion-action@v2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: 8398a7/action-slack@v3
with:
author_name: "E2E max dim test"
status: ${{ env.WORKFLOW_CONCLUSION }}
only_mention_fail: channel
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_NOTIFY_WEBHOOK_URL }}