-
Notifications
You must be signed in to change notification settings - Fork 738
kinder: switch to using the k-sigs/kindnet manifest and image #3284
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
kinder: switch to using the k-sigs/kindnet manifest and image #3284
Conversation
c789c45 to
78992b3
Compare
| @@ -204,7 +204,7 @@ func postInit(c *status.Cluster, wait time.Duration) error { | |||
| // Apply a CNI plugin using a hardcoded manifest | |||
| cmd := cp1.Command("kubectl", "apply", "--kubeconfig=/etc/kubernetes/admin.conf", "-f", "-") | |||
| cp1.Infof("applying kindnet version 0.5.4") | |||
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.
| cp1.Infof("applying kindnet version 0.5.4") | |
| cp1.Infof("applying kindnet version 1.0.0") |
Only one nit.
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.
changed it to:
cp1.Infof("applying kindnet manifest for image %s...", assets.KindnetImage100)
that will still indicate the version in the logs.
(and when we bump we don't need to touch this line)
The image and manifest we used was from the original author repo github.com/aojea/kindnetd. The project was later donated to k-sigs/kindnet. Switch to using the latest image and manifest from the new project. The old manifest also included the verb 'nodes/proxy', which is vulnerable as discussed in k/kubeadm ticket 3283.
78992b3 to
5830796
Compare
|
/lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: carlory, neolit123 The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
The image and manifest we used was from the original author repo github.com/aojea/kindnetd. The project was later donated to k-sigs/kindnet.
Switch to using the latest image and manifest from the new project.
The old manifest also included the verb 'nodes/proxy', which is vulnerable as discussed in k/kubeadm ticket 3283.
fixes #3283