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:
Pedro Algarvio 2023-09-19 17:32:18 +01:00 committed by Pedro Algarvio
parent 99b9246760
commit 2ccf2401dc

View file

@ -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,