Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.06 KB

README.md

File metadata and controls

31 lines (26 loc) · 1.06 KB

WIP: UNTESTED INSTALLATION

ArgoCD

ArgoCD is automates the management of Helm charts; installing, deleting, updating, modifying, etc. Pair with Git to get the most out of it.

Items

  • values.yaml file used for installing with Helm w/ default entries.

Prerequisites

Installation

  1. Modify the values.yaml file to suit your environment. You can store this values file locally or remotely in a private repository.
  2. Add service chart to Helm.
helm repo add argo https://argoproj.github.io/argo-helm
  1. Install the service using Helm. Either leave out the --version parameter OR change the value to match the CHART version you require.
helm upgrade --install argo-cd argo/argo-cd -n argo-cd --create-namespace -f values.yaml --version 7.4.5 --atomic

Updating

Replay the installation steps above.

Uninstalling

Helm

  1. Uninstall the chart using Helm.
helm uninstall argo-cd -n argo-cd