-
Notifications
You must be signed in to change notification settings - Fork 1k
dep init not working #1063
Comments
hi, welcome! thanks for the issue. so, it appears that simply checking out this repo caused the working tree to become dirty. could you do a |
@sdboyer Unfortunately I had re-run since the last time, to try to see if things would work so I don't have that particular run. But I can add that different runs result in different errors. For example, I also got this in the latest run: (34) ✗ k8s.io/apiserver at release-1.6 has problem subpkg(s): Solver wall times by segment: TOTAL: 9m30.2054098s No versions of k8s.io/apiserver met constraints: I will try to run once more, and get the diff from whatever package that results in the initial error. |
Got the following errors now: (52) ? attempt github.com/kubernetes-incubator/cluster-capacity with 14 pkgs; 2 versions to try Solver wall times by segment: TOTAL: 14m54.1453186s No versions of github.com/kubernetes-incubator/cluster-capacity met constraints:
Aborting Looks like its the vendor folder of kubernetes-incubator-cluster-capacity and I tried git diff in each and every vendor folder and it returns nothing. |
aaaarrrrggghhhhhhh
that was in |
Yes: C:\projects\go\pkg\dep\sources\https---github.com-kubernetes--incubator-cluster--capacity>git diff C:\projects\go\pkg\dep\sources\https---github.com-kubernetes--incubator-cluster--capacity> What I meant was that the errors I see when running a "dep init" seem to point to vendor packages (in addition to the kubernetes package). |
right, i gotcha. that's just a trick of the output - that's actually the what's the value of if you directly |
$ git config --get --global core.autocrlf $ git clone https://github.com/kubernetes-incubator/cluster-capacity $ git status |
😢 if you remove the |
dep init -v Solver wall times by segment: TOTAL: 8m39.4752934s No versions of google.golang.org/api met constraints: |
ah well, we don't have an actual bug anymore. now we're back to proper errors - (idk why google is releasing things that way 😢) |
Ok, can I get init to create the files it needs and move on even if one or two packages are not working 100% as they should? I mean it's blocking me from working. |
so, first, we're actively working on k8s compatibility with dep, but i might not be able to promise you a successful outcome right now :( but for now, you've gotta solve the problems it's relaying to you: currently, your "egresscontroller" project appears to import
|
Ok, so I couldn't find that dependency, but I had a vendor folder, and it looks like it went through my vendor folder and that it might have been there. I removed the vendor folder, and now it's much less packages when it begins, but everyone of them fails with these errors: Aborting
Please move or remove them before you switch branches.
Please move or remove them before you switch branches. |
+1 I have the same issue. |
😢 😢 😢 something is repeatedly bungling up the repositories in the on-disk cache area. let's take a step back.
beyond those two questions: if you could provide steps to reproduce, the more detailed the better, it would help a lot here. (to get back to a fresh state, you'll need to remove @swiftdiaries there's actually a bunch of things going on in this issue, so if you could be more precise about what you're experiencing, that'd be great. |
I followed this, https://medium.com/@vladimirvivien/using-gos-dep-to-organize-your-kubernetes-client-go-dependencies-509ddc766ed3. I'm on a Mac, installed dep using brew. Edit(this is what I get):
|
#909 (write out failed init runs anyway) hasn't had any work/design put into it. There are two problems that need to be solved for that:
|
is that what you get the very first time you run we're trying to deal with causality related to on-disk cache issues here, so the full genesis of commands you've run, and output you see, is very important. if you could:
please gist the results instead of going inline, so that it's easier to scroll through the discussion. |
"full genesis" very much including whether or not you're sending Ctrl-C interrupts to processes. one of the first things we have to isolate is whether or not cache area corruption is happening under normal operating conditions, or if it only happens as a consequence of aborted cleanups due to signals. |
@swiftdiaries for now, anyway - the question is how it got corrupted in the first place. i'd hoped that we'd dealt with our signal interrupt issues, but apparently not :( probably going to need to add some cleanliness checks to the |
@sdboyer I believe I have outlined my steps before, but here we go again:
dep hash-inputs
Tried the same process several times with similar results. |
just making sure - there's a lot of easier, more-known failure modes to dismiss before getting into what otherwise looks like a very tricky problem.
those results being, on the first run, an error that looks like this:
and on all subsequent runs immediately thereafter, has some big list of files - the exact repository about which it complains varies - preceded by an error like this:
correct? |
Yes - that's correct, although the second error also appears in the first run. |
Update: I removed almost all imports, and then ran init, and then gradually added imports and that approach seems to work (though I have not yet reached to the point where it used to fail). However, I am now running into the exports timeout issue (#1101) midway which stops me from using this approach. |
Ok, I built dep myself locally and modified the timeout to a much higher value, and it looks like I am almost all the way through. The offending imports seem to be: @sdboyer This should be more precise than before... |
@sdboyer Any ideas why this might happen? I am so close... |
sorry, this fell off my radar last week.
😱😱😱 this is much scarier; ordinarily disk state corruption occurs between runs due to, we think, some improper cleanup of running subprocesses at termination time. however, if these issues are arising on the very first, clean run, then i think it can only mean we have a concurrency bug somewhere that's somehow allowing commands to overlap each other. or, much more hopefully, it's that we're somehow not cleaning up after git checkouts appropriately. i'm not sure how that's possible, but it's still a far better alternative. and origin is a huge repository, so there's more possibility for weirdness there. still, though, nothing definitively clear to me as to why these would consistently misbehave. i will try to fully and properly replicate this locally, but it'll have to be later this week. |
Ok, sounds cool. To simplify your investigation, these are the reproducible steps:
|
so, i tried this locally, and it did actually finish for me, including writing out a lock file: https://gist.github.com/sdboyer/2ad0bdc2cc58339254f6931774912bb0 took about six minutes, though i already had a clone of this is slow (though along a path we have plans to optimize), but not something that should actually cause these kinds of failures that you're seeing. it's worth noting that there was one of these:
prior to #1079, which i just merged in the past 48 hours, this likely would have resulted in an impossible build situation, but manifesting with the sort of "file already exists" error you were seeing above. however, that would've been on logrus, not on these other random dependencies. so...¯\_(ツ)_/¯ unfortunately, i think we're probably going to need much more comprehensive logging in order to be able to understand what's really going on with your situation. i kinda have to imagine that, somewhere and at some point, [git on] windows - which is not a fan of large numbers of small files in general - is hitting some kind of resource limit while it's trying to do all of those checkouts of openshift. |
My project builds but I am getting the same error you had above.
|
@james-maloney if your project builds while you're getting that error, it means you've got nested vendor directories somewhere that are hiding the problem from you in your current approach. that's not really the focus of this issue, though - see #797 for some more detailed discussion. |
i'm going to close this as can't reproduce. please feel free to reopen if you can either point to some steps i can follow to recreate on a unixish machine, or if someone else can reproduce in a windows environment. |
im getting the same error for logrus, okay ives seen a thread stating that logrus have change its name to lowercase, |
What version of Go (
go version
) anddep
(git describe --tags
) are you using?go version go1.8 windows/amd64
v0.3.0-156-gc26c5b9
What
dep
command did you run?$ dep init -v
Getting direct dependencies...
Checked 4933 directories for packages.
Found 218 direct dependencies.
Root project is "egresscontroller"
3490 transitively valid internal packages
2978 external packages imported from 218 projects
(0) ✓ select (root)
(1) ? attempt bitbucket.org/ww/goautoneg with 1 pkgs; 1 versions to try
(1) try bitbucket.org/ww/goautoneg@default
(1) ✓ select bitbucket.org/ww/goautoneg@default w/1 pkgs
(2) ? attempt github.com/PuerkitoBio/urlesc with 1 pkgs; 1 versions to try
(2) try github.com/PuerkitoBio/urlesc@master
(2) ✓ select github.com/PuerkitoBio/urlesc@master w/1 pkgs
(3) ? attempt github.com/MakeNowJust/heredoc with 1 pkgs; 1 versions to try
(3) try github.com/MakeNowJust/heredoc@master
(3) ✓ select github.com/MakeNowJust/heredoc@master w/1 pkgs
(4) ? attempt github.com/RangelReale/osincli with 1 pkgs; 1 versions to try
(4) try github.com/RangelReale/osincli@master
(4) ✓ select github.com/RangelReale/osincli@master w/1 pkgs
(5) ? attempt github.com/RackSec/srslog with 1 pkgs; 1 versions to try
(5) try github.com/RackSec/srslog@master
(5) ✓ select github.com/RackSec/srslog@master w/1 pkgs
(6) ? attempt github.com/chai2010/gettext-go with 1 pkgs; 1 versions to try
(6) try github.com/chai2010/gettext-go@master
(6) ✓ select github.com/chai2010/gettext-go@master w/4 pkgs
(7) ? attempt github.com/go-openapi/jsonreference with 1 pkgs; 1 versions to try
(7) try github.com/go-openapi/jsonreference@master
(7) ✓ select github.com/go-openapi/jsonreference@master w/1 pkgs
(8) ? attempt github.com/cloudfoundry-incubator/candiedyaml with 1 pkgs; 1 versions to try
(8) try github.com/cloudfoundry-incubator/candiedyaml@master
(8) ✓ select github.com/cloudfoundry-incubator/candiedyaml@master w/1 pkgs
(9) ? attempt github.com/armon/circbuf with 1 pkgs; 1 versions to try
(9) try github.com/armon/circbuf@master
(9) ✓ select github.com/armon/circbuf@master w/1 pkgs
(10) ? attempt github.com/golang/protobuf with 15 pkgs; 1 versions to try
(10) try github.com/golang/protobuf@master
(10) ✓ select github.com/golang/protobuf@master w/15 pkgs
(11) ? attempt github.com/exponent-io/jsonpath with 1 pkgs; 1 versions to try
(11) try github.com/exponent-io/jsonpath@master
(11) ✓ select github.com/exponent-io/jsonpath@master w/1 pkgs
(12) ? attempt github.com/daviddengcn/go-colortext with 1 pkgs; 1 versions to try
(12) try github.com/daviddengcn/go-colortext@master
(12) ✓ select github.com/daviddengcn/go-colortext@master w/1 pkgs
(13) ? attempt github.com/elazarl/go-bindata-assetfs with 1 pkgs; 1 versions to try
(13) try github.com/elazarl/go-bindata-assetfs@master
(13) ✓ select github.com/elazarl/go-bindata-assetfs@master w/1 pkgs
(14) ? attempt github.com/gophercloud/gophercloud with 25 pkgs; 2 versions to try
(14) try github.com/gophercloud/gophercloud@master
(14) ✓ select github.com/gophercloud/gophercloud@master w/30 pkgs
(15) ? attempt github.com/kubernetes-incubator/cluster-capacity with 14 pkgs; 2 versions to try
(15) try github.com/kubernetes-incubator/[email protected]
(15) ✗ Unable to update checked out version: error: The following untracked working tree files would be overwritten by checkout:
(15) .gitignore
(15) .travis.yml
(15) Dockerfile
(15) LICENSE
(15) Makefile
(15) OWNERS
(15) README.md
(15) WORKSPACE
(15) cmd/cluster-capacity/app/options/options.go
(15) cmd/cluster-capacity/app/server.go
(15) cmd/cluster-capacity/main.go
(15) cmd/genpod/app/options/options.go
(15) cmd/genpod/app/server.go
(15) cmd/genpod/main.go
(15) cmd/hypercc/hypercc.go
(15) cmd/hypercc/main.go
(15) config/default-scheduler.yaml
(15) defs/BUILD
(15) defs/build.bzl
(15) defs/deb.bzl
(15) defs/gcs_uploader.py
(15) defs/go.bzl
(15) doc/RUN_IN_KUBERNETES.md
(15) doc/api-definitions.md
(15) doc/api-operations.md
(15) doc/cluster-capacity.md
(15) doc/example-limit-range.yaml
(15) doc/html/api-reference/definitions.html
(15) doc/html/api-reference/operations.html
(15) doc/html/home.html
(15) examples/limits.yml
(15) examples/namespace-annotated.yml
(15) examples/namespace.yml
(15) examples/pod-with-no-resource-limits.yaml
(15) examples/pod.yaml
(15) examples/rc.yml
(15) examples/rq.yml
(15) glide.lock
(15) glide.yaml
(15) integration-tests.sh
(15) pkg/api/api.go
(15) pkg/client/nspod.go
(15) pkg/framework/record/recorder.go
(15) pkg/framework/report.go
(15) pkg/framework/restclient/external/restclient.go
(15) pkg/framework/restclient/external/restclient_test.go
(15) pkg/framework/restclient/external/watch_test.go
(15) pkg/framework/simulator.go
(15) pkg/framework/simulator_test.go
(15) pkg/framework/store/fake.go
(15) pkg/framework/store/store.go
(15) pkg/framework/strategy/strategy.go
(15) pkg/framework/strategy/strategy_test.go
(15) pkg/framework/watch/watch.go
(15) pkg/test/util.go
(15) pkg/utils/utils.go
(15) pod-spec.yaml
(15) test.sh
(15) vendor/github.com/PuerkitoBio/purell/.gitignore
(15) vendor/github.com/PuerkitoBio/purell/.travis.yml
(15) vendor/github.com/PuerkitoBio/purell/LICENSE
(15) vendor/github.com/PuerkitoBio/purell/README.md
(15) vendor/github.com/PuerkitoBio/purell/bench_test.go
(15) vendor/github.com/PuerkitoBio/purell/benchmarks/v0.1.0
(15) vendor/github.com/PuerkitoBio/purell/example_test.go
(15) vendor/github.com/PuerkitoBio/purell/purell.go
(15) vendor/github.com/PuerkitoBio/purell/purell_test.go
(15) vendor/github.com/PuerkitoBio/purell/urlnorm_test.go
(15) vendor/github.com/PuerkitoBio/urlesc/.travis.yml
(15) vendor/github.com/PuerkitoBio/urlesc/LICENSE
(15) vendor/github.com/PuerkitoBio/urlesc/README.md
(15) vendor/github.com/PuerkitoBio/urlesc/urlesc.go
(15) vendor/github.com/PuerkitoBio/urlesc/urlesc_test.go
(15) vendor/github.com/aws/aws-sdk-go/.gitignore
(15) vendor/github.com/aws/aws-sdk-go/.godoc_config
(15) vendor/github.com/aws/aws-sdk-go/.travis.yml
(15) vendor/github.com/aws/aws-sdk-go/CHANGELOG.md
(15) vendor/github.com/aws/aws-sdk-go/LICENSE.txt
(15) vendor/github.com/aws/aws-sdk-go/Makefile
(15) vendor/github.com/aws/aws-sdk-go/NOTICE.txt
(15) vendor/github.com/aws/aws-sdk-go/README.md
(15) vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go
(15) vendor/github.com/aws/aws-sdk-go/aws/client/client.go
(15) vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go
(15) vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go
(15) vendor/github.com/aws/aws-sdk-go/aws/config.go
(15) vendor/github.com/aws/aws-sdk-go/aws/config_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/convert_types.go
(15) vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go
(15) vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go
(15) vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go
(15) vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go
(15) vendor/github
(15) error: The following untracked working tree files would be removed by checkout:
(15) vendor/github.com/dgrijalva/jwt-go/.gitignore
(15) vendor/github.com/dgrijalva/jwt-go/.travis.yml
(15) vendor/github.com/dgrijalva/jwt-go/LICENSE
(15) vendor/github.com/dgrijalva/jwt-go/MIGRATION_GUIDE.md
(15) vendor/github.com/dgrijalva/jwt-go/README.md
(15) vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md
(15) vendor/github.com/dgrijalva/jwt-go/claims.go
(15) vendor/github.com/dgrijalva/jwt-go/cmd/jwt/README.md
(15) vendor/github.com/dgrijalva/jwt-go/cmd/jwt/app.go
(15) vendor/github.com/dgrijalva/jwt-go/doc.go
(15) vendor/github.com/dgrijalva/jwt-go/ecdsa.go
(15) vendor/github.com/dgrijalva/jwt-go/ecdsa_test.go
(15) vendor/github.com/dgrijalva/jwt-go/ecdsa_utils.go
(15) vendor/github.com/dgrijalva/jwt-go/errors.go
(15) vendor/github.com/dgrijalva/jwt-go/example_test.go
(15) vendor/github.com/dgrijalva/jwt-go/hmac.go
(15) vendor/github.com/dgrijalva/jwt-go/hmac_example_test.go
(15) vendor/github.com/dgrijalva/jwt-go/hmac_test.go
(15) vendor/github.com/dgrijalva/jwt-go/http_example_test.go
(15) vendor/github.com/dgrijalva/jwt-go/map_claims.go
(15) vendor/github.com/dgrijalva/jwt-go/none.go
(15) vendor/github.com/dgrijalva/jwt-go/none_test.go
(15) vendor/github.com/dgrijalva/jwt-go/parser.go
(15) vendor/github.com/dgrijalva/jwt-go/parser_test.go
(15) vendor/github.com/dgrijalva/jwt-go/request/doc.go
(15) vendor/github.com/dgrijalva/jwt-go/request/extractor.go
(15) vendor/github.com/dgrijalva/jwt-go/request/extractor_example_test.go
(15) vendor/github.com/dgrijalva/jwt-go/request/extractor_test.go
(15) vendor/github.com/dgrijalva/jwt-go/request/oauth2.go
(15) vendor/github.com/dgrijalva/jwt-go/request/request.go
(15) vendor/github.com/dgrijalva/jwt-go/request/request_test.go
(15) vendor/github.com/dgrijalva/jwt-go/rsa.go
(15) vendor/github.com/dgrijalva/jwt-go/rsa_pss.go
(15) vendor/github.com/dgrijalva/jwt-go/rsa_pss_test.go
(15) vendor/github.com/dgrijalva/jwt-go/rsa_test.go
(15) vendor/github.com/dgrijalva/jwt-go/rsa_utils.go
(15) vendor/github.com/dgrijalva/jwt-go/signing_method.go
(15) vendor/github.com/dgrijalva/jwt-go/test/ec256-private.pem
(15) vendor/github.com/dgrijalva/jwt-go/test/ec256-public.pem
(15) vendor/github.com/dgrijalva/jwt-go/test/ec384-private.pem
(15) vendor/github.com/dgrijalva/jwt-go/test/ec384-public.pem
(15) vendor/github.com/dgrijalva/jwt-go/test/ec512-private.pem
(15) vendor/github.com/dgrijalva/jwt-go/test/ec512-public.pem
(15) vendor/github.com/dgrijalva/jwt-go/test/helpers.go
(15) vendor/github.com/dgrijalva/jwt-go/test/hmacTestKey
(15) vendor/github.com/dgrijalva/jwt-go/test/sample_key
(15) vendor/github.com/dgrijalva/jwt-go/test/sample_key.pub
(15) vendor/github.com/dgrijalva/jwt-go/token.go
(15) Please move or remove them before you switch branches.
(15) Aborting
(15) try github.com/kubernetes-incubator/cluster-capacity@master
(15) ✗ Unable to update checked out version: error: The following untracked working tree files would be overwritten by checkout:
(15) .gitignore
(15) .travis.yml
(15) Dockerfile
(15) LICENSE
(15) Makefile
(15) OWNERS
(15) README.md
(15) WORKSPACE
(15) cmd/cluster-capacity/app/options/options.go
(15) cmd/cluster-capacity/app/server.go
(15) cmd/cluster-capacity/main.go
(15) cmd/genpod/app/options/options.go
(15) cmd/genpod/app/server.go
(15) cmd/genpod/main.go
(15) cmd/hypercc/hypercc.go
(15) cmd/hypercc/main.go
(15) config/default-scheduler.yaml
(15) defs/BUILD
(15) defs/build.bzl
(15) defs/deb.bzl
(15) defs/gcs_uploader.py
(15) defs/go.bzl
(15) doc/RUN_IN_KUBERNETES.md
(15) doc/api-definitions.md
(15) doc/api-operations.md
(15) doc/cluster-capacity.md
(15) doc/example-limit-range.yaml
(15) doc/html/api-reference/definitions.html
(15) doc/html/api-reference/operations.html
(15) doc/html/home.html
(15) examples/limits.yml
(15) examples/namespace-annotated.yml
(15) examples/namespace.yml
(15) examples/pod-with-no-resource-limits.yaml
(15) examples/pod.yaml
(15) examples/rc.yml
(15) examples/rq.yml
(15) glide.lock
(15) glide.yaml
(15) integration-tests.sh
(15) pkg/api/api.go
(15) pkg/client/nspod.go
(15) pkg/framework/record/recorder.go
(15) pkg/framework/report.go
(15) pkg/framework/restclient/external/restclient.go
(15) pkg/framework/restclient/external/restclient_test.go
(15) pkg/framework/restclient/external/watch_test.go
(15) pkg/framework/simulator.go
(15) pkg/framework/simulator_test.go
(15) pkg/framework/store/fake.go
(15) pkg/framework/store/store.go
(15) pkg/framework/strategy/strategy.go
(15) pkg/framework/strategy/strategy_test.go
(15) pkg/framework/watch/watch.go
(15) pkg/test/util.go
(15) pkg/utils/utils.go
(15) pod-spec.yaml
(15) test.sh
(15) vendor/github.com/PuerkitoBio/purell/.gitignore
(15) vendor/github.com/PuerkitoBio/purell/.travis.yml
(15) vendor/github.com/PuerkitoBio/purell/LICENSE
(15) vendor/github.com/PuerkitoBio/purell/README.md
(15) vendor/github.com/PuerkitoBio/purell/bench_test.go
(15) vendor/github.com/PuerkitoBio/purell/benchmarks/v0.1.0
(15) vendor/github.com/PuerkitoBio/purell/example_test.go
(15) vendor/github.com/PuerkitoBio/purell/purell.go
(15) vendor/github.com/PuerkitoBio/purell/purell_test.go
(15) vendor/github.com/PuerkitoBio/purell/urlnorm_test.go
(15) vendor/github.com/PuerkitoBio/urlesc/.travis.yml
(15) vendor/github.com/PuerkitoBio/urlesc/LICENSE
(15) vendor/github.com/PuerkitoBio/urlesc/README.md
(15) vendor/github.com/PuerkitoBio/urlesc/urlesc.go
(15) vendor/github.com/PuerkitoBio/urlesc/urlesc_test.go
(15) vendor/github.com/aws/aws-sdk-go/.gitignore
(15) vendor/github.com/aws/aws-sdk-go/.godoc_config
(15) vendor/github.com/aws/aws-sdk-go/.travis.yml
(15) vendor/github.com/aws/aws-sdk-go/CHANGELOG.md
(15) vendor/github.com/aws/aws-sdk-go/LICENSE.txt
(15) vendor/github.com/aws/aws-sdk-go/Makefile
(15) vendor/github.com/aws/aws-sdk-go/NOTICE.txt
(15) vendor/github.com/aws/aws-sdk-go/README.md
(15) vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go
(15) vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go
(15) vendor/github.com/aws/aws-sdk-go/aws/client/client.go
(15) vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go
(15) vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go
(15) vendor/github.com/aws/aws-sdk-go/aws/config.go
(15) vendor/github.com/aws/aws-sdk-go/aws/config_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/convert_types.go
(15) vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go
(15) vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go
(15) vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go
(15) vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go
(15) vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go
(15) vendor/github
(15) Aborting
(15) ← no more versions of github.com/kubernetes-incubator/cluster-capacity to try; begin backtrack
(14) ← backtrack: no more versions of github.com/gophercloud/gophercloud to try
(13) ← backtrack: no more versions of github.com/elazarl/go-bindata-assetfs to try
(12) ← backtrack: no more versions of github.com/daviddengcn/go-colortext to try
(11) ← backtrack: no more versions of github.com/exponent-io/jsonpath to try
(10) ← backtrack: no more versions of github.com/golang/protobuf to try
(9) ← backtrack: no more versions of github.com/armon/circbuf to try
(8) ← backtrack: no more versions of github.com/cloudfoundry-incubator/candiedyaml to try
(7) ← backtrack: no more versions of github.com/go-openapi/jsonreference to try
(6) ← backtrack: no more versions of github.com/chai2010/gettext-go to try
(5) ← backtrack: no more versions of github.com/RackSec/srslog to try
(4) ← backtrack: no more versions of github.com/RangelReale/osincli to try
(3) ← backtrack: no more versions of github.com/MakeNowJust/heredoc to try
(2) ← backtrack: no more versions of github.com/PuerkitoBio/urlesc to try
(1) ← backtrack: no more versions of bitbucket.org/ww/goautoneg to try
✗ solving failed
Solver wall times by segment:
b-list-versions: 8m35.7360181s
b-list-pkgs: 2m23.7454242s
b-gmal: 2m21.9529861s
select-root: 168.8131ms
select-atom: 6.9757ms
satisfy: 5.499ms
unselect: 3.3985ms
new-atom: 1.4602ms
b-deduce-proj-root: 501µs
b-source-exists: 0s
backtrack: 0s
other: 0s
TOTAL: 13m21.6210759s
No versions of github.com/kubernetes-incubator/cluster-capacity met constraints:
v0.1.0: Unable to update checked out version: error: The following untracked working tree files would be overwritten by checkout:
.gitignore
.travis.yml
Dockerfile
LICENSE
Makefile
OWNERS
README.md
WORKSPACE
cmd/cluster-capacity/app/options/options.go
cmd/cluster-capacity/app/server.go
cmd/cluster-capacity/main.go
cmd/genpod/app/options/options.go
cmd/genpod/app/server.go
cmd/genpod/main.go
cmd/hypercc/hypercc.go
cmd/hypercc/main.go
config/default-scheduler.yaml
defs/BUILD
defs/build.bzl
defs/deb.bzl
defs/gcs_uploader.py
defs/go.bzl
doc/RUN_IN_KUBERNETES.md
doc/api-definitions.md
doc/api-operations.md
doc/cluster-capacity.md
doc/example-limit-range.yaml
doc/html/api-reference/definitions.html
doc/html/api-reference/operations.html
doc/html/home.html
examples/limits.yml
examples/namespace-annotated.yml
examples/namespace.yml
examples/pod-with-no-resource-limits.yaml
examples/pod.yaml
examples/rc.yml
examples/rq.yml
glide.lock
glide.yaml
integration-tests.sh
pkg/api/api.go
pkg/client/nspod.go
pkg/framework/record/recorder.go
pkg/framework/report.go
pkg/framework/restclient/external/restclient.go
pkg/framework/restclient/external/restclient_test.go
pkg/framework/restclient/external/watch_test.go
pkg/framework/simulator.go
pkg/framework/simulator_test.go
pkg/framework/store/fake.go
pkg/framework/store/store.go
pkg/framework/strategy/strategy.go
pkg/framework/strategy/strategy_test.go
pkg/framework/watch/watch.go
pkg/test/util.go
pkg/utils/utils.go
pod-spec.yaml
test.sh
vendor/github.com/PuerkitoBio/purell/.gitignore
vendor/github.com/PuerkitoBio/purell/.travis.yml
vendor/github.com/PuerkitoBio/purell/LICENSE
vendor/github.com/PuerkitoBio/purell/README.md
vendor/github.com/PuerkitoBio/purell/bench_test.go
vendor/github.com/PuerkitoBio/purell/benchmarks/v0.1.0
vendor/github.com/PuerkitoBio/purell/example_test.go
vendor/github.com/PuerkitoBio/purell/purell.go
vendor/github.com/PuerkitoBio/purell/purell_test.go
vendor/github.com/PuerkitoBio/purell/urlnorm_test.go
vendor/github.com/PuerkitoBio/urlesc/.travis.yml
vendor/github.com/PuerkitoBio/urlesc/LICENSE
vendor/github.com/PuerkitoBio/urlesc/README.md
vendor/github.com/PuerkitoBio/urlesc/urlesc.go
vendor/github.com/PuerkitoBio/urlesc/urlesc_test.go
vendor/github.com/aws/aws-sdk-go/.gitignore
vendor/github.com/aws/aws-sdk-go/.godoc_config
vendor/github.com/aws/aws-sdk-go/.travis.yml
vendor/github.com/aws/aws-sdk-go/CHANGELOG.md
vendor/github.com/aws/aws-sdk-go/LICENSE.txt
vendor/github.com/aws/aws-sdk-go/Makefile
vendor/github.com/aws/aws-sdk-go/NOTICE.txt
vendor/github.com/aws/aws-sdk-go/README.md
vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go
vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go
vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go
vendor/github.com/aws/aws-sdk-go/aws/client/client.go
vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go
vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go
vendor/github.com/aws/aws-sdk-go/aws/config.go
vendor/github.com/aws/aws-sdk-go/aws/config_test.go
vendor/github.com/aws/aws-sdk-go/aws/convert_types.go
vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go
vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go
vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go
vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go
vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go
vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go
vendor/github
error: The following untracked working tree files would be removed by checkout:
vendor/github.com/dgrijalva/jwt-go/.gitignore
vendor/github.com/dgrijalva/jwt-go/.travis.yml
vendor/github.com/dgrijalva/jwt-go/LICENSE
vendor/github.com/dgrijalva/jwt-go/MIGRATION_GUIDE.md
vendor/github.com/dgrijalva/jwt-go/README.md
vendor/github.com/dgrijalva/jwt-go/VERSION_HISTORY.md
vendor/github.com/dgrijalva/jwt-go/claims.go
vendor/github.com/dgrijalva/jwt-go/cmd/jwt/README.md
vendor/github.com/dgrijalva/jwt-go/cmd/jwt/app.go
vendor/github.com/dgrijalva/jwt-go/doc.go
vendor/github.com/dgrijalva/jwt-go/ecdsa.go
vendor/github.com/dgrijalva/jwt-go/ecdsa_test.go
vendor/github.com/dgrijalva/jwt-go/ecdsa_utils.go
vendor/github.com/dgrijalva/jwt-go/errors.go
vendor/github.com/dgrijalva/jwt-go/example_test.go
vendor/github.com/dgrijalva/jwt-go/hmac.go
vendor/github.com/dgrijalva/jwt-go/hmac_example_test.go
vendor/github.com/dgrijalva/jwt-go/hmac_test.go
vendor/github.com/dgrijalva/jwt-go/http_example_test.go
vendor/github.com/dgrijalva/jwt-go/map_claims.go
vendor/github.com/dgrijalva/jwt-go/none.go
vendor/github.com/dgrijalva/jwt-go/none_test.go
vendor/github.com/dgrijalva/jwt-go/parser.go
vendor/github.com/dgrijalva/jwt-go/parser_test.go
vendor/github.com/dgrijalva/jwt-go/request/doc.go
vendor/github.com/dgrijalva/jwt-go/request/extractor.go
vendor/github.com/dgrijalva/jwt-go/request/extractor_example_test.go
vendor/github.com/dgrijalva/jwt-go/request/extractor_test.go
vendor/github.com/dgrijalva/jwt-go/request/oauth2.go
vendor/github.com/dgrijalva/jwt-go/request/request.go
vendor/github.com/dgrijalva/jwt-go/request/request_test.go
vendor/github.com/dgrijalva/jwt-go/rsa.go
vendor/github.com/dgrijalva/jwt-go/rsa_pss.go
vendor/github.com/dgrijalva/jwt-go/rsa_pss_test.go
vendor/github.com/dgrijalva/jwt-go/rsa_test.go
vendor/github.com/dgrijalva/jwt-go/rsa_utils.go
vendor/github.com/dgrijalva/jwt-go/signing_method.go
vendor/github.com/dgrijalva/jwt-go/test/ec256-private.pem
vendor/github.com/dgrijalva/jwt-go/test/ec256-public.pem
vendor/github.com/dgrijalva/jwt-go/test/ec384-private.pem
vendor/github.com/dgrijalva/jwt-go/test/ec384-public.pem
vendor/github.com/dgrijalva/jwt-go/test/ec512-private.pem
vendor/github.com/dgrijalva/jwt-go/test/ec512-public.pem
vendor/github.com/dgrijalva/jwt-go/test/helpers.go
vendor/github.com/dgrijalva/jwt-go/test/hmacTestKey
vendor/github.com/dgrijalva/jwt-go/test/sample_key
vendor/github.com/dgrijalva/jwt-go/test/sample_key.pub
vendor/github.com/dgrijalva/jwt-go/token.go
Please move or remove them before you switch branches.
Aborting
Aborting
What did you expect to see?
All dependencies indexed and downloaded
What did you see instead?
The errors that can be see in the output above.
The text was updated successfully, but these errors were encountered: