mirror of
https://github.com/containers/podman.git
synced 2025-11-29 09:37:38 +08:00
The --macvlan flag was deprecated in Podman 3.x and was scheduled for removal in version 4.0. Since we're now at version 6.0.0-dev, this commit removes the deprecated flag and its associated code. Users should now use the standard syntax: podman network create --driver macvlan --opt parent=<device> <name> Signed-off-by: shiavm006 <shivammittal42006@gmail.com>
88 lines
2.4 KiB
Go
88 lines
2.4 KiB
Go
package entities
|
|
|
|
import (
|
|
"net"
|
|
|
|
entitiesTypes "github.com/containers/podman/v6/pkg/domain/entities/types"
|
|
)
|
|
|
|
// NetworkListOptions describes options for listing networks in cli
|
|
type NetworkListOptions struct {
|
|
Format string
|
|
Quiet bool
|
|
Filters map[string][]string
|
|
}
|
|
|
|
// NetworkReloadOptions describes options for reloading container network
|
|
// configuration.
|
|
type NetworkReloadOptions struct {
|
|
All bool
|
|
Latest bool
|
|
}
|
|
|
|
// NetworkReloadReport describes the results of reloading a container network.
|
|
type NetworkReloadReport = entitiesTypes.NetworkReloadReport
|
|
|
|
// NetworkRmOptions describes options for removing networks
|
|
type NetworkRmOptions struct {
|
|
Force bool
|
|
Timeout *uint
|
|
}
|
|
|
|
// NetworkRmReport describes the results of network removal
|
|
type NetworkRmReport = entitiesTypes.NetworkRmReport
|
|
|
|
// NetworkCreateOptions describes options to create a network
|
|
type NetworkCreateOptions struct {
|
|
DisableDNS bool
|
|
Driver string
|
|
Gateways []net.IP
|
|
Internal bool
|
|
Labels map[string]string
|
|
NetworkDNSServers []string
|
|
Ranges []string
|
|
Subnets []string
|
|
Routes []string
|
|
IPv6 bool
|
|
// Mapping of driver options and values.
|
|
Options map[string]string
|
|
// IgnoreIfExists if true, do not fail if the network already exists
|
|
IgnoreIfExists bool
|
|
// InterfaceName sets the NetworkInterface in the network config
|
|
InterfaceName string
|
|
}
|
|
|
|
// NetworkUpdateOptions describes options to update a network
|
|
type NetworkUpdateOptions struct {
|
|
AddDNSServers []string `json:"adddnsservers"`
|
|
RemoveDNSServers []string `json:"removednsservers"`
|
|
}
|
|
|
|
// NetworkCreateReport describes a created network for the cli
|
|
type NetworkCreateReport = entitiesTypes.NetworkCreateReport
|
|
|
|
// NetworkDisconnectOptions describes options for disconnecting
|
|
// containers from networks
|
|
type NetworkDisconnectOptions struct {
|
|
Container string
|
|
Force bool
|
|
}
|
|
|
|
// NetworkConnectOptions describes options for connecting
|
|
// a container to a network
|
|
type NetworkConnectOptions = entitiesTypes.NetworkConnectOptions
|
|
|
|
// NetworkPruneReport containers the name of network and an error
|
|
// associated in its pruning (removal)
|
|
type NetworkPruneReport = entitiesTypes.NetworkPruneReport
|
|
|
|
// NetworkPruneOptions describes options for pruning unused networks
|
|
type NetworkPruneOptions struct {
|
|
Filters map[string][]string
|
|
}
|
|
|
|
type (
|
|
NetworkInspectReport = entitiesTypes.NetworkInspectReport
|
|
NetworkContainerInfo = entitiesTypes.NetworkContainerInfo
|
|
)
|