Skip to content

edgible stack

The recommended way to deploy applications. stack operates on a YAML file containing one or more canonical apiVersion: v3 Application documents.

Apply or update applications from the file.

Terminal window
edgible stack deploy
edgible stack deploy -f infra/edgible.yml
edgible stack deploy --app api --dry-run
FlagDescription
-f, --file <path>Stack file. Default edgible.yml.
--app <name>Only deploy the named application from the file.
--dry-runValidate and print the diff without applying.
--skip-dependenciesDon’t deploy applications listed in dependsOn first.
--forceApply even when validation has warnings.

Remove applications declared in the file.

Terminal window
edgible stack teardown -f infra/edgible.yml
edgible stack teardown -f infra/edgible.yml --keep-dependencies
FlagDescription
-f, --file <path>Stack file.
--app <name>Tear down only the named application.
--forceSkip confirmation.
--keep-dependenciesDon’t recursively tear down apps that depended on these.

Show the live state of every application in the file.

Terminal window
edgible stack status -f infra/edgible.yml
edgible stack status --json
FlagDescription
-f, --file <path>Stack file.
--app <name>Limit to a single application.
--jsonMachine-readable output.

Local schema and reference check. Does not require auth or organization.

Terminal window
edgible stack validate -f infra/edgible.yml

Use in CI to catch malformed YAML before it reaches the control plane.

Show what would change between the file and the current deployed state.

Terminal window
edgible stack diff -f infra/edgible.yml

Useful for code review and pre-deploy sanity checks.