argocd-app:tldr:bf80c
The argocd app history
command is used to display the deployment history of an application in Argo CD. The command takes two variables:
-
${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. -
--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 theargocd 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.