-
Notifications
You must be signed in to change notification settings - Fork 806
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
Add parameter to disable default vlan #875
Add parameter to disable default vlan #875
Conversation
7760bc0
to
1203127
Compare
18dc732
to
5428eeb
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.
Minor notes. I like the new API and its defaults. I think this is the right way forward - fixing the behavior so it works as one would expect, while still allowing people who may rely on the faulty side-effect to use it
HairpinMode bool `json:"hairpinMode"` | ||
PromiscMode bool `json:"promiscMode"` | ||
Vlan int `json:"vlan"` | ||
PreserveDefaultVlan bool `json:"preserveDefaultVlan"` |
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.
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.
Should this be a *bool
to preserve the existing behavior?
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.
That's another option.
Right now, the default value of this parameter is set to true in line 98 (before unmarshaling the config). So, users have to explicitly set it to false to disable it. If it is not present, the value is set to true.
I didn't want this param to be different than the others, that's why I didn't want to do it with a pointer. Also, because it will need an additional check.
6532d58
to
58e441c
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.
some nits and a question.
Code looks good.
38a8b1b
to
7e50dd4
Compare
Thank you @mlguerrero12. The only think holding back the lgtm (from my perspective) is documenting the new attribute in the README. |
7e50dd4
to
1f5c07a
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.
@mlguerrero12 I had forgotten the README is defined in a separate project.
This looks good to me. Please address the other reviewers comments.
This new parameter allows users to remove the default vlan Fixes: containernetworking#667 Signed-off-by: Marcelo Guerrero Viveros <[email protected]>
1f5c07a
to
821982d
Compare
Linked to containernetworking/plugins#875 Signed-off-by: Marcelo Guerrero Viveros <[email protected]>
@phoracek, @maiqueb, please have a look at containernetworking/cni.dev#119 |
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
This bump brings in containernetworking/plugins#875 This change is required to improve the VLAN isolation done by bridge CNI. This bump is unorthodox since it does not only cherry-pick the bug fix, but also a few other patches. This is due to the lack of a stable branch in CNI plugins. We reviewed the parasiting patches that are introduced by this bump and evaluated that they are not disruptive to our typical use of the bridge CNI. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2209318 Signed-off-by: Petr Horacek <[email protected]>
This bump brings in containernetworking/plugins#875 This change is required to improve the VLAN isolation done by bridge CNI. This bump is unorthodox since it does not only cherry-pick the bug fix, but also a few other patches. This is due to the lack of a stable branch in CNI plugins. We reviewed the parasiting patches that are introduced by this bump and evaluated that they are not disruptive to our typical use of the bridge CNI. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2209318 Signed-off-by: Petr Horacek <[email protected]>
This bump brings in containernetworking/plugins#875 This change is required to improve the VLAN isolation done by bridge CNI. This bump is unorthodox since it does not only cherry-pick the bug fix, but also a few other patches. This is due to the lack of a stable branch in CNI plugins. We reviewed the parasiting patches that are introduced by this bump and evaluated that they are not disruptive to our typical use of the bridge CNI. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2209318 Signed-off-by: Petr Horacek <[email protected]>
This new parameter allows users to remove the default vlan
Fixes: #667