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

Update docs on argocd install #1447

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading