You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Currently creating an image with an empty OCI base and setting labels requires two separate commands: crane append --oci-empty-base followed by crane mutate. This can be streamlined by allowing the --oci-empty-base flag to be used directly with crane mutate.
Description
Currently creating an image with an empty OCI base and setting labels requires two separate commands:
crane append --oci-empty-base
followed bycrane mutate
. This can be streamlined by allowing the--oci-empty-base
flag to be used directly withcrane mutate
.Current Workflow
crane append --oci-empty-base --new_layer image.tar --new_tag registry.example.com/<example>/<name>:<tag>
crane mutate registry.example.com/<example>/<name>:<tag> --label <key>=<value>....
Purposed Workflow
crane mutate --oci-empty-base --append image.tar registry.example.com/<example>/<name>:<tag> --label <key>=<value>....
I'm would like to contribute to this effort and have a working sample of crane mutate with the
--oci-empty-base
flag added.Benefits
The text was updated successfully, but these errors were encountered: