Skip to content
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

Define Linux Network Devices #1271

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Commits on Nov 7, 2024

  1. Define Linux Network Devices

    The proposed "netdevices" field provides a declarative way to
    specify which host network devices should be moved into a container's
    network namespace.
    
    This approach is similar than the existing "devices" field used for block
    devices but uses a dictionary keyed by the interface name instead.
    
    The proposed scheme is based on the existing representation of network
    device by the `struct net_device`
    https://docs.kernel.org/networking/netdevices.html.
    
    This proposal focuses solely on moving existing network devices into
    the container namespace. It does not cover the complexities of
    network configuration or network interface creation, emphasizing the
    separation of device management and network configuration.
    
    Signed-off-by: Antonio Ojea <[email protected]>
    aojea committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    d63b59f View commit details
    Browse the repository at this point in the history
  2. define string representation of IP addresses

    Signed-off-by: Antonio Ojea <[email protected]>
    aojea committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    5541940 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2024

  1. clarify runtime implementation for netdvices

    Signed-off-by: Antonio Ojea <[email protected]>
    aojea committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    dcb9f52 View commit details
    Browse the repository at this point in the history
  2. replace netdevices with netDevices

    Signed-off-by: Antonio Ojea <[email protected]>
    aojea committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    6a8be5d View commit details
    Browse the repository at this point in the history
  3. add feature for network devices

    Signed-off-by: Antonio Ojea <[email protected]>
    aojea committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    3a666eb View commit details
    Browse the repository at this point in the history