-
Notifications
You must be signed in to change notification settings - Fork 75
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 containerd to e2e tests #226
Conversation
7291774
to
5fc1fae
Compare
Still very fast, and we're checking v1.6.20 and v1.7.0 now (both stable releases) |
else | ||
go_test_opts+=('-tags=noe2e') |
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 was a bug in #32
|
||
func TestE2EContainerdPull(t *testing.T) { | ||
t.Parallel() | ||
containerdVersions := []string{"1.6.20", "1.7.0"} |
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.
TODO: keeping these up to date ...
With crane we're floating at the latest tagged release
We can maybe figure out something reasonable to detect the most recent patch release on the current and N-1 minor versions ...
This should be a solid starting point. |
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
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: BenTheElder, upodroid 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 |
Interesting, this fails in post-submit because wget is not available in that image. Easy enough to fix. https://prow.k8s.io/view/gs/kubernetes-jenkins/logs/post-registry-push-images/1648111849591279616 |
filed #230 for wget => curl |
With a little bit of hackery we can run containerd as the current, unprivileged user and pull images to it without unpacking.
TODO:
expand to N stable releases (and maybe nightly?)Added!