up
Boot the stack and supervise it until interrupted
Usage
lightshuttle up [OPTIONS]
Options
| Option | Default | Description |
|---|---|---|
--grace <GRACE> | 10s | SIGTERM-to-SIGKILL grace window per resource at shutdown |
--control-port <CONTROL_PORT> | Override the local control plane port. Defaults to dashboard.port from the manifest, or a random free port picked by the OS | |
--no-otel | Skip the bundled OpenTelemetry collector and the per-resource OTEL_* env injection, even if observability.otel.enabled is true (or absent) in the manifest | |
--env-file <ENV_FILE> | Path to a .env file supplying secret values referenced as ${env.VAR} in the manifest. An explicit path that does not exist is an error. The default .env is silently skipped when absent |
Examples
# Boot the stack defined by the nearest manifest
lightshuttle up
# Use an explicit manifest and a custom control plane port
lightshuttle -f stack.yaml up --control-port 8080
# Run without the bundled OpenTelemetry collector
lightshuttle up --no-otel