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

MAIN 1815 - Handle playbooks from external tar/tgz files etc #1475

Merged
merged 10 commits into from
Jul 22, 2024
Prev Previous commit
fix supported files
  • Loading branch information
RoiGlinik committed Jul 22, 2024
commit 86e76bc13d30675b5cdf9a833a7f0963d7032c09
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Loading External Actions
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Robusta can load playbook actions from external git repositories and externally hosted
Python packages provided as .tar or tar.gz files. This extends Robusta with additional
Python packages provided as .tgz or .tar.gz files. This extends Robusta with additional
actions for use in :ref:`customPlaybooks<customPlaybooks>`.

.. warning::
Expand All @@ -17,7 +17,7 @@ actions for use in :ref:`customPlaybooks<customPlaybooks>`.
External actions are loaded using the ``playbookRepos`` Helm value, with either HTTPs or SSH
in the case of git repositories, and appropriate URLs in the case of externally hosted
Python packages. The way Robusta distinguishes between the case of git repository and an
external package is to check if the URL ends with `.tar` or `.tar.gz`
external package is to check if the URL ends with `.tgz` or `.tar.gz`
- if that is the case, the source is treated as an external package; otherwise the
URL is treated as a git repository address.

Expand Down
Loading