We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
No
Manage "driver" and "driver_opts" in docker.networks.install state
Salt docker_network.present syntax1 :
mynet: docker_network.present: - driver: macvlan - driver_opts: macvlan_mode=bridge,parent=eth0
Salt docker_network.present syntax2 :
mynet: docker_network.present: - driver: macvlan - driver_opts: - macvlan_mode=bridge - parent=eth0
Salt docker_network.present state Docker bridge driver options
My use case is to manage "com.docker.network.bridge.name" driver_opts in order to rename bridge name
The text was updated successfully, but these errors were encountered:
Would adding something like this accomplish the driver request and allow additional configuration of network?
docker-network-{{ name }}-present: docker_network.present: - name: {{ name }} - unless: docker network ls | grep ' {{ name }} ' {{- format_kwargs(d.networks[name]) }}
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem?
No
Describe the solution you'd like
Manage "driver" and "driver_opts" in docker.networks.install state
Salt docker_network.present syntax1 :
Salt docker_network.present syntax2 :
Salt docker_network.present state
Docker bridge driver options
Describe alternatives you've considered
Additional context
My use case is to manage "com.docker.network.bridge.name" driver_opts in order to rename bridge name
The text was updated successfully, but these errors were encountered: