-
Notifications
You must be signed in to change notification settings - Fork 16
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
Vlan support #2084
Vlan support #2084
Conversation
Prob on configurable vlan, later on we need to also configure the privae bridge (zos) to use that configured vlan
- pub vlan is supported in both single and dual nic setup - delete some dead code
Also disable support for dual nic for now
return "", false | ||
} | ||
|
||
return all[len(all)-1], true |
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.
does this mean it returns the last item in case of the item passed multiple times? if so, let's please document the 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.
yes, if the same param is provided multiple times via a cmdline it's overridden by the last value provided. This way u can override hardcoded params in the image with whatever values u provide during booting
Add support for new boot params
vlan:priv
(optional) sets the private subnet vlanvlan:pub
(optional) sets the public subnet vlan (only in single node setup)Please read docs for more details.