You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/setup-robusta/installation/_generate_config.jinja
+19-11Lines changed: 19 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -12,27 +12,35 @@ Choose a configuration method below:
12
12
13
13
Create the configuration by signing up `for a free Robusta UI account ↗ <https://platform.robusta.dev/signup?utm_source=docs&utm_content=install-page>`_
14
14
15
-
.. note::
15
+
.. details:: Why configure an Open Source project from a SaaS platform?
16
16
17
-
With the UI, you can easily configure integrations like Slack and Teams, while also unlocking exclusive features such as timeline of changes and alerts, built-in AI root cause analysis, and more.
17
+
You can use Robusta OSS without any SaaS components, however you'll need integrations like Slack or MS Teams if you want to see Robusta doing anything.
18
18
19
+
The configuration for Slack can be difficult to generate on your own, so we provide a free UI to assist.
20
+
21
+
You can use the UI to generate Helm values and then disable the UI, or you can use the free tier forever! We also have a paid tier with our most powerful AI agent included.
19
22
20
-
.. tab-item:: pip
23
+
.. tab-item:: pipx
21
24
:name: pip-cli-tab
22
25
23
-
Use the ``robusta`` cli tool to generate the Helm values.
26
+
First install `pipx <https://github.com/pypa/pipx>`_.
24
27
25
-
.. details:: Requirements and Troubleshooting
26
-
27
-
* Python 3.7 or higher is required.
28
-
* Use ``pip3`` on systems with both Python 2 and Python 3.
29
-
* A ``command not found: robusta`` error means :ref:`Python's script directory is not your PATH.<CommonErrors>`.
28
+
Then use pipx to install and run the robusta cli:
30
29
31
30
.. code-block:: bash
32
31
:name: cb-pip-install
33
32
34
-
pip install -U robusta-cli --no-cache
35
-
robusta gen-config {{ gen_config_flags }}
33
+
pipx run robusta-cli gen-config {{ gen_config_flags }}
34
+
35
+
.. details:: pipx vs pip
36
+
37
+
The ``robusta`` cli can also be installed with pip, but due to Python limitations, this can lead to dependency issues, as pip doesn't install packages in isolated environments.
38
+
39
+
But if you prefer pip instead of pipx - install with ``pip install -U robusta-cli --no-cache`` and run with ``robusta gen-config {{ gen_config_flags }}``
40
+
41
+
* Python 3.7 or higher is required.
42
+
* Use ``pip3`` on systems with both Python 2 and Python 3.
43
+
* A ``command not found: robusta`` error means :ref:`Python's script directory is not your PATH.<CommonErrors>`.
0 commit comments