Skip to content

Commit

Permalink
Correct IP range example for podman_network (#149)
Browse files Browse the repository at this point in the history
the IP range must be in CIDR notation not IP1-IP2, at least according to man page
of podman-network-create

Co-authored-by: Eric L <ewl+git@lavar.de>
  • Loading branch information
ericzolf and ericzolf committed Nov 23, 2020
1 parent 95baa8f commit baf459e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/podman_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
containers.podman.podman_network:
name: podman_internal
internal: true
ip_range: 192.168.22.50-192.168.22.150
ip_range: 192.168.22.128/25
subnet: 192.168.22.0/24
gateway: 192.168.22.1
become: true
Expand Down

0 comments on commit baf459e

Please sign in to comment.