We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 935fda0 commit 6b69999Copy full SHA for 6b69999
schema/validator.go
@@ -136,6 +136,10 @@ func validateIndex(r io.Reader) error {
136
}
137
138
for _, manifest := range header.Manifests {
139
+ if manifest.MediaType != string(v1.MediaTypeImageIndex) {
140
+ fmt.Printf("warning: manifest %s has an unknown media type: %s\n", manifest.Digest, manifest.MediaType)
141
+ }
142
+
143
checkPlatform(manifest.Platform.OS, manifest.Platform.Architecture)
144
145
0 commit comments