Skip to content

Commit ec8f573

Browse files
Add oc image append which adds layers to a schema1/2 image
This command can take zero or more gzipped layer tars (in Docker layer format) and append them to an existing image or a scratch image and then push the new image to a registry. Layers in the existing image are pushed as well. The caller can mutate the provided config as it goes.
1 parent fc990aa commit ec8f573

File tree

15 files changed

+1610
-21
lines changed

15 files changed

+1610
-21
lines changed

contrib/completions/bash/oc

+62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contrib/completions/zsh/oc

+62
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/man/man1/.files_generated_oc

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/man/man1/oc-image-append.1

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package docker10
2+
3+
// Convert_DockerV1CompatibilityImage_to_DockerImageConfig takes a Docker registry digest
4+
// (schema 2.1) and converts it to the external API version of Image.
5+
func Convert_DockerV1CompatibilityImage_to_DockerImageConfig(in *DockerV1CompatibilityImage, out *DockerImageConfig) error {
6+
*out = DockerImageConfig{
7+
ID: in.ID,
8+
Parent: in.Parent,
9+
Comment: in.Comment,
10+
Created: in.Created,
11+
Container: in.Container,
12+
DockerVersion: in.DockerVersion,
13+
Author: in.Author,
14+
Architecture: in.Architecture,
15+
Size: in.Size,
16+
OS: "linux",
17+
ContainerConfig: in.ContainerConfig,
18+
}
19+
if in.Config != nil {
20+
out.Config = &DockerConfig{}
21+
*out.Config = *in.Config
22+
}
23+
return nil
24+
}

0 commit comments

Comments
 (0)