Forrest logo
back to the argocd tool

argocd:tldr:11583

argocd: List applications.
$ argocd app list
try on your machine

The argocd app list command is used to list all applications deployed in an Argo CD instance. Argo CD is a declarative continuous delivery tool that automates the deployment of applications to Kubernetes clusters.

When you run the argocd app list command, it communicates with the Argo CD server and retrieves the information about all applications managed by it. It provides a tabular view of the applications, showing details such as application name, project name, sync status, health status, revision, and destination cluster.

The command can be helpful to quickly get an overview of the applications deployed with Argo CD and their current status. It's often used in conjunction with other Argo CD commands to manage and troubleshoot application deployments.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the argocd tool