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
Add a "sparse:..." value for the copy --multi-arch option, where the
"..." is a comma-separated list of instance digests, platform
specifications, or the literal word "system" to signify the local
platform.
Signed-off-by: Nalin Dahyabhai <[email protected]>
returncopy.CopySystemImage, fmt.Errorf("unknown multi-arch option %q. Choose one of the supported options: 'system', 'all', or 'index-only'", multiArch)
138
+
returncopy.CopySystemImage, nil, nil, fmt.Errorf("unknown multi-arch option %q. Choose one of the supported options: 'system', 'sparse:...', 'all', or 'index-only'", multiArch)
Copy file name to clipboardExpand all lines: docs/skopeo-copy.1.md
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -79,9 +79,10 @@ Print usage statement
79
79
Control what is copied if _source-image_ refers to a multi-architecture image. Default is system.
80
80
81
81
Options:
82
-
- system: Copy only the image that matches the system architecture
83
-
- all: Copy the full multi-architecture image
84
-
- index-only: Copy only the index
82
+
- "system": Copy only the image that matches the system architecture
83
+
- "all": Copy the full multi-architecture image
84
+
- "index-only": Copy only the index
85
+
- "sparse:_list_": Copy the index and images which match the comma-separated list of platform specifications, digests, or the local system ("system")
85
86
86
87
The index-only option usually fails unless the referenced per-architecture images are already present in the destination, or the target registry supports sparse indexes.
0 commit comments