Skip to content

Commit 1e85b85

Browse files
committed
kind-alpha-beta-features: not release informing, serial experiment
The experiment is meant to determine whether running serial tests in the same job as the parallel tests works and how much slower it becomes. Even long term the job probably shouldn't be release informing because the alpha tests can break it at any time, without affecting the release. What needs to become release informing instead are the kind-alpha-beta-enabled and/or kind-alpha-beta-enabled-conformance jobs (to be determined after we are done with setting everything up and they proof to be stable).
1 parent 5403aee commit 1e85b85

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

config/jobs/kubernetes/sig-testing/kubernetes-kind-ci.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ periodics:
153153
cluster: k8s-infra-prow-build
154154
name: ci-kubernetes-e2e-kind-alpha-beta-features
155155
annotations:
156-
testgrid-dashboards: sig-release-master-informing, sig-testing-kind
156+
testgrid-dashboards: sig-testing-kind
157157
testgrid-tab-name: kind-master-alpha-beta
158158
description: Runs tests with no special requirements other than alpha or beta feature gates in a KinD cluster where alpha and beta feature gates and APIs are enabled.
159159
@@ -175,7 +175,9 @@ periodics:
175175
- wrapper.sh
176176
- bash
177177
- -c
178-
- curl -sSL https://kind.sigs.k8s.io/dl/latest/linux-amd64.tgz | tar xvfz - -C "${PATH%%:*}/" && e2e-k8s.sh
178+
# Modified e2e-k8s.sh from https://github.com/kubernetes-sigs/kind/pull/4015/files.
179+
# It gets pulled here to try out that modification for a while *before* merging it.
180+
- curl -sSL https://kind.sigs.k8s.io/dl/latest/linux-amd64.tgz | tar xvfz - -C "${PATH%%:*}/" && curl -sSLO https://raw.githubusercontent.com/pohly/kind/46d774ce34846c9522efd9de1150b0d3cfa585c8/hack/ci/e2e-k8s.sh && chmod u+x e2e-k8s.sh && ./e2e-k8s.sh
179181
env:
180182
- name: FEATURE_GATES
181183
value: '{"AllAlpha":true,"AllBeta":true,"EventedPLEG": false}'

0 commit comments

Comments
 (0)