seto 2.2.1__tar.gz → 2.2.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.
- {seto-2.2.1 → seto-2.2.3}/PKG-INFO +1 -1
- {seto-2.2.1 → seto-2.2.3}/pyproject.toml +1 -1
- {seto-2.2.1 → seto-2.2.3}/seto/commands/deploy.py +2 -2
- {seto-2.2.1 → seto-2.2.3}/seto/core/docker.py +2 -2
- {seto-2.2.1 → seto-2.2.3}/LICENSE +0 -0
- {seto-2.2.1 → seto-2.2.3}/LICENSE_HEADER.txt +0 -0
- {seto-2.2.1 → seto-2.2.3}/README.md +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/__init__.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/__main__.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/commands/config.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/commands/down.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/commands/mount.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/commands/setup.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/commands/umount.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/commands/volumes.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/command.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/dns.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/driver.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/network.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/parser.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/permissions.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/shell.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/swarm.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/traefik.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/core/volume.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/drivers/gluster.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/drivers/nfs.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/shells/local.py +0 -0
- {seto-2.2.1 → seto-2.2.3}/seto/shells/remote.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "seto"
|
|
7
|
-
version = "2.2.
|
|
7
|
+
version = "2.2.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.
|
|
@@ -167,7 +167,7 @@ def deploy_seto_stack(args, driver: Driver, replica: list[Setting]) -> None:
|
|
|
167
167
|
'deploy': {
|
|
168
168
|
'mode': 'global',
|
|
169
169
|
'labels': {
|
|
170
|
-
'traefik.discovery.enable
|
|
170
|
+
'traefik.discovery.enable': True,
|
|
171
171
|
},
|
|
172
172
|
},
|
|
173
173
|
},
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
# ==============================================================================
|
|
15
15
|
import functools
|
|
16
|
+
import json
|
|
16
17
|
from typing import Any
|
|
17
18
|
|
|
18
|
-
import yaml
|
|
19
19
|
from docker import DockerClient
|
|
20
20
|
|
|
21
21
|
from .driver import Driver
|
|
@@ -40,7 +40,7 @@ class Docker:
|
|
|
40
40
|
|
|
41
41
|
@property
|
|
42
42
|
def resolved_config(self) -> str:
|
|
43
|
-
return resolve_env_vars(
|
|
43
|
+
return resolve_env_vars(json.dumps(self.config))
|
|
44
44
|
|
|
45
45
|
@property
|
|
46
46
|
def external_networks(self) -> list[str]:
|
|
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
|