Forrest logo
back to the fly tool

fly:tldr:f2a43

fly: Destroy pipeline.
$ fly -t ${target_name} destroy-pipeline --pipeline ${pipeline_name}
try on your machine

This command is using a fly CLI tool to interact with Concourse, which is a continuous integration and delivery platform.

The command itself is used to destroy a pipeline. Here is how each part of the command works:

  • fly: This is the command-line tool used to interact with Concourse.
  • -t: Specifies the target name, which is used to authenticate and connect to a Concourse instance.
  • ${target_name}: This is a placeholder that should be replaced with the actual target name you want to connect to.
  • destroy-pipeline: Indicates that we want to delete a pipeline in Concourse.
  • --pipeline: Specifies the name of the pipeline you want to destroy.
  • ${pipeline_name}: This is a placeholder that should be replaced with the actual name of the pipeline you want to delete.

To summarize, this command is used to delete a pipeline in Concourse, and the target name and pipeline name need to be provided as arguments.

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 fly tool