You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Runs E2E tests for Dynamic Resource Allocation beta features against a Kubernetes master cluster created with sigs.k8s.io/kind with kubelet from the "current - 3" release.
# Replace the kubelet binary and restart it, as in https://gist.github.com/aojea/2c94034f8e86d08842e5916231eb3fe1
591
+
# and https://github.com/kubernetes/test-infra/blob/9cccc25265537e8dfa556688cf10754622014424/experiment/compatibility-versions/emulated-version-upgrade.sh#L56-L66.
592
+
major=$(echo "$revision" | sed -e 's/^v\([0-9]*\).*/\1/')
593
+
minor=$(echo "$revision" | sed -e 's/^v[0-9]*\.\([0-9]*\).*/\1/')
594
+
previous_minor=$((minor - 3))
595
+
# Test with the stable release to avoid breaking presubmits because of unrelated issues in a release candidate.
596
+
# Ask curl to append the HTTP status code after the response body (-w ' %{http_code}').
597
+
# Then parse the output using Bash parameter expansion:
598
+
# ${response% *} → everything before the last space (the body)
599
+
# ${response##* } → everything after the last space (the HTTP code)
description: Runs E2E tests for Dynamic Resource Allocation beta features against a Kubernetes master cluster created with sigs.k8s.io/kind with kubelet from the "current - 3" release.
# Replace the kubelet binary and restart it, as in https://gist.github.com/aojea/2c94034f8e86d08842e5916231eb3fe1
486
+
# and https://github.com/kubernetes/test-infra/blob/9cccc25265537e8dfa556688cf10754622014424/experiment/compatibility-versions/emulated-version-upgrade.sh#L56-L66.
487
+
major=$(echo "$revision" | sed -e 's/^v\([0-9]*\).*/\1/')
488
+
minor=$(echo "$revision" | sed -e 's/^v[0-9]*\.\([0-9]*\).*/\1/')
489
+
previous_minor=$((minor - 3))
490
+
# Test with the most recent CI build, doesn't even need to be released yet.
0 commit comments