Skip to main content

astroctl application delete

Delete an application

Synopsis

Delete an application and its deployed resources.

Unless --yes is passed, you are prompted to confirm before anything is removed.

astroctl application delete [flags]

Examples


# Delete an application by name (prompts for confirmation)
astroctl app delete -n myapp

# Delete without a confirmation prompt (automation/CI)
astroctl app delete -n myapp --yes

# Delete an application using a file
astroctl app delete -f application.yaml

# Delete an application using stdin
echo 'name: myapp' | astroctl app delete -f -

Options

-f, --file string The file name to delete the application. Use '-' to read from stdin.
-h, --help help for delete
-y, --yes Skip the confirmation prompt

Options inherited from parent commands

-n, --name string name of the application
-o, --output string Output format (json|yaml) (default "yaml")

SEE ALSO