-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add 1.16 jobs and specify specific K8s patch versions #15055
Conversation
Testing 1.16.2 in kubernetes-csi/csi-driver-host-path#100 |
/assign @pohly |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good overall, just one minor comment on the script.
@@ -265,7 +273,7 @@ EOF | |||
cat >>"$base/$repo/$repo-config.yaml" <<EOF | |||
- name: $(job_name "pull" "$repo" "$tests" "$deployment" "$kubernetes") | |||
always_run: $(pull_alwaysrun "$tests") | |||
optional: $(pull_optional "$tests") | |||
optional: $(if [ "$kubernetes" = "1.16.2" ]; then echo true; else pull_optional "$tests"; fi) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This special case is not obvious and deserves a comment. Perhaps change this into optional: $(pull_optional "$kubernetes" "$tests")
and then inside the extended implementation of pull_optional
explain why 1.16.2 is an exception?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
elif [ "$kubernetes" == "1.16.2" ]; then | ||
# Testing 1.16 requires release-tools to be updated in all | ||
# kubernetes-csi repos. Once that is done, and tests | ||
# are passing, this can be removed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are almost done with that. Only kubernetes-csi/node-driver-registrar#53 and kubernetes-csi/external-snapshotter#188 are pending.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: msau42, pohly The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@msau42: Updated the
In response to this: Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
No description provided.