-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
etcd: add ci-etcd-robustness-release36-amd64
Signed-off-by: Siyuan Zhang <[email protected]>
- Loading branch information
1 parent
32fc822
commit 1d1005c
Showing
3 changed files
with
177 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
periodics: | ||
- name: ci-etcd-robustness-amd64 | ||
interval: 24h | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
decoration_config: | ||
timeout: 210m | ||
extra_refs: | ||
- org: etcd-io | ||
repo: etcd | ||
base_ref: main | ||
annotations: | ||
testgrid-dashboards: sig-etcd-robustness | ||
testgrid-tab-name: ci-etcd-robustness-amd64 | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20240515-17c6d50e24-master | ||
command: | ||
- runner.sh | ||
args: | ||
- bash | ||
- -c | ||
- | | ||
result=0 | ||
apt-get -o APT::Update::Error-Mode=any update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3 | ||
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf | ||
make install-lazyfs | ||
set -euo pipefail | ||
GO_TEST_FLAGS="-v --count 150 --timeout '200m' --run TestRobustnessExploratory" | ||
make gofail-enable | ||
make build | ||
VERBOSE=1 GOOS=linux GOARCH=amd64 CPU=8 EXPECT_DEBUG=true GO_TEST_FLAGS=${GO_TEST_FLAGS} RESULTS_DIR=/data/results make test-robustness || result=$? | ||
if [ -d /data/results ]; then | ||
zip -r ${ARTIFACTS}/results.zip /data/results | ||
fi | ||
exit $result | ||
resources: | ||
requests: | ||
cpu: "7" | ||
memory: "14Gi" | ||
limits: | ||
cpu: "7" | ||
memory: "14Gi" | ||
# fuse needs privileged mode | ||
securityContext: | ||
privileged: true | ||
- name: ci-etcd-robustness-release36-amd64 | ||
interval: 24h | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
decoration_config: | ||
timeout: 210m | ||
extra_refs: | ||
- org: etcd-io | ||
repo: etcd | ||
base_ref: main | ||
annotations: | ||
testgrid-dashboards: sig-etcd-robustness | ||
testgrid-tab-name: ci-etcd-robustness-release36-amd64 | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20240515-17c6d50e24-master | ||
command: | ||
- runner.sh | ||
args: | ||
- bash | ||
- -c | ||
- | | ||
result=0 | ||
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3 | ||
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf | ||
make install-lazyfs | ||
set -euo pipefail | ||
GO_TEST_FLAGS="-v --count 150 --timeout '200m' --run TestRobustnessExploratory" | ||
VERBOSE=1 GOOS=linux GOARCH=amd64 CPU=8 EXPECT_DEBUG=true GO_TEST_FLAGS=${GO_TEST_FLAGS} RESULTS_DIR=/data/results make test-robustness-release-3.6 || result=$? | ||
if [ -d /data/results ]; then | ||
zip -r ${ARTIFACTS}/results.zip /data/results | ||
fi | ||
exit $result | ||
resources: | ||
requests: | ||
cpu: "7" | ||
memory: "14Gi" | ||
limits: | ||
cpu: "7" | ||
memory: "14Gi" | ||
# fuse needs privileged mode | ||
securityContext: | ||
privileged: true | ||
- name: ci-etcd-robustness-release35-amd64 | ||
interval: 24h | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
decoration_config: | ||
timeout: 210m | ||
extra_refs: | ||
- org: etcd-io | ||
repo: etcd | ||
base_ref: main | ||
annotations: | ||
testgrid-dashboards: sig-etcd-robustness | ||
testgrid-tab-name: ci-etcd-robustness-release35-amd64 | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20240515-17c6d50e24-master | ||
command: | ||
- runner.sh | ||
args: | ||
- bash | ||
- -c | ||
- | | ||
result=0 | ||
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3 | ||
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf | ||
make install-lazyfs | ||
set -euo pipefail | ||
GO_TEST_FLAGS="-v --count 150 --timeout '200m' --run TestRobustnessExploratory" | ||
VERBOSE=1 GOOS=linux GOARCH=amd64 CPU=8 EXPECT_DEBUG=true GO_TEST_FLAGS=${GO_TEST_FLAGS} RESULTS_DIR=/data/results make test-robustness-release-3.5 || result=$? | ||
if [ -d /data/results ]; then | ||
zip -r ${ARTIFACTS}/results.zip /data/results | ||
fi | ||
exit $result | ||
resources: | ||
requests: | ||
cpu: "7" | ||
memory: "14Gi" | ||
limits: | ||
cpu: "7" | ||
memory: "14Gi" | ||
# fuse needs privileged mode | ||
securityContext: | ||
privileged: true | ||
- name: ci-etcd-robustness-release34-amd64 | ||
interval: 24h | ||
cluster: k8s-infra-prow-build | ||
decorate: true | ||
decoration_config: | ||
timeout: 210m | ||
extra_refs: | ||
- org: etcd-io | ||
repo: etcd | ||
base_ref: main | ||
annotations: | ||
testgrid-dashboards: sig-etcd-robustness | ||
testgrid-tab-name: ci-etcd-robustness-release34-amd64 | ||
spec: | ||
containers: | ||
- image: gcr.io/k8s-staging-test-infra/kubekins-e2e:v20240515-17c6d50e24-master | ||
command: | ||
- runner.sh | ||
args: | ||
- bash | ||
- -c | ||
- | | ||
result=0 | ||
apt update && apt-get --yes install cmake libfuse3-dev libfuse3-3 fuse3 | ||
sed -i 's/#user_allow_other/user_allow_other/g' /etc/fuse.conf | ||
make install-lazyfs | ||
set -euo pipefail | ||
GO_TEST_FLAGS="-v --count 150 --timeout '200m' --run TestRobustnessExploratory" | ||
VERBOSE=1 GOOS=linux GOARCH=amd64 CPU=8 EXPECT_DEBUG=true GO_TEST_FLAGS=${GO_TEST_FLAGS} RESULTS_DIR=/data/results make test-robustness-release-3.4 || result=$? | ||
if [ -d /data/results ]; then | ||
zip -r ${ARTIFACTS}/results.zip /data/results | ||
fi | ||
exit $result | ||
resources: | ||
requests: | ||
cpu: "7" | ||
memory: "14Gi" | ||
limits: | ||
cpu: "7" | ||
memory: "14Gi" | ||
# fuse needs privileged mode | ||
securityContext: | ||
privileged: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters