-
Notifications
You must be signed in to change notification settings - Fork 456
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
[BUG] cni initialisation fails #5078
Comments
Hey there, @ibrokethecloud! I'm here to help you with your Kube-OVN issue. Let's work together to solve this bug and get everything up and running smoothly! The issue you're encountering is related to the deletion of iptables rules in the To address this, you can modify the logic to handle the shifting of rule indices during deletion. One common approach is to iterate over the rules in reverse order. By doing so, the shifting of indices does not affect the rules that are yet to be deleted, as they are processed after the current rule. Here's a conceptual example of how you might adjust the logic: // Assuming `rules` is a slice of rules to be deleted
for i := len(rules) - 1; i >= 0; i-- {
rule := rules[i]
if err := deleteIptablesRule(ipt, rule); err != nil {
klog.Error(err)
return err
}
} This way, you start deleting from the last rule and move towards the first, ensuring that the index shift does not affect the deletion process. You might want to check the specific implementation in To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Bug Report | Other |
I cannot reproduce it. Could you please provide more details? |
This can be reproduced on a rke2 cluster running on an ubuntu vm
To setup rke2
The only change in the values.yaml of the helm chart is as follows:
post install i can see the indexation error in cni pods. I did a custom build where i changed the deletion logic to start iteration from last element of the fetched rules and I have not run into any issues. |
Kube-OVN Version
v1.13.3
Kubernetes Version
v1.31.4
Operation-system/Kernel Version
Harvester (based on SLE Micro 5.5)
Description
CNI initialisation fails with following error
I believe this is being caused by the changes in
gateway_linux.go
https://github.com/kubeovn/kube-ovn/blob/master/pkg/daemon/gateway_linux.go#L455When deleting the rule we are iterating over rules but deletion of a rule shifts the remaining rule position up, and eventually we end up trying to delete a rule at a non existent position
Steps To Reproduce
Current Behavior
CNI fails to initialise
Expected Behavior
CNI should initialise correctly
The text was updated successfully, but these errors were encountered: