Skip to content

Commit 794d7bc

Browse files
Update openshift image layers API
1 parent 96c75d7 commit 794d7bc

File tree

8 files changed

+48
-22
lines changed

8 files changed

+48
-22
lines changed

api/protobuf-spec/github_com_openshift_api_image_v1.proto

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

api/swagger-spec/openshift-openapi-spec.json

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

pkg/image/apis/image/types.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -486,15 +486,21 @@ type ImageStreamLayers struct {
486486

487487
// ImageBlobReferences describes the blob references within an image.
488488
type ImageBlobReferences struct {
489+
// imageMissing is true if the image is referenced by the image stream but the image
490+
// object has been deleted from the API by an administrator. When this field is set,
491+
// layers and config fields may be empty and callers that depend on the image metadata
492+
// should consider the image to be unavailable for download or viewing.
493+
// +optional
494+
ImageMissing bool
489495
// layers is the list of blobs that compose this image, from base layer to top layer.
490496
// All layers referenced by this array will be defined in the blobs map. Some images
491497
// may have zero layers.
492498
// +optional
493499
Layers []string
494-
// manifest, if set, is the blob that contains the image manifest. Some images do
500+
// config, if set, is the blob that contains the image configuration. Some images do
495501
// not have separate manifest blobs and this field will be set to nil if so.
496502
// +optional
497-
Manifest *string
503+
Config *string
498504
}
499505

500506
// ImageLayerData contains metadata about an image layer.

pkg/image/apis/image/v1/zz_generated.conversion.go

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

pkg/image/apis/image/zz_generated.deepcopy.go

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

pkg/image/apiserver/registry/imagestream/etcd/etcd.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ func addImageStreamLayersFromCache(isl *imageapi.ImageStreamLayers, is *imageapi
224224
}
225225

226226
if blob := entry.Config; blob != nil {
227-
reference.Manifest = &blob.Name
227+
reference.Config = &blob.Name
228228
if _, ok := isl.Blobs[blob.Name]; !ok {
229229
if blob.LayerSize == 0 {
230230
// only send media type since we don't the size of the manifest

pkg/openapi/zz_generated.openapi.go

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

test/extended/images/layers.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ var _ = g.Describe("[Feature:ImageLayers] Image layer subresource", func() {
7171
l, ok := layers.Images[image.Image.Name]
7272
o.Expect(ok).To(o.BeTrue())
7373
o.Expect(len(l.Layers)).To(o.BeNumerically(">", 0))
74-
o.Expect(l.Manifest).ToNot(o.BeNil())
75-
o.Expect(layers.Blobs[*l.Manifest]).ToNot(o.BeNil())
76-
o.Expect(layers.Blobs[*l.Manifest].MediaType).To(o.Equal("application/vnd.docker.container.image.v1+json"))
74+
o.Expect(l.Config).ToNot(o.BeNil())
75+
o.Expect(layers.Blobs[*l.Config]).ToNot(o.BeNil())
76+
o.Expect(layers.Blobs[*l.Config].MediaType).To(o.Equal("application/vnd.docker.container.image.v1+json"))
7777
for _, layerID := range l.Layers {
7878
o.Expect(layers.Blobs).To(o.HaveKey(layerID))
7979
o.Expect(layers.Blobs[layerID].MediaType).NotTo(o.BeEmpty())

0 commit comments

Comments
 (0)