Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LSO
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
GÉANT Orchestration and Automation Team
GAP
LSO
Commits
ceb2c923
Verified
Commit
ceb2c923
authored
2 years ago
by
Karel van Klink
Browse files
Options
Downloads
Patches
Plain Diff
update docs
parent
7bb4520a
No related branches found
No related tags found
1 merge request
!19
playbooks run from temporary file, remove obsolete test
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
docs/source/index.rst
+3
-3
3 additions, 3 deletions
docs/source/index.rst
docs/source/quickstart.rst
+1
-0
1 addition, 0 deletions
docs/source/quickstart.rst
lso/__init__.py
+1
-1
1 addition, 1 deletion
lso/__init__.py
lso/playbook.py
+2
-2
2 additions, 2 deletions
lso/playbook.py
with
7 additions
and
6 deletions
docs/source/index.rst
+
3
−
3
View file @
ceb2c923
GOAT
Lightweight
S
ervice
O
rchestrator
================================
=====
Lightweight
s
ervice
o
rchestrator
================================
Documentation for LSO
: a
Lightweight Service Orchestrator
Documentation for LSO
(
Lightweight Service Orchestrator
).
.. toctree::
:maxdepth: 1
...
...
This diff is collapsed.
Click to expand it.
docs/source/quickstart.rst
+
1
−
0
View file @
ceb2c923
...
...
@@ -35,6 +35,7 @@ Running the app
-------------------
* Create a settings file, see `config.json.example` for an example.
* If necessary, set the environment vairable `ANSIBLE_HOME` to a custom path.
* Run the app like this (`app.py` starts the server on port 44444):
.. code-block:: bash
...
...
This diff is collapsed.
Click to expand it.
lso/__init__.py
+
1
−
1
View file @
ceb2c923
...
...
@@ -34,7 +34,7 @@ def create_app():
app
.
include_router
(
default
.
router
,
prefix
=
'
/api
'
)
app
.
include_router
(
device
.
router
,
prefix
=
'
/api/device
'
)
# test that config params are
available and can be loaded
# test that config params are
loaded and available
config
.
load
()
logging
.
info
(
'
FastAPI app initialized
'
)
...
...
This diff is collapsed.
Click to expand it.
lso/playbook.py
+
2
−
2
View file @
ceb2c923
...
...
@@ -117,8 +117,8 @@ def run_playbook(
:param dict extra_vars: Any extra vars needed for the playbook to run.
:param str inventory: The inventory that the playbook is executed against.
:param str callback: Callback URL where the playbook should send a status
update when execution is completed. This is used for
WFO to continue
with the next step in a workflow.
update when execution is completed. This is used for
workflow-orchestrator to continue
with the next step in a workflow.
:return: Result of playbook launch, this could either be successful or
unsuccessful.
:rtype: :class:`PlaybookLaunchResponse`
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment