orchestrator-lso 2.2.0__tar.gz → 2.3.0__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.
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.bumpversion.cfg +1 -1
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/Dockerfile.example +1 -1
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/PKG-INFO +8 -8
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/__init__.py +1 -1
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/pyproject.toml +18 -14
- orchestrator_lso-2.2.0/setup.py +0 -20
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.github/dependabot.yml +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.github/styles/config/vocabularies/Sphinx/accept.txt +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.github/styles/config/vocabularies/jargon/accept.txt +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.github/workflows/publish-package.yaml +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.github/workflows/run-linting-tests.yaml +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.github/workflows/run-unit-tests.yaml +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.github/workflows/sphinx.yaml +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.gitignore +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/.vale.ini +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/LICENSE +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/README.md +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/LSO_banner.jpg +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/Makefile +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/_static/custom.css +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/_static/lso_logo.png +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/conf.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/index.rst +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/module/config.rst +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/module/playbook.rst +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/module/routes/default.rst +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/module/routes/index.rst +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/module/routes/playbook.rst +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/docs/source/modules.rst +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/env.example +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/app.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/config.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/environment.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/execute.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/playbook.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/routes/__init__.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/routes/default.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/routes/execute.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/routes/playbook.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/schema.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/tasks.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/utils.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/lso/worker.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/__init__.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/conftest.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/routes/__init__.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/routes/test_default.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/routes/test_execute.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/routes/test_playbook.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/test-playbook.yaml +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/test_execute.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/test_playbook.py +0 -0
- {orchestrator_lso-2.2.0 → orchestrator_lso-2.3.0}/test/utils.py +0 -0
|
@@ -11,7 +11,7 @@ COPY ./ansible-galaxy-requirements.yaml ./ansible-galaxy-requirements.yaml
|
|
|
11
11
|
RUN apk add --update --no-cache gcc libc-dev libffi-dev openssh
|
|
12
12
|
|
|
13
13
|
# Install the LSO python package, and additional requirements
|
|
14
|
-
RUN pip install orchestrator-lso=="2.
|
|
14
|
+
RUN pip install orchestrator-lso=="2.3.0"
|
|
15
15
|
RUN pip install -r requirements.txt
|
|
16
16
|
|
|
17
17
|
# Install required Ansible Galaxy roles and collections
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: orchestrator-lso
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.3.0
|
|
4
4
|
Summary: LSO, an API for remotely running Ansible playbooks.
|
|
5
5
|
Author-email: GÉANT Orchestration and Automation Team <goat@geant.org>
|
|
6
|
-
Requires-Python: >=3.11,<3.
|
|
6
|
+
Requires-Python: >=3.11,<3.14
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
|
+
License-Expression: Apache-2.0
|
|
8
9
|
Classifier: Intended Audience :: Information Technology
|
|
9
10
|
Classifier: Intended Audience :: System Administrators
|
|
10
11
|
Classifier: Operating System :: OS Independent
|
|
@@ -21,20 +22,19 @@ Classifier: Environment :: Web Environment
|
|
|
21
22
|
Classifier: Framework :: FastAPI
|
|
22
23
|
Classifier: Intended Audience :: Developers
|
|
23
24
|
Classifier: Intended Audience :: Telecommunications Industry
|
|
24
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
25
25
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
26
26
|
Classifier: Programming Language :: Python :: 3.11
|
|
27
27
|
Classifier: Programming Language :: Python :: 3.12
|
|
28
28
|
License-File: LICENSE
|
|
29
29
|
Requires-Dist: ansible-runner==2.4.1
|
|
30
30
|
Requires-Dist: ansible==10.7.0
|
|
31
|
-
Requires-Dist: fastapi==0.
|
|
31
|
+
Requires-Dist: fastapi==0.116.1
|
|
32
32
|
Requires-Dist: httpx==0.28.1
|
|
33
|
-
Requires-Dist: uvicorn[standard]==0.
|
|
34
|
-
Requires-Dist: requests==2.32.
|
|
35
|
-
Requires-Dist: pydantic-settings==2.
|
|
33
|
+
Requires-Dist: uvicorn[standard]==0.35.0
|
|
34
|
+
Requires-Dist: requests==2.32.5
|
|
35
|
+
Requires-Dist: pydantic-settings==2.10.1
|
|
36
36
|
Requires-Dist: celery==5.5.3
|
|
37
|
-
Requires-Dist: redis==5.
|
|
37
|
+
Requires-Dist: redis==5.3.1
|
|
38
38
|
Requires-Dist: types-setuptools ; extra == "dev"
|
|
39
39
|
Requires-Dist: types-requests ; extra == "dev"
|
|
40
40
|
Requires-Dist: toml ; extra == "dev"
|
|
@@ -4,8 +4,14 @@ requires = ["flit_core >=3.2,<4"]
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "orchestrator-lso"
|
|
7
|
-
dynamic = [
|
|
8
|
-
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "LSO, an API for remotely running Ansible playbooks."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.11,<3.14"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "GÉANT Orchestration and Automation Team", email = "goat@geant.org"}
|
|
14
|
+
]
|
|
9
15
|
classifiers = [
|
|
10
16
|
"Intended Audience :: Information Technology",
|
|
11
17
|
"Intended Audience :: System Administrators",
|
|
@@ -23,7 +29,6 @@ classifiers = [
|
|
|
23
29
|
"Framework :: FastAPI",
|
|
24
30
|
"Intended Audience :: Developers",
|
|
25
31
|
"Intended Audience :: Telecommunications Industry",
|
|
26
|
-
"License :: OSI Approved :: Apache Software License",
|
|
27
32
|
"Programming Language :: Python :: 3 :: Only",
|
|
28
33
|
"Programming Language :: Python :: 3.11",
|
|
29
34
|
"Programming Language :: Python :: 3.12",
|
|
@@ -31,18 +36,15 @@ classifiers = [
|
|
|
31
36
|
dependencies = [
|
|
32
37
|
"ansible-runner==2.4.1",
|
|
33
38
|
"ansible==10.7.0",
|
|
34
|
-
"fastapi==0.
|
|
39
|
+
"fastapi==0.116.1",
|
|
35
40
|
"httpx==0.28.1",
|
|
36
|
-
"uvicorn[standard]==0.
|
|
37
|
-
"requests==2.32.
|
|
38
|
-
"pydantic-settings==2.
|
|
41
|
+
"uvicorn[standard]==0.35.0",
|
|
42
|
+
"requests==2.32.5",
|
|
43
|
+
"pydantic-settings==2.10.1",
|
|
39
44
|
"celery==5.5.3",
|
|
40
|
-
"redis==5.
|
|
45
|
+
"redis==5.3.1",
|
|
41
46
|
]
|
|
42
47
|
|
|
43
|
-
readme = "README.md"
|
|
44
|
-
requires-python = ">=3.11,<3.13"
|
|
45
|
-
|
|
46
48
|
[project.urls]
|
|
47
49
|
Documentation = "https://workfloworchestrator.org/lso/"
|
|
48
50
|
Source = "https://github.com/workfloworchestrator/lso"
|
|
@@ -74,8 +76,6 @@ dev = [
|
|
|
74
76
|
"pre-commit",
|
|
75
77
|
]
|
|
76
78
|
|
|
77
|
-
[tool.flit.module]
|
|
78
|
-
name = "lso"
|
|
79
79
|
|
|
80
80
|
[tool.mypy]
|
|
81
81
|
exclude = [
|
|
@@ -176,8 +176,12 @@ ban-relative-imports = "all"
|
|
|
176
176
|
|
|
177
177
|
[tool.ruff.lint.per-file-ignores]
|
|
178
178
|
"test/*" = ["D", "S101"]
|
|
179
|
-
|
|
179
|
+
|
|
180
180
|
|
|
181
181
|
[tool.ruff.lint.isort]
|
|
182
182
|
known-third-party = []
|
|
183
183
|
known-first-party = ["test", "docs"]
|
|
184
|
+
|
|
185
|
+
[tool.flit.module]
|
|
186
|
+
name = "lso"
|
|
187
|
+
|
orchestrator_lso-2.2.0/setup.py
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from importlib.machinery import SourceFileLoader
|
|
2
|
-
|
|
3
|
-
import toml
|
|
4
|
-
from setuptools import setup
|
|
5
|
-
|
|
6
|
-
version = SourceFileLoader("__version__", "lso/__init__.py").load_module()
|
|
7
|
-
|
|
8
|
-
setup_variables = toml.load("pyproject.toml")["tool"]["flit"]["metadata"]
|
|
9
|
-
|
|
10
|
-
setup(
|
|
11
|
-
name=setup_variables["dist-name"],
|
|
12
|
-
version=str(version.__version__),
|
|
13
|
-
classifiers=setup_variables["classifiers"],
|
|
14
|
-
author=setup_variables["author"],
|
|
15
|
-
author_email=setup_variables["author-email"],
|
|
16
|
-
packages=[setup_variables["module"]],
|
|
17
|
-
install_requires=setup_variables["requires"],
|
|
18
|
-
description="Lightweight Service Orchestrator",
|
|
19
|
-
long_description=setup_variables["description-file"],
|
|
20
|
-
)
|
|
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
|
|
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
|