Using Argo for microservices deployment Using Argo for microservices deployment kubernetes kubernetes

Using Argo for microservices deployment


Why Argo Workflows?

In a typical CD setup you would need to execute multiple steps and tie them together and create a pipeline. Argo workflow provides that functionality. The value proposition of argo is that each step in the workflow is a container and argo itself runs natively on kubernetes.

When I would use Workflow, then ArgoCD is unnecessary? Or use Workflow inside ArgoCD?

ArgoCD is only necessary to deploy/sync changes in the application artifacts to the kubernetes cluster. Typically you would need to deploy changes at the end of the workflow but this can be different based on your use case.

How to trigger a workflow automatically, when some changes happen on the Git repository?

You can use argoEvents to trigger argo workflow. Check the doc on git based trigger.