Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #368 from tiborvass/19.03-remove-warning-on-v2sche…
Browse files Browse the repository at this point in the history
…ma1-pull

[19.03 backport] distribution: modify warning logic when pulling v2 schema1 manifests
Upstream-commit: 421a3aa7375c33db33b5ea0e8aaa52a50aeaa8ed
Component: engine
  • Loading branch information
andrewhsu committed Sep 20, 2019
2 parents 214d4ba + 1507ce3 commit 6a94234
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
13 changes: 9 additions & 4 deletions components/engine/distribution/pull_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -392,9 +392,14 @@ func (p *v2Puller) pullV2Tag(ctx context.Context, ref reference.Named, platform
if p.config.RequireSchema2 {
return false, fmt.Errorf("invalid manifest: not schema2")
}
msg := schema1DeprecationMessage(ref)
logrus.Warn(msg)
progress.Message(p.config.ProgressOutput, "", msg)

// give registries time to upgrade to schema2 and only warn if we know a registry has been upgraded long time ago
// TODO: condition to be removed
if reference.Domain(ref) == "docker.io" {
msg := fmt.Sprintf("Image %s uses outdated schema1 manifest format. Please upgrade to a schema2 image for better future compatibility. More information at https://docs.docker.com/registry/spec/deprecated-schema-v1/", ref)
logrus.Warn(msg)
progress.Message(p.config.ProgressOutput, "", msg)
}

id, manifestDigest, err = p.pullSchema1(ctx, ref, v, platform)
if err != nil {
Expand Down Expand Up @@ -791,7 +796,7 @@ func (p *v2Puller) pullManifestList(ctx context.Context, ref reference.Named, mf

switch v := manifest.(type) {
case *schema1.SignedManifest:
msg := schema1DeprecationMessage(ref)
msg := fmt.Sprintf("[DEPRECATION NOTICE] v2 schema1 manifests in manifest lists are not supported and will break in a future release. Suggest author of %s to upgrade to v2 schema2. More information at https://docs.docker.com/registry/spec/deprecated-schema-v1/", ref)
logrus.Warn(msg)
progress.Message(p.config.ProgressOutput, "", msg)

Expand Down
2 changes: 1 addition & 1 deletion components/engine/distribution/push_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func (p *v2Pusher) pushV2Tag(ctx context.Context, ref reference.NamedTagged, id

logrus.Warnf("failed to upload schema2 manifest: %v - falling back to schema1", err)

msg := schema1DeprecationMessage(ref)
msg := fmt.Sprintf("[DEPRECATION NOTICE] registry v2 schema1 support will be removed in an upcoming release. Please contact admins of the %s registry NOW to avoid future disruption. More information at https://docs.docker.com/registry/spec/deprecated-schema-v1/", reference.Domain(ref))
logrus.Warn(msg)
progress.Message(p.config.ProgressOutput, "", msg)

Expand Down
4 changes: 0 additions & 4 deletions components/engine/distribution/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,3 @@ func (th *existingTokenHandler) AuthorizeRequest(req *http.Request, params map[s
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", th.token))
return nil
}

func schema1DeprecationMessage(ref reference.Named) string {
return fmt.Sprintf("[DEPRECATION NOTICE] registry v2 schema1 support will be removed in an upcoming release. Please contact admins of the %s registry NOW to avoid future disruption.", reference.Domain(ref))
}

0 comments on commit 6a94234

Please sign in to comment.