-
Notifications
You must be signed in to change notification settings - Fork 285
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
Remove vtunnel guest agent #7371
Conversation
8a2d0c1
to
46b0e9d
Compare
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.
Just some trivial comment / doc changes; presumably there will be follow-up PRs to handle properly removing listenerOnlyMode
.
src/go/guestagent/README.md
Outdated
In newer versions of Kubernetes†, `kubelet` no longer creates a listener for NodePort services. We therefore need to create those listeners manually, so that port forward works correctly as in the container port forwarding above. | ||
|
||
† 1.21.12+, 1.22.10+, 1.23.7+, 1.24+ | ||
[Rancher Desktop Guest Agent](https://github.com/rancher-sandbox/rancher-desktop/blob/e224943683920a7ecb9ca5655097075a9ce4cefe/docs/networking/windows/rancher-desktop-guest-agent.md) |
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.
Probably better to make this a relative link
[Rancher Desktop Guest Agent](https://github.com/rancher-sandbox/rancher-desktop/blob/e224943683920a7ecb9ca5655097075a9ce4cefe/docs/networking/windows/rancher-desktop-guest-agent.md) | |
[Rancher Desktop Guest Agent](/docs/networking/windows/rancher-desktop-guest-agent.md) |
@@ -220,7 +187,7 @@ func main() { | |||
// of the legacy network, requiring listeners only. In listenerOnlyMode, we create |
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.
Line 185 of the comment still refers to privileged services.
It sounds like we never want listenerOnlyMode
at all (since the comment says it should only be active in old network). Presumably we'll deal with that later in a separate PR?
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.
Yeah, I will make a follow-up PR to remove this one.
46b0e9d
to
90bcd5a
Compare
All vtunnel refrences is removed out of the code, the guest agent now only supports the namespaced network. Signed-off-by: Nino Kodabande <nkodabande@suse.com>
Signed-off-by: Nino Kodabande <nkodabande@suse.com>
90bcd5a
to
ece9feb
Compare
Removes all the vtunnel and privileged services references out of the guest agent.
Fixes: #7362