Argo CD Argo CD

Deploying a Web Application with Argo CD

From Git to production with Argo CD.

10 min Débutant

Ce guide n'est pas encore disponible dans votre langue — voici la version originale.

Learn how to take an application from a Git repository to a running deployment on RackMint using Argo CD.

Create a Git repository

Prepare a Git repository with your application manifests.

git clone https://github.com/rackmint-samples/argo-webapp.git
cd argo-webapp

Configure Argo CD

Install and configure Argo CD in your cluster.

argocd app create my-app \
  --repo https://github.com/rackmint-samples/argo-webapp.git \
  --path manifests \
  --dest-server https://kubernetes.default.svc \
  --dest-namespace default

Deploy the application

Sync your application and verify the deployment.

argocd app sync my-app
argocd app get my-app

Argo CD sync status

Once the sync completes, your application is live and Argo CD will keep it in sync with the Git repository going forward.