File tree Expand file tree Collapse file tree 5 files changed +489
-1
lines changed Expand file tree Collapse file tree 5 files changed +489
-1
lines changed Original file line number Diff line number Diff line change @@ -30,4 +30,10 @@ RUN yum install --assumeyes -d1 python3-pip nodejs gettext && \
30
30
chmod +x ./kubectl && \
31
31
mv ./kubectl /usr/local/bin && \
32
32
# Install chectl
33
- bash <(curl -sL https://che-incubator.github.io/chectl/install.sh) --channel=next
33
+ bash <(curl -sL https://che-incubator.github.io/chectl/install.sh) --channel=next && \
34
+ # Install k6 manually
35
+ curl -L https://github.com/grafana/k6/releases/latest/download/k6-v1.1.0-linux-amd64.tar.gz -o k6.tar.gz && \
36
+ tar -xzf k6.tar.gz && \
37
+ mv k6-v*/k6 /usr/local/bin/k6 && \
38
+ chmod +x /usr/local/bin/k6 && \
39
+ rm -rf k6.tar.gz k6-v*
Original file line number Diff line number Diff line change @@ -72,4 +72,6 @@ make install
72
72
export CLEAN_UP_AFTER_SUITE=" false"
73
73
make test_e2e
74
74
bumpLogs
75
+
76
+ make test_dwo_load
75
77
make uninstall
Original file line number Diff line number Diff line change @@ -115,6 +115,11 @@ test_e2e_debug:
115
115
mkdir -p /tmp/artifacts
116
116
dlv test --listen=:2345 --headless=true --api-version=2 ./test/e2e/cmd/workspaces_test.go -- --ginkgo.fail-fast --ginkgo.junit-report=/tmp/artifacts/junit-workspaces-operator.xml
117
117
118
+ test_dwo_load :
119
+ @echo " Starting Load Testing Script..." && \
120
+ bash ./test/load/runk6.sh && \
121
+ echo " Done"
122
+
118
123
# ## manager: Build manager binary
119
124
manager : generate fmt vet
120
125
go build -o bin/manager main.go
You can’t perform that action at this time.
0 commit comments