update vendor/ dir to latest w/o heroku, moby

had to lock a lot of things in place
This commit is contained in:
Reed Allman
2017-08-03 02:38:15 -07:00
parent 780791da1c
commit 30f3c45dbc
5637 changed files with 191713 additions and 1133103 deletions

View File

@@ -17,6 +17,7 @@ import (
"github.com/docker/distribution/reference"
registry "github.com/docker/distribution/registry/client"
"github.com/docker/distribution/registry/client/auth"
"github.com/docker/distribution/registry/client/auth/challenge"
"github.com/docker/distribution/registry/client/transport"
docker "github.com/fsouza/go-dockerclient"
"github.com/iron-io/runner/drivers"
@@ -73,7 +74,7 @@ func CheckRegistry(ctx context.Context, image string, config docker.AuthConfigur
return nil, err
}
cm := auth.NewSimpleChallengeManager()
cm := challenge.NewSimpleManager()
creds := newCreds(config.Username, config.Password)
tran := transport.NewTransport(registryTransport,
@@ -114,7 +115,7 @@ func CheckRegistry(ctx context.Context, image string, config docker.AuthConfigur
}
type retryWrap struct {
cm auth.ChallengeManager
cm challenge.Manager
tran http.RoundTripper
}