Skip to content
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
5 changes: 4 additions & 1 deletion docs/configuration/holmesgpt/toolsets/argocd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,16 @@ HolmesGPT needs permission to establish a port-forward to ArgoCD. The configurat
- name: ARGOCD_AUTH_TOKEN
value: <your argocd auth token>
- name: ARGOCD_OPTS
value: "--port-forward --port-forward-namespace <your_argocd_namespace> --grpc-web"
value: "--port-forward --port-forward-namespace <your_argocd_namespace> --server <your_server_address> --grpc-web"
toolsets:
argocd/core:
enabled: true

.. note::

For in cluster address, use the cluster dns. For example: ``--port-forward --port-forward-namespace argocd --server argocd-server.argocd.svc.cluster.local --insecure --grpc-web``
Add ``--insecure`` to work with self signed certificates.

Change the namespace ``--port-forward-namespace <your_argocd_namespace>`` to the namespace in which your argocd service
is deployed.

Expand Down
Loading