Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add example for RunnerConfig #1134

Merged
merged 1 commit into from Sep 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/python_interface.rst
Expand Up @@ -262,6 +262,21 @@ Usage examples
print("Final status:")
print(r.stats)

.. code-block:: python

from ansible_runner import Runner, RunnerConfig

# Using tag using RunnerConfig
rc = RunnerConfig(
private_data_dir="project",
playbook="main.yml",
tags='my_tag',
)

rc.prepare()
r = Runner(config=rc)
r.run()

.. code-block:: python

# run the role named 'myrole' contained in the '<private_data_dir>/project/roles' directory
Expand Down