-
Notifications
You must be signed in to change notification settings - Fork 460
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
update containerd socket in windows #914
Conversation
@@ -23,7 +23,7 @@ import ( | |||
"path/filepath" | |||
) | |||
|
|||
var defaultRuntimeEndpoints = []string{"npipe:////./pipe/dockershim", "npipe:////./pipe/containerd", "npipe:////./pipe/crio", "npipe:////./pipe/cri-dockerd"} |
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.
does crio support windows at all? Perhaps it 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.
/lgtm
maybe also delete cri-o, I believe it doesn't support windows
@SergeyKanzhelev |
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
@SergeyKanzhelev |
no successful un since this message: #908 (comment) definitely not caused by this PR |
likely caused by containerd/containerd#6721 cc: @mikebrow FYI |
I see, thank you. |
On the linux main CI bug ^ looks like the linux runs are missing the command to install the latest cni plugins and config dependencies.. and whatever cni was already there on the runner is old.. wrt the loopback plugin.. so when containerd tries to load it up using the built in cni v1.0.0 configuration for loopback.. it fails.. The way we install cni over in containerd in our ci is as follows: via the following ci yaml
see script here: https://github.com/containerd/containerd/blob/main/script/setup/install-cni On the windows issue(s) we did a few changes to the critest on windows setup that probably need to be mirrored here @kevpar heads up.. |
@hwdef can you please rebase to get the latest CI changes in? |
ok. |
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: hwdef, saschagrunert, SergeyKanzhelev 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 |
What type of PR is this?
/kind bug
What this PR does / why we need it:
The containerd socket in windows is wrong.
Which issue(s) this PR fixes:
Special notes for your reviewer:
Does this PR introduce a user-facing change?