Basic Usage
# Create a bundle in a registry with configuration and image references
$ imgpkg push -b index.docker.io/username/my-bundle:v1.0.0 -f config/
# Pull bundle from registry and interact with its content
$ imgpkg pull -b index.docker.io/username/my-bundle:v1.0.0 -o /tmp/my-bundle
# Copy a bundle (w/ dependent images) to another registry directly
$ imgpkg copy -b index.docker.io/username/my-bundle:v1.0.0 --to-repo=registry.corp.com/apps/my-bundle
# Copy a bundle (w/ dependent images) to local tarball and then to another registry
$ imgpkg copy -b index.docker.io/username/my-bundle:v1.0.0 --to-tar=/tmp/my-bundle.tar
$ imgpkg copy --tar /tmp/my-bundle.tar --to-repo=registry.corp.com/apps/my-bundle