Skip to content

Commit

Permalink
as described on github - thank you mckernanin (#1447)
Browse files Browse the repository at this point in the history
  • Loading branch information
aantn committed Jun 6, 2024
1 parent 7eb7548 commit 9467694
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion docs/setup-robusta/gitops/argocd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Example ``generated_values.yaml``:
Read this guide about :ref:`Managing Secrets`.


Configure ArgoCD
Configure ArgoCD in the UI
--------------------------------

Create a ``NEW APP`` in ArgoCD and fill in the following settings.
Expand Down Expand Up @@ -122,6 +122,36 @@ Finally, run ``robusta logs`` from your cli and make sure there is no error.

To solve it, use the workaround proposed `here <https://github.com/prometheus-community/helm-charts/issues/1500#issuecomment-1132907207>`_

Configure ArgoCD Declaratively
--------------------------------

First generate a Helm values file for Robusta, as described above.

Then create an Argo Application which references that values file:

.. code-block:: yaml
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: robusta
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
destination:
server: https://kubernetes.default.svc
namespace: robusta
project: default
sources:
- chart: robusta
repoURL: https://robusta-charts.storage.googleapis.com
targetRevision: <ROBUSTA VERSION - e.g. "0.10.31">
helm:
valueFiles:
# path to the values file for Robusta - generate it as described above
- generated_values.yaml
Configuring Argo Links
-----------------------------------------

Expand Down

0 comments on commit 9467694

Please sign in to comment.