Forrest logo
back to the argocd tool

argocd-app:tldr:46239

argocd-app: Delete an application.
$ argocd app delete ${app_name}
try on your machine

The command "argocd app delete ${app_name}" is typically used to delete an application from an Argo CD instance.

  • "argocd" refers to the Argo CD command-line tool.
  • "app delete" is the command that instructs Argo CD to delete an application.
  • "${app_name}" is a variable that should be replaced with the name of the specific application. This is where you would input the name of the application you want to delete.

When this command is executed, Argo CD will search for the specified application and delete it along with any associated resources, such as Kubernetes objects. This action permanently removes the application and any related configurations from the Argo CD instance.

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