mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Different subnet to avoid the tests getting skipped
``` Failed to create docker network: { 'name': 'salt-performance', 'changes': {}, 'result': False, 'comment': "Failed to create network 'salt-performance': Error 403: Pool overlaps with other one on this address space" } ``` Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
99b9246760
commit
2ccf2401dc
1 changed files with 2 additions and 2 deletions
|
@ -51,8 +51,8 @@ def network():
|
|||
def host_docker_network_ip_address(network):
|
||||
sminion = create_sminion()
|
||||
network_name = network
|
||||
network_subnet = "10.0.20.0/24"
|
||||
network_gateway = "10.0.20.1"
|
||||
network_subnet = "10.0.21.0/24"
|
||||
network_gateway = "10.0.21.1"
|
||||
try:
|
||||
ret = sminion.states.docker_network.present(
|
||||
network_name,
|
||||
|
|
Loading…
Add table
Reference in a new issue