orchestrator-lso 1.0.0__tar.gz → 1.0.1__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-1.0.0 → orchestrator_lso-1.0.1}/.bumpversion.cfg +2 -2
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/Dockerfile.example +1 -1
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/PKG-INFO +2 -2
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/lso/__init__.py +2 -2
- orchestrator_lso-1.0.0/Changelog.md +0 -4
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/.github/dependabot.yml +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/.github/styles/config/vocabularies/Sphinx/accept.txt +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/.github/styles/config/vocabularies/jargon/accept.txt +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/.github/workflows/publish-package.yaml +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/.github/workflows/run-linting-tests.yaml +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/.github/workflows/run-unit-tests.yaml +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/.github/workflows/sphinx.yaml +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/.gitignore +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/.vale.ini +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/LICENSE +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/README.md +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/config.json.example +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/Makefile +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/source/_static/custom.css +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/source/conf.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/source/index.rst +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/source/module/config.rst +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/source/module/playbook.rst +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/source/module/routes/default.rst +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/source/module/routes/index.rst +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/source/module/routes/playbook.rst +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/docs/source/modules.rst +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/lso/app.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/lso/config.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/lso/environment.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/lso/playbook.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/lso/routes/__init__.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/lso/routes/default.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/lso/routes/playbook.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/pyproject.toml +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/setup.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/test/__init__.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/test/conftest.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/test/routes/__init__.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/test/routes/test_default.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/test/routes/test_playbook.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/test/test-playbook.yaml +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/test/test_ansible.py +0 -0
- {orchestrator_lso-1.0.0 → orchestrator_lso-1.0.1}/test/test_config.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[bumpversion]
|
|
2
|
-
current_version = 1.0.
|
|
2
|
+
current_version = 1.0.1
|
|
3
3
|
commit = False
|
|
4
4
|
tag = False
|
|
5
5
|
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<build>\d+))?
|
|
6
|
-
serialize =
|
|
6
|
+
serialize =
|
|
7
7
|
{major}.{minor}.{patch}rc{build}
|
|
8
8
|
{major}.{minor}.{patch}
|
|
9
9
|
|
|
@@ -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=="1.0.
|
|
14
|
+
RUN pip install orchestrator-lso=="1.0.1"
|
|
15
15
|
RUN pip install -r requirements.txt
|
|
16
16
|
|
|
17
17
|
# Install required Ansible Galaxy roles and collections
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: orchestrator-lso
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: LSO, an API for remotely running Ansible playbooks.
|
|
5
5
|
Author-email: GÉANT Orchestration and Automation Team <goat@geant.org>
|
|
6
6
|
Requires-Python: >=3.11,<3.13
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
# See the License for the specific language governing permissions and
|
|
12
12
|
# limitations under the License.
|
|
13
13
|
|
|
14
|
-
"""
|
|
14
|
+
"""LSO, an API for remotely running Ansible playbooks."""
|
|
15
15
|
|
|
16
|
-
__version__ = "1.0.
|
|
16
|
+
__version__ = "1.0.1"
|
|
17
17
|
|
|
18
18
|
import logging
|
|
19
19
|
|
|
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
|