seto 3.0.2__tar.gz → 3.0.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {seto-3.0.2 → seto-3.0.3}/PKG-INFO +1 -1
  2. {seto-3.0.2 → seto-3.0.3}/pyproject.toml +1 -1
  3. {seto-3.0.2 → seto-3.0.3}/seto/core/network.py +13 -1
  4. {seto-3.0.2 → seto-3.0.3}/LICENSE +0 -0
  5. {seto-3.0.2 → seto-3.0.3}/LICENSE_HEADER.txt +0 -0
  6. {seto-3.0.2 → seto-3.0.3}/README.md +0 -0
  7. {seto-3.0.2 → seto-3.0.3}/seto/__init__.py +0 -0
  8. {seto-3.0.2 → seto-3.0.3}/seto/__main__.py +0 -0
  9. {seto-3.0.2 → seto-3.0.3}/seto/commands/config.py +0 -0
  10. {seto-3.0.2 → seto-3.0.3}/seto/commands/deploy.py +0 -0
  11. {seto-3.0.2 → seto-3.0.3}/seto/commands/down.py +0 -0
  12. {seto-3.0.2 → seto-3.0.3}/seto/commands/mount.py +0 -0
  13. {seto-3.0.2 → seto-3.0.3}/seto/commands/setup.py +0 -0
  14. {seto-3.0.2 → seto-3.0.3}/seto/commands/umount.py +0 -0
  15. {seto-3.0.2 → seto-3.0.3}/seto/commands/volumes.py +0 -0
  16. {seto-3.0.2 → seto-3.0.3}/seto/core/command.py +0 -0
  17. {seto-3.0.2 → seto-3.0.3}/seto/core/dns.py +0 -0
  18. {seto-3.0.2 → seto-3.0.3}/seto/core/docker.py +0 -0
  19. {seto-3.0.2 → seto-3.0.3}/seto/core/driver.py +0 -0
  20. {seto-3.0.2 → seto-3.0.3}/seto/core/parser.py +0 -0
  21. {seto-3.0.2 → seto-3.0.3}/seto/core/permissions.py +0 -0
  22. {seto-3.0.2 → seto-3.0.3}/seto/core/shell.py +0 -0
  23. {seto-3.0.2 → seto-3.0.3}/seto/core/swarm.py +0 -0
  24. {seto-3.0.2 → seto-3.0.3}/seto/core/traefik.py +0 -0
  25. {seto-3.0.2 → seto-3.0.3}/seto/core/volume.py +0 -0
  26. {seto-3.0.2 → seto-3.0.3}/seto/drivers/gluster.py +0 -0
  27. {seto-3.0.2 → seto-3.0.3}/seto/drivers/nfs.py +0 -0
  28. {seto-3.0.2 → seto-3.0.3}/seto/shells/local.py +0 -0
  29. {seto-3.0.2 → seto-3.0.3}/seto/shells/remote.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: seto
3
- Version: 3.0.2
3
+ Version: 3.0.3
4
4
  Summary: A Docker Swarm Deployment Manager
5
5
  License: Apache 2.0
6
6
  Keywords: docker,swarm,manager
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "seto"
7
- version = "3.0.2"
7
+ version = "3.0.3"
8
8
  description = "A Docker Swarm Deployment Manager"
9
9
  keywords = ["docker", "swarm", "manager"]
10
10
  authors = ["Sébastien Demanou <demsking@gmail.com>"]
@@ -1,4 +1,4 @@
1
- # Copyright 2024 Sébastien Demanou. All Rights Reserved.
1
+ # Copyright 2024-2025 Sébastien Demanou. All Rights Reserved.
2
2
  #
3
3
  # Licensed under the Apache License, Version 2.0 (the "License");
4
4
  # you may not use this file except in compliance with the License.
@@ -27,11 +27,23 @@ GLOBAL_NETWORKS = {
27
27
  'name': 'seto-cloud-edge',
28
28
  'driver': 'overlay',
29
29
  'attachable': True,
30
+ 'ipam': {
31
+ 'config': [
32
+ {'subnet': '172.20.0.0/20'},
33
+ {'subnet': 'fd00:3984:3989::/64'},
34
+ ],
35
+ },
30
36
  },
31
37
  'seto-http-provider': {
32
38
  'name': 'seto-http-provider',
33
39
  'driver': 'overlay',
34
40
  'attachable': True,
41
+ 'ipam': {
42
+ 'config': [
43
+ {'subnet': '172.20.0.0/20'},
44
+ {'subnet': 'fd00:3984:3989::/64'},
45
+ ],
46
+ },
35
47
  },
36
48
  }
37
49
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes