autonomy bundle stage

Stage a bundle tarball to the local bundle store (air-gapped)

Synopsis

Copies the bundle tarball at <tarball> into the local bundle store and
writes a manifest sidecar.  The tarball must contain a valid top-level
manifest.json.

No network access is required.  After staging, the bundle can be inspected
and activated from the local store without any OCI registry connection:

  autonomy bundle inspect ./robot-behavior-1.2.3.tar --local
  autonomy deploy robot-behavior:1.2.3 --local

The bundle is keyed by <name>-<version> from its manifest.  Staging the
same name and version again overwrites the previous entry in the store.

AUTONOMY_BUNDLE_STORE overrides --store-dir when set in the environment.

Usage

autonomy bundle stage <tarball> [flags]

Examples

# Stage a bundle from USB media or an internal network share
  autonomy bundle stage ./bundles/robot-behavior-1.2.3.tar

  # Stage to an explicit store directory
  autonomy bundle stage ./robot.tar --store-dir /opt/autonomy/bundles

Options

      --store-dir string   local bundle store directory (overridden by AUTONOMY_BUNDLE_STORE) (default "~/.local/share/autonomy/bundles")

See also

  • autonomy bundle — Manage AutonomyOps bundles (pull, push, inspect, verify)