Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 954 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 954 Bytes

ArgoCD

This Helm chart will install ArgoCD and is based from the official Helm chart.

How to update the chart

# adds helm chart repository
helm repo add argo https://argoproj.github.io/argo-helm
helm repo update

# searches for the latest version
helm search repo -l argo-cd

# manual: update version number in Chart.yaml

# updates Chart.lock
helm dependency update

# checks the Kubernetes objects generated from the chart
helm template . -f values.yaml > temp.yaml

How to deploy manually

# applies the manifest (add "--debug > output.yaml" in case of issue)
helm upgrade --install -f values.yaml --create-namespace \
  --namespace argocd argocd .

# checks everything is ok
#TODO

# if needed, deletes the chart
helm uninstall argocd -n argocd

How to investigate

# checks existings resources
#TODO