23 lines
564 B
YAML
23 lines
564 B
YAML
---
|
|
argument_specs:
|
|
main:
|
|
description: Sets up podman network with systemd unit (quadlet)
|
|
options:
|
|
network_name:
|
|
description: Name of the network. Must be unique within a host.
|
|
type: str
|
|
required: true
|
|
network_driver:
|
|
description: Driver to manage the network
|
|
type: str
|
|
required: false
|
|
default: bridge
|
|
choices:
|
|
- bridge
|
|
- macvlan
|
|
network_subnet:
|
|
description: Subnet for the network
|
|
type: str
|
|
required: false
|
|
default: ""
|