Open sachinkumarsingh092 opened 2 years ago
Hii @sachinkumarsingh092 @anusha94 I would love to work on this issue.
Reading the description I understand as of now the codebase is used to detect and update the host network interface manually but with upgradation of kube-vip images to v0.4.1 we could use --autoInterface option.
Could anyone point where I should make changes to leverage the required things :)) Thanks.
/assign @VibhorChinda
Hey @VibhorChinda, thanks for your interest in this!
So the way we currently detect the interface for the BYOH host is shown in this function (it traverses all the interfaces and matches the default network IP for the default gateway and assigns the default Interface name). This is saved as DefaultNetworkInterfaceName and used in our templates with the vip_interface
environment variable. All the places where we have updated the kube-vip image can be referenced in #462.
The --autoInterface
option hasn't been updated in the docs but you can just remove the --interface
flag or the vip_interface
in our case to achieve similar results.
(See this thread: https://kubernetes.slack.com/archives/C01RXPHDATB/p1638969848103800?thread_ts=1638965549.102100&cid=C01RXPHDATB)
So for now you can start by trying if you can still achieve this without the vip_interface
variable.
@anusha94 please correct me if I missed anything.
So what I have understood is I have to remove the env variable (vip_interface) from the file [Line-82, 83]
And it will automatically detect right ?
Make similar changes for the other templates mentioned in PR #462.
After that, we can refactor the section that finds and sets the network interface name in agent/registration/host_registrar.go
.
/unassign @VibhorChinda /assign @anusha94
Describe the solution you'd like We have upgraded kube-vip images to v0.4.1 (#462). This version has features to auto-detect the default interface for VIP (related PR) using
--autoInterface
option. Currently, we detect and update the host network interface manually (agent/host_registrar.go#L86-L131). Having upgraded to the given version, we can now leverage the auto-detection feature and refactor the agent to use this instead of manual detection and updates.Environment:
kubectl version --short
):/etc/os-release
): Ubuntu 20.04.4 LTS (Focal Fossa)