Home > Software engineering >  How does ArgoCD sync/update a updated helm chart under the hood?
How does ArgoCD sync/update a updated helm chart under the hood?

Time:10-22

our team right now is using helm chart to deploy services to k8s cluster, and ArgoCD to sync the helm chart modification to k8s cluster.

My question is that, when ArgoCD performs a helm chart sync, what action does it do under the hood? does it use the command "helm upgrade" to do it? or else?

Thanks

CodePudding user response:

Argo does not perform a helm install or helm upgrade of sorts; it is more closely related to a helm template <cmd opts> | kubectl apply -f -.

CodePudding user response:

I think you should look into the concept of GitOps.

Argo CD is responsible for pulling updated code from Git repositories and deploying it directly to Kubernetes resources. (quoted from https://codefresh.io/learn/argo-cd/)

  • Related