Forrest logo
back to the argocd tool

argocd-app:tldr:bf80c

argocd-app: Show application deployment history.
$ argocd app history ${app_name} --output ${select}
try on your machine

The argocd app history command is used to display the deployment history of an application in Argo CD. The command takes two variables:

  1. ${app_name}: This variable represents the name of the application for which you want to see the deployment history. You need to replace ${app_name} with the actual name of the application.

  2. --output ${select}: This variable represents the desired output format for the command. The ${select} variable needs to be replaced with one of the available output formats supported by the argocd app history command.

The --output flag specifies the desired output format. For example, you can use:

  • --output wide to get a more detailed, wide view of the deployment history.
  • --output yaml to get the output in YAML format.
  • --output json to get the output in JSON format.

By using the appropriate value for ${app_name} and ${select}, you can retrieve and display the deployment history of an application in the desired format.

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