Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker-env: restart dockerd inside minikube on failure #8239

Merged
merged 8 commits into from
May 26, 2020

Conversation

medyagh
Copy link
Member

@medyagh medyagh commented May 21, 2020

Before this PR when running docker-env, if docker service is not running we exit with error,
for example if minikube IP changes, the docker inside minikube needs to be restart to pick up the certs that have the new IP added to them.

closes #8185

This PR is meant for the last effort, when user reaches out to docker-env, the root cause can be fixed by a different PR. that will be for another release.

Before this PR: docker env when IP changed after minikube start

$ eval $(minikube -p p1 docker-env)

$ docker ps
error during connect: Get https://172.17.0.2:2376/v1.40/containers/json: x509: certificate is valid for 172.17.0.3, 127.0.0.1, not 172.17.0.2

After this PR: docker env when IP changed after minikube start

$ eval $(./out/minikube -p p1 docker-env)
$ docker ps
CONTAINER ID        IMAGE                  COMMAND                  CREATED             STATUS                  PORTS               NAMES
e81df52d2ad1        303ce5db0e90           "etcd --advertise-cl…"   1 second ago        Up Less than a second                       k8s_etcd_etcd-p1_kube-system_ce05cdf6ecce4bf90b96c7f248feb6a3_1
2f979b669a97        k8s.gcr.io/pause:3.2   "/pause"                 2 seconds ago       Up Less than a second                       k8s_POD_coredns-66bff467f8-2zfbs_kube-system_493e5a5f-fd51-424a-83b2-f515607de399_7
bec03d29f012        k8s.gcr.io/pause:3.2   "/pause"                 2 seconds ago       Up Less than a second                       k8s_POD_kube-scheduler-p1_kube-system_155707e0c19147c8dc5e997f089c0ad1_7
86a7cda645da        k8s.gcr.io/pause:3.2   "/pause"                 2 seconds ago       Up Less than a second                       k8s_POD_kube-proxy-nv2gh_kube-system_9dd0c993-ccc8-4f6e-9b69-673a53ed3572_7
e23ba5d4b230        k8s.gcr.io/pause:3.2   "/pause"                 2 seconds ago       Up Less than a second                       k8s_POD_kube-controller-manager-p1_kube-system_7f415a35d57cff5428871c5a51313bd5_7
cd8534425555        k8s.gcr.io/pause:3.2   "/pause"                 2 seconds ago       Up Less than a second                       k8s_POD_etcd-p1_kube-system_ce05cdf6ecce4bf90b96c7f248feb6a3_4

@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label May 21, 2020
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: medyagh

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the size/S Denotes a PR that changes 10-29 lines, ignoring generated files. label May 21, 2020
@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label May 21, 2020
@codecov-commenter
Copy link

codecov-commenter commented May 21, 2020

Codecov Report

Merging #8239 into master will decrease coverage by 0.09%.
The diff coverage is 0.00%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #8239      +/-   ##
==========================================
- Coverage   34.48%   34.38%   -0.10%     
==========================================
  Files         147      147              
  Lines        9418     9448      +30     
==========================================
+ Hits         3248     3249       +1     
- Misses       5771     5800      +29     
  Partials      399      399              
Impacted Files Coverage Δ
cmd/minikube/cmd/docker-env.go 40.86% <0.00%> (-8.61%) ⬇️
cmd/minikube/cmd/status.go 22.22% <0.00%> (-0.98%) ⬇️
pkg/minikube/cruntime/crio.go 52.12% <0.00%> (ø)

@medyagh medyagh changed the title restart docker on docker-env to prevent IP cert problems restart dockerd inside minikube on each eval of docker-env May 21, 2020
@@ -138,6 +139,12 @@ var dockerEnvCmd = &cobra.Command{
out.V{"runtime": co.Config.KubernetesConfig.ContainerRuntime})
}

// on minikube stop, or computer restart the IP might change.
// reloads the certs to prevent #8185
if err := sysinit.New(co.CP.Runner).Restart("docker"); err != nil {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is the right place to restart Docker, mostly because it is very surprising behavior. If you really must restart within docker-env calls, please update the help documentation accordingly.

My preference would be to see this restart done elsewhere, such as fix.go or provision.go:

  • provision already restarts Docker if the systemd configuration has changed.
  • folks may be trying to access the docker daemon outside of the docker-env command

One thought: if you include the IP address in the Docker config template, it will magically restart if the IP or Docker configuration changes. We could also do this more explicitly, of course.

Copy link
Member Author

@medyagh medyagh May 21, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I refactored this PR since this review, please take another look

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As noted in #8235, it is getting very hard to debug all these auto-restart functions

cmd/minikube/cmd/docker-env.go Outdated Show resolved Hide resolved
@k8s-ci-robot k8s-ci-robot added size/M Denotes a PR that changes 30-99 lines, ignoring generated files. and removed size/S Denotes a PR that changes 10-29 lines, ignoring generated files. labels May 21, 2020
@medyagh medyagh changed the title restart dockerd inside minikube on each eval of docker-env restart dockerd inside minikube if IP changed May 21, 2020
@TravisBuddy
Copy link

Travis tests have failed

Hey @medyagh,
Please read the following log in order to understand the failure reason.
It'll be awesome if you fix what's wrong and commit the changes.

1st Build

View build log

make test
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/assets/assets.go -pkg assets deploy/addons/...
gofmt -s -w pkg/minikube/assets/assets.go
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
/home/travis/gopath/bin/go-bindata
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/translate/translations.go -pkg translate translations/...
gofmt -s -w pkg/minikube/translate/translations.go
MINIKUBE_LDFLAGS="-X k8s.io/minikube/pkg/version.version=v1.10.1 -X k8s.io/minikube/pkg/version.isoVersion=v1.10.0 -X k8s.io/minikube/pkg/version.isoPath=minikube/iso -X k8s.io/minikube/pkg/version.gitCommitID="d13280e73d9205ac5002cd926b07e25cf92fd7b1"" ./test.sh
= make lint =============================================================
golangci/golangci-lint info checking GitHub for tag 'v1.26.0'
golangci/golangci-lint info found version: 1.26.0 for v1.26.0/linux/amd64
golangci/golangci-lint info installed out/linters/golangci-lint
WARN [runner] Can't run linter goanalysis_metalinter: assign: failed prerequisites: [inspect@k8s.io/minikube/cmd/minikube: analysis skipped: errors in package: [/home/travis/gopath/src/github.com/kubernetes/minikube/cmd/minikube/main.go:38:2: could not import k8s.io/minikube/cmd/minikube/cmd (/home/travis/gopath/src/github.com/kubernetes/minikube/cmd/minikube/cmd/podman-env.go:125:41: undeclared name: ec)]] 
WARN [runner] Can't run linter unused: buildssa: analysis skipped: errors in package: [/home/travis/gopath/src/github.com/kubernetes/minikube/cmd/minikube/cmd/podman-env.go:125:41: undeclared name: ec -: could not load export data: no export data for "k8s.io/minikube/cmd/minikube/cmd"] 
ERRO Running error: buildssa: analysis skipped: errors in package: [/home/travis/gopath/src/github.com/kubernetes/minikube/cmd/minikube/cmd/podman-env.go:125:41: undeclared name: ec -: could not load export data: no export data for "k8s.io/minikube/cmd/minikube/cmd"] 
Makefile:387: recipe for target 'lint-ci' failed
make[1]: *** [lint-ci] Error 3
= go mod ================================================================
ok
= boilerplate ===========================================================
ok
Makefile:271: recipe for target 'test' failed
make: *** [test] Error 4
travis_time:end:1d90360d:start=1590101418303312114,finish=1590101625670889212,duration=207367577098,event=script

2nd Build

View build log

make test
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/assets/assets.go -pkg assets deploy/addons/...
gofmt -s -w pkg/minikube/assets/assets.go
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
/home/travis/gopath/bin/go-bindata
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/translate/translations.go -pkg translate translations/...
gofmt -s -w pkg/minikube/translate/translations.go
MINIKUBE_LDFLAGS="-X k8s.io/minikube/pkg/version.version=v1.10.1 -X k8s.io/minikube/pkg/version.isoVersion=v1.10.0 -X k8s.io/minikube/pkg/version.isoPath=minikube/iso -X k8s.io/minikube/pkg/version.gitCommitID="d13280e73d9205ac5002cd926b07e25cf92fd7b1"" ./test.sh
= schema_check ==========================================================
go: downloading github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f
go: extracting github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f
go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: extracting github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
go: extracting github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
go: finding github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f
go: finding github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: finding github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
ok
= go test ===============================================================
go: downloading golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: downloading github.com/docker/go-units v0.4.0
go: downloading github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: downloading k8s.io/apimachinery v0.17.3
go: downloading k8s.io/kubernetes v1.17.3
go: extracting github.com/docker/go-units v0.4.0
go: downloading k8s.io/client-go v0.17.3
go: extracting github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: extracting golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: extracting k8s.io/apimachinery v0.17.3
go: downloading github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: downloading github.com/shirou/gopsutil v2.18.12+incompatible
go: downloading cloud.google.com/go v0.45.1
go: downloading github.com/pkg/errors v0.9.1
go: extracting github.com/pkg/errors v0.9.1
go: extracting github.com/shirou/gopsutil v2.18.12+incompatible
go: extracting k8s.io/client-go v0.17.3
go: downloading github.com/spf13/pflag v1.0.5
go: extracting github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
go: extracting github.com/spf13/pflag v1.0.5
go: extracting github.com/cenkalti/backoff v2.2.1+incompatible
go: downloading k8s.io/api v0.17.3
go: downloading github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: downloading k8s.io/klog v1.0.0
go: downloading github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: extracting k8s.io/klog v1.0.0
go: downloading github.com/cheggaaa/pb v1.0.27
go: extracting github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: extracting github.com/cheggaaa/pb v1.0.27
go: downloading github.com/cheggaaa/pb/v3 v3.0.1
go: downloading gopkg.in/yaml.v2 v2.2.8
go: extracting cloud.google.com/go v0.45.1
go: extracting github.com/cheggaaa/pb/v3 v3.0.1
go: downloading github.com/spf13/viper v1.6.1
go: downloading github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: downloading github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: extracting github.com/spf13/viper v1.6.1
go: downloading github.com/mattn/go-runewidth v0.0.7
go: extracting gopkg.in/yaml.v2 v2.2.8
go: downloading github.com/spf13/cast v1.3.1
go: extracting github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: downloading github.com/google/gofuzz v1.0.0
go: extracting github.com/spf13/cast v1.3.1
go: downloading github.com/VividCortex/ewma v1.1.1
go: extracting github.com/google/gofuzz v1.0.0
go: downloading github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: extracting github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: downloading google.golang.org/api v0.9.0
go: extracting github.com/VividCortex/ewma v1.1.1
go: downloading golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: extracting github.com/mattn/go-runewidth v0.0.7
go: extracting golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: downloading github.com/magiconair/properties v1.8.1
go: extracting github.com/magiconair/properties v1.8.1
go: downloading github.com/davecgh/go-spew v1.1.1
go: extracting github.com/davecgh/go-spew v1.1.1
go: extracting github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: downloading github.com/mattn/go-colorable v0.1.2
go: extracting github.com/mattn/go-colorable v0.1.2
go: downloading github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: extracting github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: downloading github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: extracting k8s.io/api v0.17.3
go: extracting github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading gopkg.in/ini.v1 v1.51.1
go: extracting gopkg.in/ini.v1 v1.51.1
go: downloading github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: extracting github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: downloading github.com/imdario/mergo v0.3.8
go: extracting github.com/imdario/mergo v0.3.8
go: extracting github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: downloading github.com/spf13/cobra v1.0.0
go: extracting github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: extracting github.com/spf13/cobra v1.0.0
go: downloading github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: extracting github.com/spf13/jwalterweatherman v1.1.0
go: downloading github.com/mattn/go-isatty v0.0.11
go: extracting github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: downloading github.com/olekukonko/tablewriter v0.0.4
go: extracting github.com/mattn/go-isatty v0.0.11
go: downloading github.com/modern-go/reflect2 v1.0.1
go: downloading github.com/pelletier/go-toml v1.6.0
go: extracting github.com/pelletier/go-toml v1.6.0
go: extracting github.com/olekukonko/tablewriter v0.0.4
go: downloading sigs.k8s.io/yaml v1.1.0
go: extracting github.com/modern-go/reflect2 v1.0.1
go: extracting sigs.k8s.io/yaml v1.1.0
go: downloading golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: extracting golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: downloading github.com/blang/semver v3.5.0+incompatible
go: downloading github.com/googleapis/gax-go/v2 v2.0.5
go: downloading github.com/docker/distribution v2.7.1+incompatible
go: extracting github.com/googleapis/gax-go/v2 v2.0.5
go: downloading github.com/opencontainers/go-digest v1.0.0-rc1
go: extracting github.com/blang/semver v3.5.0+incompatible
go: extracting github.com/opencontainers/go-digest v1.0.0-rc1
go: downloading google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: extracting github.com/docker/distribution v2.7.1+incompatible
go: downloading github.com/fatih/color v1.7.0
go: downloading golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: extracting github.com/fatih/color v1.7.0
go: downloading github.com/hashicorp/hcl v1.0.0
go: extracting golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: downloading google.golang.org/grpc v1.26.0
go: extracting github.com/hashicorp/hcl v1.0.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: extracting github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/docker/go-connections v0.4.0
go: extracting github.com/docker/go-connections v0.4.0
go: downloading github.com/gogo/protobuf v1.3.1
go: extracting k8s.io/kubernetes v1.17.3
go: extracting google.golang.org/grpc v1.26.0
go: downloading github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: extracting github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: extracting github.com/gogo/protobuf v1.3.1
go: extracting google.golang.org/api v0.9.0
go: extracting google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: downloading golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: downloading sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.0+incompatible
go: extracting golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: downloading github.com/spf13/afero v1.2.2
go: extracting sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.0+incompatible
go: downloading github.com/fsnotify/fsnotify v1.4.7
go: downloading github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: downloading k8s.io/kubectl v0.17.3
go: downloading github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: downloading github.com/prometheus/client_golang v1.1.0
go: downloading github.com/otiai10/copy v1.0.2
go: downloading github.com/mitchellh/mapstructure v1.1.2
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef
go: extracting github.com/spf13/afero v1.2.2
go: extracting github.com/fsnotify/fsnotify v1.4.7
go: downloading golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: downloading github.com/miekg/dns v1.1.4
go: extracting gopkg.in/inf.v0 v0.9.1
go: extracting github.com/otiai10/copy v1.0.2
go: downloading k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: extracting github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: downloading github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: extracting github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: extracting github.com/prometheus/client_golang v1.1.0
go: extracting github.com/mitchellh/mapstructure v1.1.2
go: downloading golang.org/x/text v0.3.2
go: downloading github.com/googleapis/gnostic v0.3.0
go: extracting github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef
go: downloading github.com/json-iterator/go v1.1.8
go: downloading github.com/aws/aws-sdk-go v1.27.1
go: downloading k8s.io/component-base v0.17.3
go: extracting golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: extracting k8s.io/kubectl v0.17.3
go: extracting github.com/miekg/dns v1.1.4
go: downloading github.com/hashicorp/go-safetemp v1.0.0
go: downloading github.com/golang/protobuf v1.3.2
go: downloading github.com/prometheus/common v0.6.0
go: extracting k8s.io/component-base v0.17.3
go: extracting github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: downloading github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: extracting k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: extracting github.com/json-iterator/go v1.1.8
go: extracting github.com/googleapis/gnostic v0.3.0
go: downloading github.com/opencontainers/image-spec v1.0.1
go: downloading github.com/cpuguy83/go-md2man v1.0.10
go: downloading github.com/hashicorp/go-version v1.1.0
go: extracting github.com/hashicorp/go-safetemp v1.0.0
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: extracting github.com/cpuguy83/go-md2man v1.0.10
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0
go: extracting golang.org/x/text v0.3.2
go: extracting github.com/golang/protobuf v1.3.2
go: extracting github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: downloading github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: extracting github.com/prometheus/common v0.6.0
go: downloading github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: downloading github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: extracting github.com/hashicorp/go-version v1.1.0
go: extracting github.com/aws/aws-sdk-go v1.27.1
go: extracting github.com/opencontainers/image-spec v1.0.1
go: extracting github.com/mitchellh/go-homedir v1.1.0
go: downloading go.opencensus.io v0.22.0
go: downloading github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: downloading github.com/mitchellh/go-wordwrap v1.0.0
go: extracting github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: downloading k8s.io/kube-proxy v0.17.3
go: extracting github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: extracting github.com/cpuguy83/go-md2man/v2 v2.0.0
go: extracting github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: downloading github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: downloading github.com/prometheus/procfs v0.0.5
go: downloading github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: downloading k8s.io/cluster-bootstrap v0.17.3
go: extracting go.opencensus.io v0.22.0
go: extracting github.com/mitchellh/go-wordwrap v1.0.0
go: extracting github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: extracting k8s.io/kube-proxy v0.17.3
go: downloading github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: downloading github.com/hashicorp/go-cleanhttp v0.5.0
go: downloading github.com/mitchellh/go-testing-interface v1.0.0
go: extracting k8s.io/cluster-bootstrap v0.17.3
go: extracting github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: extracting github.com/prometheus/procfs v0.0.5
go: extracting github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: downloading github.com/hashicorp/golang-lru v0.5.3
go: downloading github.com/sirupsen/logrus v1.4.2
go: downloading github.com/ulikunitz/xz v0.5.5
go: downloading github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: extracting github.com/hashicorp/go-cleanhttp v0.5.0
go: extracting github.com/beorn7/perks v1.0.1
go: downloading github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
go: extracting github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: downloading github.com/docker/docker-credential-helpers v0.6.3
go: extracting github.com/mitchellh/go-testing-interface v1.0.0
go: downloading github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
go: extracting github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: downloading github.com/google/uuid v1.1.1
go: downloading k8s.io/kubelet v0.17.3
go: extracting github.com/hashicorp/golang-lru v0.5.3
go: downloading github.com/libvirt/libvirt-go v3.4.0+incompatible
go: extracting github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: extracting github.com/ulikunitz/xz v0.5.5
go: extracting github.com/sirupsen/logrus v1.4.2
go: extracting github.com/russross/blackfriday/v2 v2.0.1
go: downloading github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
go: downloading github.com/subosito/gotenv v1.2.0
go: extracting github.com/docker/docker-credential-helpers v0.6.3
go: extracting github.com/google/uuid v1.1.1
go: downloading k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
go: extracting github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
go: extracting github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
go: extracting github.com/libvirt/libvirt-go v3.4.0+incompatible
go: extracting k8s.io/kubelet v0.17.3
go: extracting github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: extracting github.com/shurcooL/sanitized_anchor_name v1.0.0
go: extracting github.com/matttproud/golang_protobuf_extensions v1.0.1
go: extracting github.com/subosito/gotenv v1.2.0
go: extracting k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
go: finding github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: finding github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
go: finding github.com/pkg/errors v0.9.1
go: finding github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: finding github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: finding github.com/docker/go-units v0.4.0
go: finding github.com/spf13/cobra v1.0.0
go: finding github.com/olekukonko/tablewriter v0.0.4
go: finding github.com/blang/semver v3.5.0+incompatible
go: finding k8s.io/client-go v0.17.3
go: finding github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: finding github.com/libvirt/libvirt-go v3.4.0+incompatible
go: finding github.com/spf13/viper v1.6.1
go: finding golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: finding github.com/mattn/go-runewidth v0.0.7
go: finding github.com/imdario/mergo v0.3.8
go: finding k8s.io/api v0.17.3
go: finding github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: finding github.com/mattn/go-isatty v0.0.11
go: finding github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: finding github.com/spf13/pflag v1.0.5
go: finding github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: finding k8s.io/apimachinery v0.17.3
go: finding github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: finding golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: finding github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: finding github.com/gogo/protobuf v1.3.1
go: finding github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: finding github.com/google/uuid v1.1.1
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: finding github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: finding github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: finding github.com/hashicorp/hcl v1.0.0
go: finding github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: finding github.com/magiconair/properties v1.8.1
go: finding github.com/shirou/gopsutil v2.18.12+incompatible
go: finding cloud.google.com/go v0.45.1
go: finding github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: finding github.com/google/gofuzz v1.0.0
go: finding github.com/mitchellh/mapstructure v1.1.2
go: finding github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: finding sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.0+incompatible
go: finding k8s.io/klog v1.0.0
go: finding golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: finding github.com/pelletier/go-toml v1.6.0
go: finding golang.org/x/text v0.3.2
go: finding github.com/docker/distribution v2.7.1+incompatible
go: finding github.com/otiai10/copy v1.0.2
go: finding github.com/cpuguy83/go-md2man/v2 v2.0.0
go: finding github.com/docker/docker-credential-helpers v0.6.3
go: finding github.com/cenkalti/backoff v2.2.1+incompatible
go: finding gopkg.in/inf.v0 v0.9.1
go: finding github.com/golang/protobuf v1.3.2
go: finding github.com/spf13/afero v1.2.2
go: finding github.com/googleapis/gnostic v0.3.0
go: finding github.com/spf13/cast v1.3.1
go: finding github.com/russross/blackfriday/v2 v2.0.1
go: finding golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: finding github.com/prometheus/client_golang v1.1.0
go: finding github.com/spf13/jwalterweatherman v1.1.0
go: finding github.com/googleapis/gax-go/v2 v2.0.5
go: finding k8s.io/kubernetes v1.17.3
go: finding gopkg.in/yaml.v2 v2.2.8
go: finding github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: finding github.com/cheggaaa/pb/v3 v3.0.1
go: finding google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: finding github.com/opencontainers/go-digest v1.0.0-rc1
go: finding golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: finding github.com/subosito/gotenv v1.2.0
go: finding google.golang.org/api v0.9.0
go: finding google.golang.org/grpc v1.26.0
go: finding github.com/shurcooL/sanitized_anchor_name v1.0.0
go: finding gopkg.in/ini.v1 v1.51.1
go: finding github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: finding go.opencensus.io v0.22.0
go: finding github.com/VividCortex/ewma v1.1.1
go: finding github.com/docker/go-connections v0.4.0
go: finding k8s.io/component-base v0.17.3
go: finding k8s.io/kubectl v0.17.3
go: finding github.com/json-iterator/go v1.1.8
go: finding github.com/beorn7/perks v1.0.1
go: finding github.com/fatih/color v1.7.0
go: finding github.com/modern-go/reflect2 v1.0.1
go: finding github.com/mattn/go-colorable v0.1.2
go: finding github.com/opencontainers/image-spec v1.0.1
go: finding github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: finding github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: finding golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: finding github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: finding github.com/hashicorp/golang-lru v0.5.3
go: finding github.com/prometheus/common v0.6.0
go: finding github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: finding github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: finding github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: finding github.com/davecgh/go-spew v1.1.1
go: finding github.com/sirupsen/logrus v1.4.2
go: finding k8s.io/cluster-bootstrap v0.17.3
go: finding github.com/prometheus/procfs v0.0.5
go: finding github.com/matttproud/golang_protobuf_extensions v1.0.1
go: finding sigs.k8s.io/yaml v1.1.0
go: finding k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: finding github.com/mitchellh/go-wordwrap v1.0.0
go: finding github.com/aws/aws-sdk-go v1.27.1
go: finding github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef
go: finding k8s.io/kube-proxy v0.17.3
go: finding k8s.io/kubelet v0.17.3
go: finding github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: finding github.com/hashicorp/go-cleanhttp v0.5.0
go: finding github.com/miekg/dns v1.1.4
go: finding github.com/hashicorp/go-safetemp v1.0.0
go: finding github.com/hashicorp/go-version v1.1.0
go: finding github.com/mitchellh/go-homedir v1.1.0
go: finding github.com/mitchellh/go-testing-interface v1.0.0
go: finding github.com/ulikunitz/xz v0.5.5
go: finding github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: finding k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
go: finding github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
go: finding github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: finding github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading github.com/evanphx/json-patch v4.5.0+incompatible
go: downloading github.com/pmezard/go-difflib v1.0.0
go: extracting github.com/evanphx/json-patch v4.5.0+incompatible
go: extracting github.com/pmezard/go-difflib v1.0.0
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding github.com/evanphx/json-patch v4.5.0+incompatible
# k8s.io/minikube/cmd/minikube/cmd [k8s.io/minikube/cmd/minikube/cmd.test]
cmd/minikube/cmd/podman-env.go:125: undefined: ec
FAIL	k8s.io/minikube/cmd/minikube/cmd [build failed]
ok  	k8s.io/minikube/cmd/minikube/cmd/config	0.577s	coverage: 21.6% of statements
ok  	k8s.io/minikube/pkg/addons	0.058s	coverage: 56.9% of statements
ok  	k8s.io/minikube/pkg/drivers	0.008s	coverage: 19.6% of statements
ok  	k8s.io/minikube/pkg/drivers/hyperkit	0.002s	coverage: 77.3% of statements
ok  	k8s.io/minikube/pkg/drivers/kvm	0.022s	coverage: 2.3% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper	0.736s	coverage: 55.7% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/bsutil	0.054s	coverage: 63.2% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/bsutil/ktmpl	0.012s	coverage: 100.0% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/images	0.007s	coverage: 88.9% of statements
ok  	k8s.io/minikube/pkg/minikube/cluster	0.062s	coverage: 18.4% of statements
ok  	k8s.io/minikube/pkg/minikube/command	0.010s	coverage: 3.8% of statements
ok  	k8s.io/minikube/pkg/minikube/config	0.206s	coverage: 67.3% of statements
ok  	k8s.io/minikube/pkg/minikube/cruntime	0.035s	coverage: 40.6% of statements
ok  	k8s.io/minikube/pkg/minikube/docker	0.012s	coverage: 20.8% of statements
ok  	k8s.io/minikube/pkg/minikube/driver	0.015s	coverage: 37.3% of statements
ok  	k8s.io/minikube/pkg/minikube/extract	0.010s	coverage: 58.8% of statements
ok  	k8s.io/minikube/pkg/minikube/kubeconfig	0.031s	coverage: 77.0% of statements
ok  	k8s.io/minikube/pkg/minikube/localpath	0.008s	coverage: 51.9% of statements
ok  	k8s.io/minikube/pkg/minikube/logs	0.031s	coverage: 1.3% of statements
ok  	k8s.io/minikube/pkg/minikube/machine	1.333s	coverage: 38.6% of statements
ok  	k8s.io/minikube/pkg/minikube/notify	0.011s	coverage: 92.9% of statements
ok  	k8s.io/minikube/pkg/minikube/out	0.056s	coverage: 67.4% of statements
ok  	k8s.io/minikube/pkg/minikube/perf	0.192s	coverage: 54.7% of statements
ok  	k8s.io/minikube/pkg/minikube/problem	0.007s	coverage: 91.7% of statements
ok  	k8s.io/minikube/pkg/minikube/proxy	0.014s	coverage: 77.0% of statements
ok  	k8s.io/minikube/pkg/minikube/registry	0.024s	coverage: 75.5% of statements
ok  	k8s.io/minikube/pkg/minikube/service	0.069s	coverage: 84.2% of statements
ok  	k8s.io/minikube/pkg/minikube/storageclass	0.023s	coverage: 100.0% of statements
ok  	k8s.io/minikube/pkg/minikube/sysinit	0.023s	coverage: 6.5% of statements
ok  	k8s.io/minikube/pkg/minikube/translate	0.010s	coverage: 10.5% of statements
ok  	k8s.io/minikube/pkg/minikube/tunnel	1.865s	coverage: 64.2% of statements
ok  	k8s.io/minikube/pkg/util	0.582s	coverage: 77.9% of statements
ok  	k8s.io/minikube/pkg/util/lock	0.006s	coverage: 18.2% of statements
ok  	k8s.io/minikube/pkg/util/retry	0.001s	coverage: 0.0% of statements
FAIL
Makefile:271: recipe for target 'test' failed
make: *** [test] Error 32
travis_time:end:152930a0:start=1590101615856141071,finish=1590101778387896303,duration=162531755232,event=script

3rd Build

View build log

make
cmake version 3.12.4
heroku version
heroku/7.22.7 linux-x64 node-v11.10.1
imagemagick version
Version: ImageMagick 6.8.9-9 Q16 x86_64 2018-09-28 http://www.imagemagick.org
md5deep version
4.4
mercurial version
version 4.8
mysql version
mysql  Ver 14.14 Distrib 5.7.25, for Linux (x86_64) using  EditLine wrapper
openssl version
OpenSSL 1.0.2g  1 Mar 2016
packer version
1.3.3
postgresql client version
psql (PostgreSQL) 10.7 (Ubuntu 10.7-1.pgdg16.04+1)
ragel version
Ragel State Machine Compiler version 6.8 Feb 2013
sudo version
1.8.16
gzip version
gzip 1.6
zip version
Zip 3.0
vim version
VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Nov 24 2016 16:44:48)
iptables version
iptables v1.6.0
curl version
curl 7.47.0 (x86_64-pc-linux-gnu) libcurl/7.47.0 GnuTLS/3.4.10 zlib/1.2.8 libidn/1.32 librtmp/2.3
wget version
GNU Wget 1.17.1 built on linux-gnu.
rsync version
rsync  version 3.1.1  protocol version 31
gimme version
v1.5.3
nvm version
0.34.0
perlbrew version
/home/travis/perl5/perlbrew/bin/perlbrew  - App::perlbrew/0.86
phpenv version
rbenv 1.1.2
rvm version
rvm 1.29.7 (latest) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io]
default ruby version
ruby 2.5.3p105 (2018-10-18 revision 65156) [x86_64-linux]
CouchDB version
couchdb 1.6.1
ElasticSearch version
5.5.0
Installed Firefox version
firefox 63.0.1
MongoDB version
MongoDB 4.0.7
PhantomJS version
2.1.1
Pre-installed PostgreSQL versions
9.4.21
9.5.16
9.6.12
Redis version
redis-server 5.0.4
Pre-installed Go versions
1.11.1
mvn version
Apache Maven 3.6.0 (97c98ec64a1fdfee7767ce5ffb20918da4f719f3; 2018-10-24T18:41:47Z)
gradle version
Gradle 4.10.2!
lein version
Leiningen 2.9.1 on Java 11.0.2 OpenJDK 64-Bit Server VM
Pre-installed Node.js versions
v10.15.3
v11.0.0
v4.9.1
v6.17.0
v8.12.0
v8.15.1
v8.9
phpenv versions
  system
  5.6
  5.6.40
  7.1
  7.1.27
  7.2
* 7.2.15 (set by /home/travis/.phpenv/version)
  hhvm
  hhvm-stable
composer --version
Composer version 1.8.4 2019-02-11 10:52:10
Pre-installed Ruby versions
ruby-2.3.8
ruby-2.4.5
ruby-2.5.3
travis_fold:end:system_info

travis_time:end:001fbf31:start=1590101647001580685,finish=1590101647008044991,duration=6464306,event=show_system_info
travis_time:start:094378e0
travis_time:end:094378e0:start=1590101647010944896,finish=1590101647025983590,duration=15038694,event=rm_riak_source
travis_time:start:35c28cc6
travis_time:end:35c28cc6:start=1590101647029116220,finish=1590101647033917900,duration=4801680,event=fix_rwky_redis
travis_time:start:2e1d575f
travis_time:end:2e1d575f:start=1590101647037070171,finish=1590101647420212797,duration=383142626,event=wait_for_network
travis_time:start:33c140d9
travis_time:end:33c140d9:start=1590101647423362626,finish=1590101647633368318,duration=210005692,event=update_apt_keys
travis_time:start:0b8d4a99
travis_time:end:0b8d4a99:start=1590101647636283119,finish=1590101647687117825,duration=50834706,event=fix_hhvm_source
travis_time:start:13fad610
travis_time:end:13fad610:start=1590101647690232158,finish=1590101647692934089,duration=2701931,event=update_mongo_arch
travis_time:start:0f60f11d
travis_time:end:0f60f11d:start=1590101647695744594,finish=1590101647738196735,duration=42452141,event=fix_sudo_enabled_trusty
travis_time:start:366770b4
travis_time:end:366770b4:start=1590101647741798870,finish=1590101647744249556,duration=2450686,event=update_glibc
travis_time:start:00948360
travis_time:end:00948360:start=1590101647747190699,finish=1590101647755075229,duration=7884530,event=clean_up_path
travis_time:start:0ea99605
travis_time:end:0ea99605:start=1590101647758007713,finish=1590101647765722885,duration=7715172,event=fix_resolv_conf
travis_time:start:23292ebb
travis_time:end:23292ebb:start=1590101647768524043,finish=1590101647777644950,duration=9120907,event=fix_etc_hosts
travis_time:start:1acecabe
travis_time:end:1acecabe:start=1590101647780648259,finish=1590101647791679264,duration=11031005,event=fix_mvn_settings_xml
travis_time:start:10184b9e
travis_time:end:10184b9e:start=1590101647794609636,finish=1590101647803643876,duration=9034240,event=no_ipv6_localhost
travis_time:start:006dcba8
travis_time:end:006dcba8:start=1590101647806794266,finish=1590101647809038046,duration=2243780,event=fix_etc_mavenrc
travis_time:start:0e897e02
travis_time:end:0e897e02:start=1590101647811785382,finish=1590101647814738770,duration=2953388,event=fix_wwdr_certificate
travis_time:start:09f31996
travis_time:end:09f31996:start=1590101647817455737,finish=1590101647840409809,duration=22954072,event=put_localhost_first
travis_time:start:0ad58681
travis_time:end:0ad58681:start=1590101647843477158,finish=1590101647846485637,duration=3008479,event=home_paths
travis_time:start:025d6c48
travis_time:end:025d6c48:start=1590101647849379603,finish=1590101647860823809,duration=11444206,event=disable_initramfs
travis_time:start:05baf043
travis_time:end:05baf043:start=1590101647863675994,finish=1590101648194331388,duration=330655394,event=disable_ssh_roaming
travis_time:start:0e08a50e
travis_time:end:0e08a50e:start=1590101648197441330,finish=1590101648199689173,duration=2247843,event=debug_tools
travis_time:start:14df1860
travis_time:end:14df1860:start=1590101648202478220,finish=1590101648205472344,duration=2994124,event=uninstall_oclint
travis_time:start:02307fb2
travis_time:end:02307fb2:start=1590101648208144093,finish=1590101648210901405,duration=2757312,event=rvm_use
travis_time:start:2a977cb2
travis_time:end:2a977cb2:start=1590101648213663493,finish=1590101648221194805,duration=7531312,event=rm_etc_boto_cfg
travis_time:start:12cf3ecf
travis_time:end:12cf3ecf:start=1590101648224089250,finish=1590101648226857351,duration=2768101,event=rm_oraclejdk8_symlink
travis_time:start:04ce1536
travis_time:end:04ce1536:start=1590101648229803928,finish=1590101648333411115,duration=103607187,event=enable_i386
travis_time:start:0a0caf78
travis_time:end:0a0caf78:start=1590101648336530234,finish=1590101648342269355,duration=5739121,event=update_rubygems
travis_time:start:0202326f
travis_time:end:0202326f:start=1590101648345284249,finish=1590101649135242873,duration=789958624,event=ensure_path_components
travis_time:start:195134c2
travis_time:end:195134c2:start=1590101649138475322,finish=1590101649140790681,duration=2315359,event=redefine_curl
travis_time:start:009a1515
travis_time:end:009a1515:start=1590101649143655726,finish=1590101649145849565,duration=2193839,event=nonblock_pipe
travis_time:start:0af44360
travis_time:end:0af44360:start=1590101649148649558,finish=1590101655181652043,duration=6033002485,event=apt_get_update
travis_time:start:011cdf64
travis_time:end:011cdf64:start=1590101655184775817,finish=1590101655186872250,duration=2096433,event=deprecate_xcode_64
travis_time:start:0590bcb0
travis_time:end:0590bcb0:start=1590101655189667265,finish=1590101657746822371,duration=2557155106,event=update_heroku
travis_time:start:2832babe
travis_time:end:2832babe:start=1590101657749826075,finish=1590101657751939263,duration=2113188,event=shell_session_update
travis_time:start:0913e57e
travis_fold:start:docker_mtu
travis_fold:end:docker_mtu
travis_time:end:0913e57e:start=1590101657754740204,finish=1590101660018788627,duration=2264048423,event=set_docker_mtu
travis_time:start:06151773
travis_fold:start:resolvconf
travis_fold:end:resolvconf
travis_time:end:06151773:start=1590101660022124589,finish=1590101660088705482,duration=66580893,event=resolvconf
travis_time:start:1c9cd5c6
travis_time:end:1c9cd5c6:start=1590101660092506746,finish=1590101660232331483,duration=139824737,event=maven_central_mirror
travis_time:start:06367d00
travis_time:end:06367d00:start=1590101660235461986,finish=1590101660327887080,duration=92425094,event=maven_https
travis_time:start:27d3c7f4
travis_time:end:27d3c7f4:start=1590101660331198379,finish=1590101660333418597,duration=2220218,event=fix_ps4
Updating gimme
travis_time:start:087689c7

travis_fold:start:git.checkout
travis_time:start:0e29ecfc
$ git clone --depth=50 https://github.com/kubernetes/minikube.git kubernetes/minikube
Cloning into 'kubernetes/minikube'...
remote: Enumerating objects: 11099, done.
remote: Counting objects:   0% (1/11099)
remote: Counting objects:   1% (111/11099)
remote: Counting objects:   2% (222/11099)
remote: Counting objects:   3% (333/11099)
remote: Counting objects:   4% (444/11099)
remote: Counting objects:   5% (555/11099)
remote: Counting objects:   6% (666/11099)
remote: Counting objects:   7% (777/11099)
remote: Counting objects:   8% (888/11099)
remote: Counting objects:   9% (999/11099)
remote: Counting objects:  10% (1110/11099)
remote: Counting objects:  11% (1221/11099)
remote: Counting objects:  12% (1332/11099)
remote: Counting objects:  13% (1443/11099)
remote: Counting objects:  14% (1554/11099)
remote: Counting objects:  15% (1665/11099)
remote: Counting objects:  16% (1776/11099)
remote: Counting objects:  17% (1887/11099)
remote: Counting objects:  18% (1998/11099)
remote: Counting objects:  19% (2109/11099)
remote: Counting objects:  20% (2220/11099)
remote: Counting objects:  21% (2331/11099)
remote: Counting objects:  22% (2442/11099)
remote: Counting objects:  23% (2553/11099)
remote: Counting objects:  24% (2664/11099)
remote: Counting objects:  25% (2775/11099)
remote: Counting objects:  26% (2886/11099)
remote: Counting objects:  27% (2997/11099)
remote: Counting objects:  28% (3108/11099)
remote: Counting objects:  29% (3219/11099)
remote: Counting objects:  30% (3330/11099)
remote: Counting objects:  31% (3441/11099)
remote: Counting objects:  32% (3552/11099)
remote: Counting objects:  33% (3663/11099)
remote: Counting objects:  34% (3774/11099)
remote: Counting objects:  35% (3885/11099)
remote: Counting objects:  36% (3996/11099)
remote: Counting objects:  37% (4107/11099)
remote: Counting objects:  38% (4218/11099)
remote: Counting objects:  39% (4329/11099)
remote: Counting objects:  40% (4440/11099)
remote: Counting objects:  41% (4551/11099)
remote: Counting objects:  42% (4662/11099)
remote: Counting objects:  43% (4773/11099)
remote: Counting objects:  44% (4884/11099)
remote: Counting objects:  45% (4995/11099)
remote: Counting objects:  46% (5106/11099)
remote: Counting objects:  47% (5217/11099)
remote: Counting objects:  48% (5328/11099)
remote: Counting objects:  49% (5439/11099)
remote: Counting objects:  50% (5550/11099)
remote: Counting objects:  51% (5661/11099)
remote: Counting objects:  52% (5772/11099)
remote: Counting objects:  53% (5883/11099)
remote: Counting objects:  54% (5994/11099)
remote: Counting objects:  55% (6105/11099)
remote: Counting objects:  56% (6216/11099)
remote: Counting objects:  57% (6327/11099)
remote: Counting objects:  58% (6438/11099)
remote: Counting objects:  59% (6549/11099)
remote: Counting objects:  60% (6660/11099)
remote: Counting objects:  61% (6771/11099)
remote: Counting objects:  62% (6882/11099)
remote: Counting objects:  63% (6993/11099)
remote: Counting objects:  64% (7104/11099)
remote: Counting objects:  65% (7215/11099)
remote: Counting objects:  66% (7326/11099)
remote: Counting objects:  67% (7437/11099)
remote: Counting objects:  68% (7548/11099)
remote: Counting objects:  69% (7659/11099)
remote: Counting objects:  70% (7770/11099)
remote: Counting objects:  71% (7881/11099)
remote: Counting objects:  72% (7992/11099)
remote: Counting objects:  73% (8103/11099)
remote: Counting objects:  74% (8214/11099)
remote: Counting objects:  75% (8325/11099)
remote: Counting objects:  76% (8436/11099)
remote: Counting objects:  77% (8547/11099)
remote: Counting objects:  78% (8658/11099)
remote: Counting objects:  79% (8769/11099)
remote: Counting objects:  80% (8880/11099)
remote: Counting objects:  81% (8991/11099)
remote: Counting objects:  82% (9102/11099)
remote: Counting objects:  83% (9213/11099)
remote: Counting objects:  84% (9324/11099)
remote: Counting objects:  85% (9435/11099)
remote: Counting objects:  86% (9546/11099)
remote: Counting objects:  87% (9657/11099)
remote: Counting objects:  88% (9768/11099)
remote: Counting objects:  89% (9879/11099)
remote: Counting objects:  90% (9990/11099)
remote: Counting objects:  91% (10101/11099)
remote: Counting objects:  92% (10212/11099)
remote: Counting objects:  93% (10323/11099)
remote: Counting objects:  94% (10434/11099)
remote: Counting objects:  95% (10545/11099)
remote: Counting objects:  96% (10656/11099)
remote: Counting objects:  97% (10767/11099)
remote: Counting objects:  98% (10878/11099)
remote: Counting objects:  99% (10989/11099)
remote: Counting objects: 100% (11099/11099)
remote: Counting objects: 100% (11099/11099), done.
remote: Compressing objects:   0% (1/4274)
remote: Compressing objects:   1% (43/4274)
remote: Compressing objects:   2% (86/4274)
remote: Compressing objects:   3% (129/4274)
remote: Compressing objects:   4% (171/4274)
remote: Compressing objects:   5% (214/4274)
remote: Compressing objects:   6% (257/4274)
remote: Compressing objects:   7% (300/4274)
remote: Compressing objects:   8% (342/4274)
remote: Compressing objects:   9% (385/4274)
remote: Compressing objects:  10% (428/4274)
remote: Compressing objects:  11% (471/4274)
remote: Compressing objects:  12% (513/4274)
remote: Compressing objects:  13% (556/4274)
remote: Compressing objects:  14% (599/4274)
remote: Compressing objects:  15% (642/4274)
remote: Compressing objects:  16% (684/4274)
remote: Compressing objects:  17% (727/4274)
remote: Compressing objects:  18% (770/4274)
remote: Compressing objects:  19% (813/4274)
remote: Compressing objects:  20% (855/4274)
remote: Compressing objects:  21% (898/4274)
remote: Compressing objects:  22% (941/4274)
remote: Compressing objects:  23% (984/4274)
remote: Compressing objects:  24% (1026/4274)
remote: Compressing objects:  25% (1069/4274)
remote: Compressing objects:  26% (1112/4274)
remote: Compressing objects:  27% (1154/4274)
remote: Compressing objects:  28% (1197/4274)
remote: Compressing objects:  29% (1240/4274)
remote: Compressing objects:  30% (1283/4274)
remote: Compressing objects:  31% (1325/4274)
remote: Compressing objects:  32% (1368/4274)
remote: Compressing objects:  33% (1411/4274)
remote: Compressing objects:  34% (1454/4274)
remote: Compressing objects:  35% (1496/4274)
remote: Compressing objects:  36% (1539/4274)
remote: Compressing objects:  37% (1582/4274)
remote: Compressing objects:  38% (1625/4274)
remote: Compressing objects:  39% (1667/4274)
remote: Compressing objects:  40% (1710/4274)
remote: Compressing objects:  41% (1753/4274)
remote: Compressing objects:  42% (1796/4274)
remote: Compressing objects:  43% (1838/4274)
remote: Compressing objects:  44% (1881/4274)
remote: Compressing objects:  45% (1924/4274)
remote: Compressing objects:  46% (1967/4274)
remote: Compressing objects:  47% (2009/4274)
remote: Compressing objects:  48% (2052/4274)
remote: Compressing objects:  49% (2095/4274)
remote: Compressing objects:  50% (2137/4274)
remote: Compressing objects:  51% (2180/4274)
remote: Compressing objects:  52% (2223/4274)
remote: Compressing objects:  53% (2266/4274)
remote: Compressing objects:  54% (2308/4274)
remote: Compressing objects:  55% (2351/4274)
remote: Compressing objects:  56% (2394/4274)
remote: Compressing objects:  57% (2437/4274)
remote: Compressing objects:  58% (2479/4274)
remote: Compressing objects:  59% (2522/4274)
remote: Compressing objects:  60% (2565/4274)
remote: Compressing objects:  61% (2608/4274)
remote: Compressing objects:  62% (2650/4274)
remote: Compressing objects:  63% (2693/4274)
remote: Compressing objects:  64% (2736/4274)
remote: Compressing objects:  65% (2779/4274)
remote: Compressing objects:  66% (2821/4274)
remote: Compressing objects:  67% (2864/4274)
remote: Compressing objects:  68% (2907/4274)
remote: Compressing objects:  69% (2950/4274)
remote: Compressing objects:  70% (2992/4274)
remote: Compressing objects:  71% (3035/4274)
remote: Compressing objects:  72% (3078/4274)
remote: Compressing objects:  73% (3121/4274)
remote: Compressing objects:  74% (3163/4274)
remote: Compressing objects:  75% (3206/4274)
remote: Compressing objects:  76% (3249/4274)
remote: Compressing objects:  77% (3291/4274)
remote: Compressing objects:  78% (3334/4274)
remote: Compressing objects:  79% (3377/4274)
remote: Compressing objects:  80% (3420/4274)
remote: Compressing objects:  81% (3462/4274)
remote: Compressing objects:  82% (3505/4274)
remote: Compressing objects:  83% (3548/4274)
remote: Compressing objects:  84% (3591/4274)
remote: Compressing objects:  85% (3633/4274)
remote: Compressing objects:  86% (3676/4274)
remote: Compressing objects:  87% (3719/4274)
remote: Compressing objects:  88% (3762/4274)
remote: Compressing objects:  89% (3804/4274)
remote: Compressing objects:  90% (3847/4274)
remote: Compressing objects:  91% (3890/4274)
remote: Compressing objects:  92% (3933/4274)
remote: Compressing objects:  93% (3975/4274)
remote: Compressing objects:  94% (4018/4274)
remote: Compressing objects:  95% (4061/4274)
remote: Compressing objects:  96% (4104/4274)
remote: Compressing objects:  97% (4146/4274)
remote: Compressing objects:  98% (4189/4274)
remote: Compressing objects:  99% (4232/4274)
remote: Compressing objects: 100% (4274/4274)
remote: Compressing objects: 100% (4274/4274), done.
Receiving objects:   0% (1/11099)   
Receiving objects:   1% (111/11099)   
Receiving objects:   2% (222/11099)   
Receiving objects:   3% (333/11099)   
Receiving objects:   4% (444/11099)   
Receiving objects:   5% (555/11099)   
Receiving objects:   6% (666/11099)   
Receiving objects:   7% (777/11099)   
Receiving objects:   8% (888/11099)   
Receiving objects:   9% (999/11099)   
Receiving objects:  10% (1110/11099)   
Receiving objects:  11% (1221/11099)   
Receiving objects:  12% (1332/11099)   
Receiving objects:  13% (1443/11099)   
Receiving objects:  14% (1554/11099)   
Receiving objects:  15% (1665/11099)   
Receiving objects:  16% (1776/11099)   
Receiving objects:  17% (1887/11099)   
Receiving objects:  18% (1998/11099)   
Receiving objects:  19% (2109/11099)   
Receiving objects:  20% (2220/11099)   
Receiving objects:  21% (2331/11099)   
Receiving objects:  22% (2442/11099)   
Receiving objects:  23% (2553/11099)   
Receiving objects:  24% (2664/11099)   
Receiving objects:  25% (2775/11099)   
Receiving objects:  26% (2886/11099)   
Receiving objects:  27% (2997/11099)   
Receiving objects:  28% (3108/11099)   
Receiving objects:  29% (3219/11099)   
Receiving objects:  30% (3330/11099)   
Receiving objects:  31% (3441/11099)   
Receiving objects:  32% (3552/11099)   
Receiving objects:  33% (3663/11099)   
Receiving objects:  34% (3774/11099)   
Receiving objects:  35% (3885/11099)   
Receiving objects:  36% (3996/11099)   
Receiving objects:  37% (4107/11099)   
Receiving objects:  38% (4218/11099)   
Receiving objects:  39% (4329/11099)   
Receiving objects:  40% (4440/11099)   
Receiving objects:  41% (4551/11099)   
Receiving objects:  42% (4662/11099)   
Receiving objects:  43% (4773/11099)   
Receiving objects:  44% (4884/11099)   
Receiving objects:  45% (4995/11099)   
Receiving objects:  46% (5106/11099)   
Receiving objects:  47% (5217/11099)   
Receiving objects:  48% (5328/11099)   
Receiving objects:  49% (5439/11099)   
Receiving objects:  50% (5550/11099)   
Receiving objects:  51% (5661/11099)   
Receiving objects:  52% (5772/11099)   
Receiving objects:  53% (5883/11099)   
Receiving objects:  54% (5994/11099)   
Receiving objects:  55% (6105/11099)   
Receiving objects:  56% (6216/11099)   
Receiving objects:  57% (6327/11099)   
Receiving objects:  58% (6438/11099)   
Receiving objects:  59% (6549/11099)   
Receiving objects:  60% (6660/11099)   
Receiving objects:  61% (6771/11099)   
Receiving objects:  62% (6882/11099)   
Receiving objects:  63% (6993/11099)   
Receiving objects:  64% (7104/11099)   
Receiving objects:  65% (7215/11099)   
Receiving objects:  66% (7326/11099)   
Receiving objects:  67% (7437/11099)   
Receiving objects:  67% (7538/11099), 26.57 MiB | 26.57 MiB/s   
Receiving objects:  67% (7540/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  68% (7548/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  69% (7659/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  70% (7770/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  71% (7881/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  72% (7992/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  73% (8103/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  74% (8214/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  75% (8325/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  76% (8436/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  77% (8547/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  78% (8658/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  79% (8769/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  80% (8880/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  81% (8991/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  82% (9102/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  83% (9213/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  84% (9324/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  85% (9435/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  86% (9546/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  87% (9657/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  88% (9768/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  89% (9879/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  90% (9990/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  91% (10101/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  92% (10212/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  93% (10323/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  94% (10434/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  95% (10545/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  96% (10656/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  97% (10767/11099), 59.42 MiB | 29.70 MiB/s   
remote: Total 11099 (delta 7433), reused 9224 (delta 6161), pack-reused 0
Receiving objects:  98% (10878/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects:  99% (10989/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects: 100% (11099/11099), 59.42 MiB | 29.70 MiB/s   
Receiving objects: 100% (11099/11099), 66.20 MiB | 31.48 MiB/s, done.
Resolving deltas:   0% (0/7433)   
Resolving deltas:   3% (288/7433)   
Resolving deltas:   5% (375/7433)   
Resolving deltas:   6% (447/7433)   
Resolving deltas:   7% (566/7433)   
Resolving deltas:   8% (637/7433)   
Resolving deltas:   9% (681/7433)   
Resolving deltas:  10% (746/7433)   
Resolving deltas:  11% (839/7433)   
Resolving deltas:  13% (969/7433)   
Resolving deltas:  14% (1041/7433)   
Resolving deltas:  15% (1169/7433)   
Resolving deltas:  16% (1227/7433)   
Resolving deltas:  18% (1355/7433)   
Resolving deltas:  19% (1416/7433)   
Resolving deltas:  20% (1514/7433)   
Resolving deltas:  21% (1580/7433)   
Resolving deltas:  22% (1636/7433)   
Resolving deltas:  29% (2171/7433)   
Resolving deltas:  30% (2240/7433)   
Resolving deltas:  31% (2310/7433)   
Resolving deltas:  32% (2444/7433)   
Resolving deltas:  34% (2565/7433)   
Resolving deltas:  35% (2619/7433)   
Resolving deltas:  37% (2755/7433)   
Resolving deltas:  38% (2883/7433)   
Resolving deltas:  39% (2913/7433)   
Resolving deltas:  42% (3153/7433)   
Resolving deltas:  44% (3322/7433)   
Resolving deltas:  45% (3347/7433)   
Resolving deltas:  46% (3425/7433)   
Resolving deltas:  47% (3502/7433)   
Resolving deltas:  48% (3600/7433)   
Resolving deltas:  50% (3731/7433)   
Resolving deltas:  51% (3792/7433)   
Resolving deltas:  52% (3916/7433)   
Resolving deltas:  53% (3940/7433)   
Resolving deltas:  54% (4027/7433)   
Resolving deltas:  55% (4097/7433)   
Resolving deltas:  56% (4164/7433)   
Resolving deltas:  57% (4242/7433)   
Resolving deltas:  58% (4318/7433)   
Resolving deltas:  59% (4398/7433)   
Resolving deltas:  60% (4465/7433)   
Resolving deltas:  61% (4552/7433)   
Resolving deltas:  62% (4610/7433)   
Resolving deltas:  63% (4700/7433)   
Resolving deltas:  64% (4767/7433)   
Resolving deltas:  65% (4832/7433)   
Resolving deltas:  66% (4907/7433)   
Resolving deltas:  67% (4986/7433)   
Resolving deltas:  68% (5056/7433)   
Resolving deltas:  69% (5135/7433)   
Resolving deltas:  70% (5215/7433)   
Resolving deltas:  71% (5278/7433)   
Resolving deltas:  72% (5361/7433)   
Resolving deltas:  74% (5512/7433)   
Resolving deltas:  75% (5586/7433)   
Resolving deltas:  77% (5781/7433)   
Resolving deltas:  82% (6157/7433)   
Resolving deltas:  83% (6173/7433)   
Resolving deltas:  84% (6248/7433)   
Resolving deltas:  85% (6319/7433)   
Resolving deltas:  86% (6399/7433)   
Resolving deltas:  87% (6467/7433)   
Resolving deltas:  88% (6548/7433)   
Resolving deltas:  89% (6628/7433)   
Resolving deltas:  90% (6690/7433)   
Resolving deltas:  91% (6774/7433)   
Resolving deltas:  92% (6839/7433)   
Resolving deltas:  93% (6913/7433)   
Resolving deltas:  94% (6988/7433)   
Resolving deltas:  95% (7071/7433)   
Resolving deltas:  96% (7137/7433)   
Resolving deltas:  97% (7223/7433)   
Resolving deltas:  98% (7292/7433)   
Resolving deltas:  99% (7360/7433)   
Resolving deltas: 100% (7433/7433)   
Resolving deltas: 100% (7433/7433), done.
Checking out files:  93% (914/973)   
Checking out files:  94% (915/973)   
Checking out files:  95% (925/973)   
Checking out files:  96% (935/973)   
Checking out files:  97% (944/973)   
Checking out files:  98% (954/973)   
Checking out files:  99% (964/973)   
Checking out files: 100% (973/973)   
Checking out files: 100% (973/973), done.
travis_time:end:0e29ecfc:start=1590101664868672771,finish=1590101669796888461,duration=4928215690,event=checkout
$ cd kubernetes/minikube
travis_time:start:070ba488
$ git fetch origin +refs/pull/8239/merge:
remote: Enumerating objects: 31, done.
remote: Counting objects:   3% (1/29)
remote: Counting objects:   6% (2/29)
remote: Counting objects:  10% (3/29)
remote: Counting objects:  13% (4/29)
remote: Counting objects:  17% (5/29)
remote: Counting objects:  20% (6/29)
remote: Counting objects:  24% (7/29)
remote: Counting objects:  27% (8/29)
remote: Counting objects:  31% (9/29)
remote: Counting objects:  34% (10/29)
remote: Counting objects:  37% (11/29)
remote: Counting objects:  41% (12/29)
remote: Counting objects:  44% (13/29)
remote: Counting objects:  48% (14/29)
remote: Counting objects:  51% (15/29)
remote: Counting objects:  55% (16/29)
remote: Counting objects:  58% (17/29)
remote: Counting objects:  62% (18/29)
remote: Counting objects:  65% (19/29)
remote: Counting objects:  68% (20/29)
remote: Counting objects:  72% (21/29)
remote: Counting objects:  75% (22/29)
remote: Counting objects:  79% (23/29)
remote: Counting objects:  82% (24/29)
remote: Counting objects:  86% (25/29)
remote: Counting objects:  89% (26/29)
remote: Counting objects:  93% (27/29)
remote: Counting objects:  96% (28/29)
remote: Counting objects: 100% (29/29)
remote: Counting objects: 100% (29/29), done.
remote: Compressing objects:   9% (1/11)
remote: Compressing objects:  18% (2/11)
remote: Compressing objects:  27% (3/11)
remote: Compressing objects:  36% (4/11)
remote: Compressing objects:  45% (5/11)
remote: Compressing objects:  54% (6/11)
remote: Compressing objects:  63% (7/11)
remote: Compressing objects:  72% (8/11)
remote: Compressing objects:  81% (9/11)
remote: Compressing objects:  90% (10/11)
remote: Compressing objects: 100% (11/11)
remote: Compressing objects: 100% (11/11), done.
remote: Total 19 (delta 13), reused 12 (delta 8), pack-reused 0
Unpacking objects:   5% (1/19)   
Unpacking objects:  10% (2/19)   
Unpacking objects:  15% (3/19)   
Unpacking objects:  21% (4/19)   
Unpacking objects:  26% (5/19)   
Unpacking objects:  31% (6/19)   
Unpacking objects:  36% (7/19)   
Unpacking objects:  42% (8/19)   
Unpacking objects:  47% (9/19)   
Unpacking objects:  52% (10/19)   
Unpacking objects:  57% (11/19)   
Unpacking objects:  63% (12/19)   
Unpacking objects:  68% (13/19)   
Unpacking objects:  73% (14/19)   
Unpacking objects:  78% (15/19)   
Unpacking objects:  84% (16/19)   
Unpacking objects:  89% (17/19)   
Unpacking objects:  94% (18/19)   
Unpacking objects: 100% (19/19)   
Unpacking objects: 100% (19/19), done.
From https://github.com/kubernetes/minikube
 * branch            refs/pull/8239/merge -> FETCH_HEAD
travis_time:end:070ba488:start=1590101669800501734,finish=1590101670308392178,duration=507890444,event=checkout
$ git checkout -qf FETCH_HEAD
travis_fold:end:git.checkout

travis_fold:start:git.submodule
travis_time:start:02ae89d4
$ git submodule update --init --recursive
Submodule 'site/themes/docsy' (https://github.com/google/docsy.git) registered for path 'site/themes/docsy'
Cloning into '/home/travis/build/kubernetes/minikube/site/themes/docsy'...
Submodule path 'site/themes/docsy': checked out 'dd303fd19cc13ffc01bcbe86ff54f21e423d04de'
Submodule 'assets/vendor/Font-Awesome' (https://github.com/FortAwesome/Font-Awesome.git) registered for path 'site/themes/docsy/assets/vendor/Font-Awesome'
Submodule 'assets/vendor/bootstrap' (https://github.com/twbs/bootstrap.git) registered for path 'site/themes/docsy/assets/vendor/bootstrap'
Cloning into '/home/travis/build/kubernetes/minikube/site/themes/docsy/assets/vendor/Font-Awesome'...
Cloning into '/home/travis/build/kubernetes/minikube/site/themes/docsy/assets/vendor/bootstrap'...
Submodule path 'site/themes/docsy/assets/vendor/Font-Awesome': checked out '538a5bc4cf7989821d052e3ff919e2bead07021c'
Submodule path 'site/themes/docsy/assets/vendor/bootstrap': checked out '3b558734382ce58b51e5fc676453bfd53bba9201'
travis_time:end:02ae89d4:start=1590101671195468532,finish=1590101694215747939,duration=23020279407,event=checkout
travis_fold:end:git.submodule
travis_time:end:02ae89d4:start=1590101671195468532,finish=1590101694218043197,duration=23022574665,event=checkout
$ travis_export_go 1.13.8 github.com/kubernetes/minikube
travis_time:start:1afa7020

Setting environment variables from .travis.yml
$ export GOPROXY=https://proxy.golang.org

travis_time:end:1afa7020:start=1590101694223476042,finish=1590101694228792940,duration=5316898,event=env
travis_time:start:2c6b2d98
$ travis_setup_go
go version go1.13.8 linux/amd64
$ export GOPATH="/home/travis/gopath"
$ export PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin"
$ export GO111MODULE="auto"
travis_time:end:2c6b2d98:start=1590101694231995193,finish=1590101724015436049,duration=29783440856,event=
$ gimme version
v1.5.4
$ go version
go version go1.13.8 linux/amd64
travis_fold:start:go.env
$ go env
GO111MODULE="auto"
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/travis/.cache/go-build"
GOENV="/home/travis/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY=""
GONOSUMDB=""
GOOS="linux"
GOPATH="/home/travis/gopath"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org"
GOROOT="/home/travis/.gimme/versions/go1.13.8.linux.amd64"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/home/travis/.gimme/versions/go1.13.8.linux.amd64/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD="/home/travis/gopath/src/github.com/kubernetes/minikube/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build000878723=/tmp/go-build -gno-record-gcc-switches"
travis_fold:end:go.env
travis_fold:start:install
travis_time:start:0b88fdc3
$ travis_install_go_dependencies 1.13.8 -v
Makefile detected
travis_time:end:0b88fdc3:start=1590101724367445664,finish=1590101724370219569,duration=2773905,event=install
travis_fold:end:install
travis_time:start:2619b768
$ make
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/assets/assets.go -pkg assets deploy/addons/...
gofmt -s -w pkg/minikube/assets/assets.go
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
/home/travis/gopath/bin/go-bindata
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/translate/translations.go -pkg translate translations/...
gofmt -s -w pkg/minikube/translate/translations.go
go build  -tags "container_image_ostree_stub containers_image_openpgp go_getter_nos3 go_getter_nogcs" -ldflags="-X k8s.io/minikube/pkg/version.version=v1.10.1 -X k8s.io/minikube/pkg/version.isoVersion=v1.10.0 -X k8s.io/minikube/pkg/version.isoPath=minikube/iso -X k8s.io/minikube/pkg/version.gitCommitID="d13280e73d9205ac5002cd926b07e25cf92fd7b1"" -o out/minikube k8s.io/minikube/cmd/minikube
go: downloading github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: downloading github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: downloading github.com/shirou/gopsutil v2.18.12+incompatible
go: downloading github.com/spf13/viper v1.6.1
go: downloading github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: extracting github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: extracting github.com/shirou/gopsutil v2.18.12+incompatible
go: extracting github.com/spf13/viper v1.6.1
go: downloading github.com/spf13/cobra v1.0.0
go: downloading k8s.io/client-go v0.17.3
go: extracting github.com/spf13/cobra v1.0.0
go: extracting github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: downloading k8s.io/apimachinery v0.17.3
go: downloading github.com/mattn/go-isatty v0.0.11
go: downloading github.com/fsnotify/fsnotify v1.4.7
go: extracting github.com/mattn/go-isatty v0.0.11
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: extracting github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: extracting github.com/fsnotify/fsnotify v1.4.7
go: downloading github.com/spf13/pflag v1.0.5
go: extracting github.com/spf13/jwalterweatherman v1.1.0
go: extracting k8s.io/apimachinery v0.17.3
go: downloading k8s.io/api v0.17.3
go: extracting github.com/spf13/pflag v1.0.5
go: downloading github.com/cpuguy83/go-md2man v1.0.10
go: extracting github.com/cpuguy83/go-md2man v1.0.10
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0
go: downloading github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: extracting k8s.io/client-go v0.17.3
go: downloading github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading github.com/otiai10/copy v1.0.2
go: extracting github.com/cpuguy83/go-md2man/v2 v2.0.0
go: extracting github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: downloading github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: downloading github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: extracting github.com/otiai10/copy v1.0.2
go: downloading github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: extracting github.com/hashicorp/hcl v1.0.0
go: downloading k8s.io/klog v1.0.0
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: extracting k8s.io/api v0.17.3
go: extracting github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: downloading gopkg.in/yaml.v2 v2.2.8
go: extracting github.com/davecgh/go-spew v1.1.1
go: extracting github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: downloading github.com/pelletier/go-toml v1.6.0
go: extracting github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: extracting github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: downloading golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: extracting k8s.io/klog v1.0.0
go: extracting github.com/pelletier/go-toml v1.6.0
go: downloading github.com/gogo/protobuf v1.3.1
go: extracting github.com/russross/blackfriday/v2 v2.0.1
go: extracting golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: extracting gopkg.in/yaml.v2 v2.2.8
go: downloading github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: extracting golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: downloading github.com/imdario/mergo v0.3.8
go: downloading k8s.io/kubectl v0.17.3
go: downloading github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: extracting github.com/imdario/mergo v0.3.8
go: downloading github.com/opencontainers/go-digest v1.0.0-rc1
go: extracting github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: downloading gopkg.in/ini.v1 v1.51.1
go: extracting github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: downloading github.com/olekukonko/tablewriter v0.0.4
go: extracting github.com/gogo/protobuf v1.3.1
go: extracting github.com/olekukonko/tablewriter v0.0.4
go: extracting github.com/opencontainers/go-digest v1.0.0-rc1
go: downloading k8s.io/kubernetes v1.17.3
go: extracting gopkg.in/ini.v1 v1.51.1
go: downloading github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: downloading github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: downloading github.com/blang/semver v3.5.0+incompatible
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: extracting github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: downloading golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: extracting github.com/blang/semver v3.5.0+incompatible
go: downloading github.com/google/gofuzz v1.0.0
go: extracting github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
go: downloading github.com/spf13/afero v1.2.2
go: extracting github.com/google/gofuzz v1.0.0
go: downloading github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: extracting k8s.io/kubectl v0.17.3
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/cheggaaa/pb v1.0.27
go: downloading github.com/magiconair/properties v1.8.1
go: extracting golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: extracting github.com/pkg/errors v0.9.1
go: extracting github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: downloading github.com/mattn/go-runewidth v0.0.7
go: extracting github.com/shurcooL/sanitized_anchor_name v1.0.0
go: downloading github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: extracting github.com/magiconair/properties v1.8.1
go: downloading github.com/json-iterator/go v1.1.8
go: extracting github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: extracting github.com/spf13/afero v1.2.2
go: extracting github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: downloading github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading github.com/docker/go-units v0.4.0
go: extracting github.com/cheggaaa/pb v1.0.27
go: downloading github.com/cheggaaa/pb/v3 v3.0.1
go: downloading github.com/spf13/cast v1.3.1
go: extracting github.com/spf13/cast v1.3.1
go: downloading github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: extracting github.com/mattn/go-runewidth v0.0.7
go: extracting github.com/json-iterator/go v1.1.8
go: extracting github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: extracting github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading sigs.k8s.io/yaml v1.1.0
go: downloading google.golang.org/api v0.9.0
go: extracting github.com/docker/go-units v0.4.0
go: downloading golang.org/x/text v0.3.2
go: extracting github.com/cheggaaa/pb/v3 v3.0.1
go: downloading github.com/modern-go/reflect2 v1.0.1
go: downloading github.com/mitchellh/mapstructure v1.1.2
go: downloading github.com/docker/docker-credential-helpers v0.6.3
go: extracting github.com/modern-go/reflect2 v1.0.1
go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
go: extracting github.com/docker/docker-credential-helpers v0.6.3
go: downloading cloud.google.com/go v0.45.1
go: extracting sigs.k8s.io/yaml v1.1.0
go: extracting github.com/mitchellh/mapstructure v1.1.2
go: extracting github.com/cenkalti/backoff v2.2.1+incompatible
go: downloading golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: downloading github.com/fatih/color v1.7.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: extracting github.com/fatih/color v1.7.0
go: downloading golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: extracting github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: extracting golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: extracting golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: downloading github.com/mitchellh/go-wordwrap v1.0.0
go: downloading github.com/mattn/go-colorable v0.1.2
go: extracting github.com/mattn/go-colorable v0.1.2
go: downloading github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: extracting cloud.google.com/go v0.45.1
go: extracting github.com/mitchellh/go-wordwrap v1.0.0
go: downloading github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: downloading github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: downloading github.com/googleapis/gnostic v0.3.0
go: extracting k8s.io/kubernetes v1.17.3
go: extracting github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: downloading gopkg.in/inf.v0 v0.9.1
go: extracting gopkg.in/inf.v0 v0.9.1
go: downloading github.com/docker/distribution v2.7.1+incompatible
go: extracting github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: extracting github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: downloading github.com/docker/go-connections v0.4.0
go: downloading github.com/hashicorp/go-cleanhttp v0.5.0
go: downloading github.com/VividCortex/ewma v1.1.1
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: extracting github.com/googleapis/gnostic v0.3.0
go: extracting github.com/docker/distribution v2.7.1+incompatible
go: downloading github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: extracting github.com/VividCortex/ewma v1.1.1
go: extracting golang.org/x/text v0.3.2
go: extracting github.com/docker/go-connections v0.4.0
go: downloading github.com/mitchellh/go-testing-interface v1.0.0
go: extracting github.com/hashicorp/go-cleanhttp v0.5.0
go: downloading github.com/golang/protobuf v1.3.2
go: downloading k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: downloading github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: extracting google.golang.org/api v0.9.0
go: downloading github.com/ulikunitz/xz v0.5.5
go: downloading google.golang.org/grpc v1.26.0
go: downloading k8s.io/cluster-bootstrap v0.17.3
go: extracting github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/hashicorp/go-version v1.1.0
go: extracting github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: downloading k8s.io/component-base v0.17.3
go: extracting github.com/ulikunitz/xz v0.5.5
go: extracting k8s.io/cluster-bootstrap v0.17.3
go: extracting google.golang.org/grpc v1.26.0
go: extracting github.com/mitchellh/go-testing-interface v1.0.0
go: extracting github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: extracting github.com/golang/protobuf v1.3.2
go: extracting k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: downloading google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: downloading github.com/sirupsen/logrus v1.4.2
go: downloading go.opencensus.io v0.22.0
go: downloading github.com/googleapis/gax-go/v2 v2.0.5
go: downloading github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: downloading k8s.io/kube-proxy v0.17.3
go: downloading github.com/subosito/gotenv v1.2.0
go: extracting github.com/hashicorp/go-version v1.1.0
go: downloading k8s.io/kubelet v0.17.3
go: extracting k8s.io/component-base v0.17.3
go: extracting go.opencensus.io v0.22.0
go: extracting github.com/subosito/gotenv v1.2.0
go: downloading github.com/hashicorp/go-safetemp v1.0.0
go: extracting github.com/googleapis/gax-go/v2 v2.0.5
go: extracting github.com/sirupsen/logrus v1.4.2
go: extracting github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: extracting k8s.io/kube-proxy v0.17.3
go: downloading golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: downloading github.com/opencontainers/image-spec v1.0.1
go: downloading github.com/hashicorp/golang-lru v0.5.3
go: extracting google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: downloading github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: extracting k8s.io/kubelet v0.17.3
go: extracting golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: extracting github.com/hashicorp/golang-lru v0.5.3
go: extracting github.com/opencontainers/image-spec v1.0.1
go: extracting github.com/hashicorp/go-safetemp v1.0.0
go: extracting github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: finding github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: finding github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: finding github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: finding k8s.io/client-go v0.17.3
go: finding github.com/mattn/go-isatty v0.0.11
go: finding github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: finding github.com/imdario/mergo v0.3.8
go: finding github.com/blang/semver v3.5.0+incompatible
go: finding github.com/pkg/errors v0.9.1
go: finding golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: finding github.com/spf13/pflag v1.0.5
go: finding golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: finding k8s.io/apimachinery v0.17.3
go: finding github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: finding github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: finding github.com/docker/go-units v0.4.0
go: finding cloud.google.com/go v0.45.1
go: finding github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: finding github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: finding github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: finding github.com/gogo/protobuf v1.3.1
go: finding golang.org/x/text v0.3.2
go: finding github.com/docker/docker-credential-helpers v0.6.3
go: finding github.com/docker/distribution v2.7.1+incompatible
go: finding github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: finding github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: finding golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: finding github.com/spf13/viper v1.6.1
go: finding github.com/shirou/gopsutil v2.18.12+incompatible
go: finding github.com/spf13/cobra v1.0.0
go: finding github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: finding github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding github.com/hashicorp/hcl v1.0.0
go: finding github.com/googleapis/gax-go/v2 v2.0.5
go: finding github.com/cheggaaa/pb/v3 v3.0.1
go: finding github.com/opencontainers/go-digest v1.0.0-rc1
go: finding github.com/magiconair/properties v1.8.1
go: finding google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: finding k8s.io/klog v1.0.0
go: finding github.com/mitchellh/mapstructure v1.1.2
go: finding google.golang.org/api v0.9.0
go: finding google.golang.org/grpc v1.26.0
go: finding github.com/pelletier/go-toml v1.6.0
go: finding github.com/spf13/afero v1.2.2
go: finding github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: finding github.com/spf13/cast v1.3.1
go: finding go.opencensus.io v0.22.0
go: finding github.com/spf13/jwalterweatherman v1.1.0
go: finding github.com/cenkalti/backoff v2.2.1+incompatible
go: finding github.com/subosito/gotenv v1.2.0
go: finding golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: finding gopkg.in/ini.v1 v1.51.1
go: finding github.com/docker/go-connections v0.4.0
go: finding github.com/VividCortex/ewma v1.1.1
go: finding gopkg.in/yaml.v2 v2.2.8
go: finding k8s.io/api v0.17.3
go: finding github.com/json-iterator/go v1.1.8
go: finding github.com/golang/protobuf v1.3.2
go: finding github.com/fatih/color v1.7.0
go: finding gopkg.in/inf.v0 v0.9.1
go: finding github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: finding github.com/modern-go/reflect2 v1.0.1
go: finding github.com/google/gofuzz v1.0.0
go: finding github.com/opencontainers/image-spec v1.0.1
go: finding github.com/mattn/go-colorable v0.1.2
go: finding golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: finding github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: finding k8s.io/kubectl v0.17.3
go: finding github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: finding github.com/hashicorp/golang-lru v0.5.3
go: finding github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: finding github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: finding github.com/mattn/go-runewidth v0.0.7
go: finding github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: finding github.com/sirupsen/logrus v1.4.2
go: finding github.com/mitchellh/go-wordwrap v1.0.0
go: finding k8s.io/kubernetes v1.17.3
go: finding github.com/davecgh/go-spew v1.1.1
go: finding sigs.k8s.io/yaml v1.1.0
go: finding github.com/googleapis/gnostic v0.3.0
go: finding github.com/olekukonko/tablewriter v0.0.4
go: finding github.com/otiai10/copy v1.0.2
go: finding golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: finding k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: finding k8s.io/cluster-bootstrap v0.17.3
go: finding github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: finding github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: finding github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: finding github.com/hashicorp/go-cleanhttp v0.5.0
go: finding github.com/hashicorp/go-safetemp v1.0.0
go: finding github.com/cpuguy83/go-md2man/v2 v2.0.0
go: finding github.com/hashicorp/go-version v1.1.0
go: finding github.com/mitchellh/go-homedir v1.1.0
go: finding github.com/mitchellh/go-testing-interface v1.0.0
go: finding github.com/russross/blackfriday/v2 v2.0.1
go: finding github.com/ulikunitz/xz v0.5.5
go: finding k8s.io/component-base v0.17.3
go: finding github.com/shurcooL/sanitized_anchor_name v1.0.0
go: finding k8s.io/kube-proxy v0.17.3
go: finding k8s.io/kubelet v0.17.3
go: finding github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: finding github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
# k8s.io/minikube/cmd/minikube/cmd
cmd/minikube/cmd/podman-env.go:125:41: undefined: ec
Makefile:164: recipe for target 'out/minikube' failed
make: *** [out/minikube] Error 2
travis_time:end:2619b768:start=1590101724373692697,finish=1590101816513862221,duration=92140169524,event=script
TravisBuddy Request Identifier: c8e33bb0-9bc1-11ea-9438-0b74518d636c

@afbjorklund
Copy link
Collaborator

afbjorklund commented May 22, 2020

I agree that this behaviour is surprising. I was OK with starting dockerd if running docker-env on a node with only containerd, but maybe it should just fail in this scenario...

I don't think docker-machine has this issue, because the daemon is normally started with the VM and the certificates are regenerated by the provisioner when it starts up.

It only warns about the address (minikube ip) being changed:

Restarting "default"...
(default) Check network to re-create if needed...
(default) Waiting for an IP...
Waiting for SSH to be available...
Detecting the provisioner...
Restarted machines may have new IP addresses. You may need to re-run the `docker-machine env` command.

Then there is reconfigure-certs to run configureAuth().


I think the main reason we need this in minikube is because of 5cd7660

That's were we hard-coded the Provisioner and removed ConfigureAuth:

-               glog.Infof("Detecting provisioner ...")
-               provisioner, err := provision.DetectProvisioner(h.Driver)
-               if err != nil {
-                       return h, errors.Wrap(err, "detecting provisioner")
-       glog.Infof("Configuring auth for driver %s ...", h.Driver.DriverName())
-       if err := h.ConfigureAuth(); err != nil {
-               return h, &retry.RetriableError{Err: errors.Wrap(err, "Error configuring auth on host")}
-       }

This is also causing problems with some of my other later experiments,
such as using Ubuntu for ISO or Buildroot for KIC - it doesn't work now.

@medyagh
Copy link
Member Author

medyagh commented May 23, 2020

e we hard-coded the Provisioner and removed Confi

so the problem is, when you reconfigureAuth (that was refactored out of the code by thomas) it takes 5-6 times on each start (un-needed tax on minikube start)
even if the IP was not changed
not sure what is the best solution, my PR tries to connect to docker-env from User's point of view ( adding the docker env to a exec.Command's env and try to run "docker version" on it) if the IP has changed or there any other errors, the command would return an error.

that is like we test the docker-env before returning and then restart if there is something wrong with docker.

another thing that worth noting here is, docker does not need new Certs, it already does have Certs but it has loaded the wrong one ! ( I think this is because we Enable the docker-service in the kic base image for a faster start, so on first second it picks up the Old Certs and would hold on to them till we restart docker)

@medyagh medyagh requested a review from tstromberg May 23, 2020 21:12
@tstromberg
Copy link
Contributor

so the problem is, when you reconfigureAuth (that was refactored out of the code by thomas) it takes 5-6 times on each start (un-needed tax on minikube start)
even if the IP was not changed

Unless I am missing something, the IP only changes if minikube start has been run. If the IP changes, the kubelet needs to be restarted anyways. To minimize the number of issues, Docker should be restarted if it's in a broken state as close to the time that it comes up as possible.

cmd/minikube/cmd/docker-env.go Outdated Show resolved Hide resolved
cmd/minikube/cmd/docker-env.go Outdated Show resolved Hide resolved
// on minikube stop, or computer restart the IP might change.
// reloads the certs to prevent #8185
glog.Infof("will try to restart dockerd service...")
restartOrExitDaemon("docker", cname, co.CP.Runner)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is a cut and paste error: there is no docker daemon to restart within podman.

cmd/minikube/cmd/docker-env.go Outdated Show resolved Hide resolved
@@ -117,7 +118,8 @@ var podmanEnvCmd = &cobra.Command{
}

if ok := isPodmanAvailable(co.CP.Runner); !ok {
exit.WithCodeT(exit.Unavailable, `The podman service within '{{.cluster}}' is not active`, out.V{"cluster": cname})
glog.Warningf("podman service inside minikube is not active will try to restart it...")
restartOrExitDaemon("podman", cname, co.CP.Runner)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no podman daemon

@@ -119,6 +122,12 @@ func isDockerActive(r command.Runner) bool {
return sysinit.New(r).Active("docker")
}

func restartOrExitDaemon(bin string, name string, runner command.Runner) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: For idiomatic go, functions which may cause an exit should be named something like mustRestartDocker.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

@tstromberg
Copy link
Contributor

tstromberg commented May 26, 2020

I like that this PR documents the problem that is trying to be solved, but what is missing is a mention of why this is the best way to fix it.

@medyagh medyagh changed the title restart dockerd inside minikube if IP changed restart dockerd inside minikube if docker-env can't connect May 26, 2020
@medyagh medyagh changed the title restart dockerd inside minikube if docker-env can't connect restart dockerd inside minikube if docker-env can't connect as backup effort May 26, 2020
@medyagh medyagh changed the title restart dockerd inside minikube if docker-env can't connect as backup effort restart dockerd inside minikube if docker-env command faces error May 26, 2020
@medyagh medyagh requested a review from tstromberg May 26, 2020 19:54
@TravisBuddy
Copy link

Travis tests have failed

Hey @medyagh,
Please read the following log in order to understand the failure reason.
It'll be awesome if you fix what's wrong and commit the changes.

1st Build

View build log

make test
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/assets/assets.go -pkg assets deploy/addons/...
gofmt -s -w pkg/minikube/assets/assets.go
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
/home/travis/gopath/bin/go-bindata
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/translate/translations.go -pkg translate translations/...
gofmt -s -w pkg/minikube/translate/translations.go
MINIKUBE_LDFLAGS="-X k8s.io/minikube/pkg/version.version=v1.10.1 -X k8s.io/minikube/pkg/version.isoVersion=v1.10.0 -X k8s.io/minikube/pkg/version.isoPath=minikube/iso -X k8s.io/minikube/pkg/version.gitCommitID="2000a5a5562efbfd8dcf688c4d9f63cc304273c9"" ./test.sh
= make lint =============================================================
golangci/golangci-lint info checking GitHub for tag 'v1.26.0'
golangci/golangci-lint info found version: 1.26.0 for v1.26.0/linux/amd64
golangci/golangci-lint info installed out/linters/golangci-lint
cmd/minikube/cmd/podman-env.go:68:6: `isPodmanAvailable` is unused (deadcode)
func isPodmanAvailable(r command.Runner) bool {
     ^
Makefile:387: recipe for target 'lint-ci' failed
make[1]: *** [lint-ci] Error 1
= go mod ================================================================
ok
= boilerplate ===========================================================
ok
Makefile:271: recipe for target 'test' failed
make: *** [test] Error 4
TravisBuddy Request Identifier: d7921600-9f8a-11ea-a34f-dd9ab62511aa

mustRestartDocker(cname, co.CP.Runner)
// TODO #8241: use kverify to wait for apisefver instead
// waiting for the basics like api-server to come up
time.Sleep(time.Second * 3)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove this sleep until it can be proved that this is helpful.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done, but I am sure ppl will run into this, specially people who use this as part of another tool chain unvisible to the user

cmd/minikube/cmd/docker-env.go Outdated Show resolved Hide resolved
@medyagh medyagh requested a review from tstromberg May 26, 2020 20:29
@medyagh
Copy link
Member Author

medyagh commented May 26, 2020

/ok-to-test

@k8s-ci-robot k8s-ci-robot added the ok-to-test Indicates a non-member PR verified by an org member that is safe to test. label May 26, 2020
@medyagh medyagh force-pushed the verify_docker_env branch from 0ce9881 to 6ff8c9a Compare May 26, 2020 22:03
@minikube-pr-bot
Copy link

kvm2 Driver
Times for minikube: [64.984367894 62.50804229800001 62.449578778]
Average time for minikube: 63.31399632333333

Times for Minikube (PR 8239): [64.05310125000001 65.99178446799999 67.524245977]
Average time for Minikube (PR 8239): 65.85637723166667

Averages Time Per Log

+--------------------------------+-----------+--------------------+
|              LOG               | MINIKUBE  | MINIKUBE (PR 8239) |
+--------------------------------+-----------+--------------------+
| * minikube v1.10.1 on Debian   |  0.060765 |           0.062641 |
|                           9.11 |           |                    |
| * Using the kvm2 driver based  |  0.020219 |           0.021016 |
| on existing profile            |           |                    |
| * Starting control plane node  |  0.003241 |           0.003187 |
| minikube in cluster minikube   |           |                    |
| * Creating kvm2 VM (CPUs=2,    | 40.165090 |          40.705876 |
| Memory=3700MB, Disk=20000MB)   |           |                    |
| ...                            |           |                    |
| * Preparing Kubernetes v1.18.2 | 21.359920 |          22.680635 |
| on Docker 19.03.8 ...          |           |                    |
| * Verifying Kubernetes         |  1.255949 |           1.519565 |
| components...                  |           |                    |
| * Enabled addons:              |  0.365404 |           0.765481 |
| default-storageclass,          |           |                    |
| storage-provisioner            |           |                    |
| * Done! kubectl is now         |  0.079560 |           0.092503 |
| configured to use "minikube"   |           |                    |
|                                |  0.003848 |           0.005472 |
+--------------------------------+-----------+--------------------+

docker Driver
Times for minikube: [26.812086600999997 25.556465911000004 26.236846223999997]
Average time for minikube: 26.201799578666666

Times for Minikube (PR 8239): [27.127987598999997 26.390889912 25.901410171000002]
Average time for Minikube (PR 8239): 26.473429227333337

Averages Time Per Log

+----------------------------------------+-----------+--------------------+
|                  LOG                   | MINIKUBE  | MINIKUBE (PR 8239) |
+----------------------------------------+-----------+--------------------+
| * minikube v1.10.1 on Debian           |  0.074032 |           0.072658 |
|                                   9.11 |           |                    |
| * Using the docker driver              |  0.002315 |           0.002550 |
| based on existing profile              |           |                    |
| * Starting control plane node          |  0.060697 |           0.059490 |
| minikube in cluster minikube           |           |                    |
| * Creating docker container            |  7.888894 |           7.555907 |
| (CPUs=2, Memory=3700MB) ...            |           |                    |
| * Preparing Kubernetes v1.18.2         |  0.119215 |           0.123554 |
| on Docker 19.03.2 ...                  |           |                    |
|   -                                    | 17.110771 |          17.284972 |
| kubeadm.pod-network-cidr=10.244.0.0/16 |           |                    |
| * Verifying Kubernetes                 |  0.870387 |           1.194336 |
| components...                          |           |                    |
| * Enabled addons:                      |  0.002654 |           0.108191 |
| default-storageclass,                  |           |                    |
| storage-provisioner                    |           |                    |
| * Done! kubectl is now                 |  0.066709 |           0.066280 |
| configured to use "minikube"           |           |                    |
|                                        |  0.006126 |           0.005491 |
+----------------------------------------+-----------+--------------------+

@TravisBuddy
Copy link

Travis tests have failed

Hey @medyagh,
Please read the following log in order to understand the failure reason.
It'll be awesome if you fix what's wrong and commit the changes.

1st Build

View build log

make test
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/assets/assets.go -pkg assets deploy/addons/...
gofmt -s -w pkg/minikube/assets/assets.go
which go-bindata || GO111MODULE=off GOBIN="/home/travis/gopath/bin" go get github.com/jteeuwen/go-bindata/...
/home/travis/gopath/bin/go-bindata
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.13.8.linux.amd64/bin:/home/travis/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/lib/jvm/openjdk11/bin:/opt/pyenv/shims:/home/travis/.phpenv/shims:/home/travis/perl5/perlbrew/bin:/home/travis/.nvm/versions/node/v8.12.0/bin:/home/travis/.rvm/gems/ruby-2.5.3/bin:/home/travis/.rvm/gems/ruby-2.5.3@global/bin:/home/travis/.rvm/rubies/ruby-2.5.3/bin:/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.11.1.linux.amd64/bin:/usr/local/maven-3.6.0/bin:/usr/local/cmake-3.12.4/bin:/usr/local/clang-7.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/home/travis/.rvm/bin:/home/travis/.phpenv/bin:/opt/pyenv/bin:/home/travis/.yarn/bin:/home/travis/gopath/bin" go-bindata -nomemcopy -o pkg/minikube/translate/translations.go -pkg translate translations/...
gofmt -s -w pkg/minikube/translate/translations.go
MINIKUBE_LDFLAGS="-X k8s.io/minikube/pkg/version.version=v1.10.1 -X k8s.io/minikube/pkg/version.isoVersion=v1.10.0 -X k8s.io/minikube/pkg/version.isoPath=minikube/iso -X k8s.io/minikube/pkg/version.gitCommitID="5ca164141d5c578b84fd1e0fe44fbb2a3d24d826"" ./test.sh
= schema_check ==========================================================
go: downloading github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f
go: extracting github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f
go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: extracting github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
go: extracting github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
go: finding github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f
go: finding github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: finding github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
ok
= go test ===============================================================
go: downloading github.com/pkg/errors v0.9.1
go: downloading k8s.io/client-go v0.17.3
go: downloading github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: downloading github.com/docker/go-units v0.4.0
go: downloading github.com/mattn/go-isatty v0.0.11
go: downloading k8s.io/apimachinery v0.17.3
go: extracting github.com/pkg/errors v0.9.1
go: extracting github.com/mattn/go-isatty v0.0.11
go: extracting github.com/docker/go-units v0.4.0
go: downloading golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: downloading github.com/blang/semver v3.5.0+incompatible
go: extracting github.com/blang/semver v3.5.0+incompatible
go: extracting github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: downloading k8s.io/api v0.17.3
go: extracting k8s.io/apimachinery v0.17.3
go: downloading k8s.io/kubernetes v1.17.3
go: downloading github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: downloading github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
go: downloading github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: extracting github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: extracting k8s.io/client-go v0.17.3
go: extracting golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: downloading golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: extracting github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
go: downloading github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading github.com/shirou/gopsutil v2.18.12+incompatible
go: extracting github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: downloading golang.org/x/text v0.3.2
go: extracting k8s.io/api v0.17.3
go: extracting github.com/shirou/gopsutil v2.18.12+incompatible
go: downloading github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: downloading github.com/cheggaaa/pb v1.0.27
go: downloading github.com/spf13/cobra v1.0.0
go: downloading k8s.io/kubectl v0.17.3
go: extracting github.com/cheggaaa/pb v1.0.27
go: downloading github.com/cheggaaa/pb/v3 v3.0.1
go: extracting golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: extracting github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: extracting github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: extracting github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: downloading github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: extracting github.com/spf13/cobra v1.0.0
go: downloading google.golang.org/api v0.9.0
go: extracting github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/otiai10/copy v1.0.2
go: extracting github.com/cheggaaa/pb/v3 v3.0.1
go: downloading github.com/mattn/go-runewidth v0.0.7
go: extracting github.com/otiai10/copy v1.0.2
go: downloading github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: extracting github.com/spf13/pflag v1.0.5
go: downloading github.com/gogo/protobuf v1.3.1
go: downloading github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: extracting github.com/mattn/go-runewidth v0.0.7
go: extracting github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: downloading gopkg.in/inf.v0 v0.9.1
go: extracting github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: downloading golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: downloading github.com/VividCortex/ewma v1.1.1
go: downloading github.com/spf13/viper v1.6.1
go: extracting gopkg.in/inf.v0 v0.9.1
go: extracting k8s.io/kubectl v0.17.3
go: extracting github.com/gogo/protobuf v1.3.1
go: extracting k8s.io/kubernetes v1.17.3
go: extracting golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: extracting github.com/VividCortex/ewma v1.1.1
go: downloading github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: downloading github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: extracting golang.org/x/text v0.3.2
go: extracting github.com/spf13/viper v1.6.1
go: downloading github.com/hashicorp/hcl v1.0.0
go: extracting github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: downloading github.com/opencontainers/go-digest v1.0.0-rc1
go: downloading github.com/fsnotify/fsnotify v1.4.7
go: downloading github.com/magiconair/properties v1.8.1
go: downloading github.com/docker/go-connections v0.4.0
go: downloading github.com/google/gofuzz v1.0.0
go: extracting github.com/hashicorp/hcl v1.0.0
go: downloading gopkg.in/yaml.v2 v2.2.8
go: extracting github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: downloading github.com/libvirt/libvirt-go v3.4.0+incompatible
go: downloading gopkg.in/ini.v1 v1.51.1
go: extracting github.com/magiconair/properties v1.8.1
go: extracting github.com/opencontainers/go-digest v1.0.0-rc1
go: downloading github.com/cpuguy83/go-md2man v1.0.10
go: extracting github.com/fsnotify/fsnotify v1.4.7
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/docker/distribution v2.7.1+incompatible
go: downloading github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: extracting google.golang.org/api v0.9.0
go: downloading github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: extracting gopkg.in/yaml.v2 v2.2.8
go: downloading k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: extracting github.com/docker/go-connections v0.4.0
go: downloading google.golang.org/grpc v1.26.0
go: extracting github.com/google/gofuzz v1.0.0
go: downloading github.com/imdario/mergo v0.3.8
go: extracting gopkg.in/ini.v1 v1.51.1
go: extracting github.com/libvirt/libvirt-go v3.4.0+incompatible
go: downloading golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: downloading github.com/mitchellh/mapstructure v1.1.2
go: extracting github.com/cpuguy83/go-md2man v1.0.10
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0
go: extracting github.com/docker/distribution v2.7.1+incompatible
go: extracting github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: extracting github.com/davecgh/go-spew v1.1.1
go: downloading github.com/spf13/cast v1.3.1
go: downloading github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: downloading github.com/pelletier/go-toml v1.6.0
go: extracting github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: downloading github.com/mitchellh/go-wordwrap v1.0.0
go: extracting k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: extracting github.com/imdario/mergo v0.3.8
go: extracting github.com/mitchellh/mapstructure v1.1.2
go: extracting google.golang.org/grpc v1.26.0
go: extracting github.com/cpuguy83/go-md2man/v2 v2.0.0
go: downloading github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: extracting github.com/pelletier/go-toml v1.6.0
go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
go: extracting golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: extracting github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: extracting github.com/cenkalti/backoff v2.2.1+incompatible
go: downloading github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: downloading github.com/opencontainers/image-spec v1.0.1
go: downloading sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.0+incompatible
go: extracting github.com/spf13/cast v1.3.1
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading github.com/fatih/color v1.7.0
go: downloading cloud.google.com/go v0.45.1
go: extracting github.com/mitchellh/go-wordwrap v1.0.0
go: downloading k8s.io/klog v1.0.0
go: downloading github.com/mattn/go-colorable v0.1.2
go: downloading github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: extracting github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: extracting sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.0+incompatible
go: extracting github.com/fatih/color v1.7.0
go: downloading github.com/google/uuid v1.1.1
go: extracting github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading github.com/golang/protobuf v1.3.2
go: extracting github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: extracting github.com/opencontainers/image-spec v1.0.1
go: extracting github.com/mattn/go-colorable v0.1.2
go: extracting k8s.io/klog v1.0.0
go: downloading github.com/olekukonko/tablewriter v0.0.4
go: downloading k8s.io/kube-proxy v0.17.3
go: downloading k8s.io/cluster-bootstrap v0.17.3
go: downloading github.com/mitchellh/go-testing-interface v1.0.0
go: extracting github.com/mitchellh/go-testing-interface v1.0.0
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: extracting k8s.io/cluster-bootstrap v0.17.3
go: downloading github.com/aws/aws-sdk-go v1.27.1
go: extracting github.com/olekukonko/tablewriter v0.0.4
go: extracting github.com/google/uuid v1.1.1
go: downloading github.com/ulikunitz/xz v0.5.5
go: extracting k8s.io/kube-proxy v0.17.3
go: downloading github.com/googleapis/gnostic v0.3.0
go: extracting github.com/spf13/jwalterweatherman v1.1.0
go: extracting github.com/russross/blackfriday/v2 v2.0.1
go: downloading github.com/hashicorp/go-version v1.1.0
go: extracting github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: extracting github.com/googleapis/gnostic v0.3.0
go: extracting cloud.google.com/go v0.45.1
go: extracting github.com/hashicorp/go-version v1.1.0
go: downloading github.com/prometheus/client_golang v1.1.0
go: downloading github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: extracting github.com/ulikunitz/xz v0.5.5
go: downloading github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: downloading k8s.io/component-base v0.17.3
go: downloading github.com/hashicorp/go-safetemp v1.0.0
go: extracting github.com/golang/protobuf v1.3.2
go: downloading github.com/sirupsen/logrus v1.4.2
go: downloading github.com/hashicorp/go-cleanhttp v0.5.0
go: extracting github.com/prometheus/client_golang v1.1.0
go: extracting k8s.io/component-base v0.17.3
go: extracting github.com/hashicorp/go-safetemp v1.0.0
go: extracting github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: extracting github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: downloading github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: downloading github.com/modern-go/reflect2 v1.0.1
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: extracting github.com/aws/aws-sdk-go v1.27.1
go: extracting github.com/sirupsen/logrus v1.4.2
go: extracting github.com/hashicorp/go-cleanhttp v0.5.0
go: downloading github.com/prometheus/procfs v0.0.5
go: downloading github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: downloading google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: downloading github.com/hashicorp/golang-lru v0.5.3
go: downloading github.com/googleapis/gax-go/v2 v2.0.5
go: extracting github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: extracting github.com/modern-go/reflect2 v1.0.1
go: extracting golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: extracting github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/prometheus/common v0.6.0
go: downloading github.com/subosito/gotenv v1.2.0
go: downloading golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: downloading github.com/spf13/afero v1.2.2
go: extracting github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: extracting github.com/prometheus/procfs v0.0.5
go: extracting github.com/hashicorp/golang-lru v0.5.3
go: extracting github.com/googleapis/gax-go/v2 v2.0.5
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
go: downloading github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: downloading k8s.io/kubelet v0.17.3
go: downloading github.com/beorn7/perks v1.0.1
go: extracting google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: extracting github.com/prometheus/common v0.6.0
go: extracting github.com/subosito/gotenv v1.2.0
go: extracting github.com/spf13/afero v1.2.2
go: downloading github.com/docker/docker-credential-helpers v0.6.3
go: downloading sigs.k8s.io/yaml v1.1.0
go: extracting golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: downloading go.opencensus.io v0.22.0
go: downloading github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: extracting k8s.io/kubelet v0.17.3
go: downloading k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
go: extracting github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: extracting github.com/shurcooL/sanitized_anchor_name v1.0.0
go: downloading github.com/json-iterator/go v1.1.8
go: extracting github.com/beorn7/perks v1.0.1
go: downloading github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
go: extracting go.opencensus.io v0.22.0
go: extracting github.com/docker/docker-credential-helpers v0.6.3
go: extracting github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: extracting sigs.k8s.io/yaml v1.1.0
go: downloading github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: downloading github.com/miekg/dns v1.1.4
go: downloading github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: downloading github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
go: downloading github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: extracting github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
go: extracting github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: extracting k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
go: extracting github.com/json-iterator/go v1.1.8
go: extracting github.com/miekg/dns v1.1.4
go: extracting github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: extracting github.com/matttproud/golang_protobuf_extensions v1.0.1
go: extracting github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef
go: extracting github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: extracting github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: finding github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: finding github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
go: finding github.com/pkg/errors v0.9.1
go: finding github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: finding github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: finding github.com/docker/go-units v0.4.0
go: finding github.com/spf13/cobra v1.0.0
go: finding github.com/blang/semver v3.5.0+incompatible
go: finding github.com/olekukonko/tablewriter v0.0.4
go: finding k8s.io/client-go v0.17.3
go: finding github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: finding github.com/libvirt/libvirt-go v3.4.0+incompatible
go: finding github.com/spf13/viper v1.6.1
go: finding golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: finding github.com/mattn/go-runewidth v0.0.7
go: finding github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: finding k8s.io/api v0.17.3
go: finding github.com/mattn/go-isatty v0.0.11
go: finding github.com/spf13/pflag v1.0.5
go: finding github.com/imdario/mergo v0.3.8
go: finding github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: finding github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: finding k8s.io/apimachinery v0.17.3
go: finding github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: finding golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: finding github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: finding github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: finding github.com/gogo/protobuf v1.3.1
go: finding github.com/google/uuid v1.1.1
go: finding github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: finding github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: finding github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: finding github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding github.com/hashicorp/hcl v1.0.0
go: finding github.com/shirou/gopsutil v2.18.12+incompatible
go: finding github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: finding cloud.google.com/go v0.45.1
go: finding github.com/google/gofuzz v1.0.0
go: finding github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: finding github.com/magiconair/properties v1.8.1
go: finding golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: finding sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.0+incompatible
go: finding k8s.io/klog v1.0.0
go: finding golang.org/x/text v0.3.2
go: finding github.com/mitchellh/mapstructure v1.1.2
go: finding github.com/docker/distribution v2.7.1+incompatible
go: finding github.com/otiai10/copy v1.0.2
go: finding github.com/docker/docker-credential-helpers v0.6.3
go: finding github.com/cenkalti/backoff v2.2.1+incompatible
go: finding github.com/cpuguy83/go-md2man/v2 v2.0.0
go: finding github.com/golang/protobuf v1.3.2
go: finding gopkg.in/inf.v0 v0.9.1
go: finding github.com/pelletier/go-toml v1.6.0
go: finding github.com/googleapis/gnostic v0.3.0
go: finding github.com/spf13/afero v1.2.2
go: finding golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: finding github.com/prometheus/client_golang v1.1.0
go: finding github.com/russross/blackfriday/v2 v2.0.1
go: finding github.com/spf13/cast v1.3.1
go: finding github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: finding gopkg.in/yaml.v2 v2.2.8
go: finding k8s.io/kubernetes v1.17.3
go: finding github.com/googleapis/gax-go/v2 v2.0.5
go: finding github.com/cheggaaa/pb/v3 v3.0.1
go: finding github.com/spf13/jwalterweatherman v1.1.0
go: finding github.com/opencontainers/go-digest v1.0.0-rc1
go: finding golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: finding google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: finding google.golang.org/api v0.9.0
go: finding google.golang.org/grpc v1.26.0
go: finding github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: finding github.com/subosito/gotenv v1.2.0
go: finding github.com/shurcooL/sanitized_anchor_name v1.0.0
go: finding go.opencensus.io v0.22.0
go: finding github.com/VividCortex/ewma v1.1.1
go: finding gopkg.in/ini.v1 v1.51.1
go: finding github.com/docker/go-connections v0.4.0
go: finding k8s.io/component-base v0.17.3
go: finding k8s.io/kubectl v0.17.3
go: finding github.com/beorn7/perks v1.0.1
go: finding github.com/fatih/color v1.7.0
go: finding github.com/json-iterator/go v1.1.8
go: finding github.com/mattn/go-colorable v0.1.2
go: finding github.com/modern-go/reflect2 v1.0.1
go: finding github.com/opencontainers/image-spec v1.0.1
go: finding github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: finding golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: finding github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: finding github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: finding github.com/prometheus/common v0.6.0
go: finding github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: finding github.com/hashicorp/golang-lru v0.5.3
go: finding github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: finding github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: finding github.com/davecgh/go-spew v1.1.1
go: finding github.com/sirupsen/logrus v1.4.2
go: finding github.com/prometheus/procfs v0.0.5
go: finding k8s.io/cluster-bootstrap v0.17.3
go: finding github.com/matttproud/golang_protobuf_extensions v1.0.1
go: finding k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: finding github.com/mitchellh/go-wordwrap v1.0.0
go: finding sigs.k8s.io/yaml v1.1.0
go: finding github.com/aws/aws-sdk-go v1.27.1
go: finding github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef
go: finding k8s.io/kube-proxy v0.17.3
go: finding k8s.io/kubelet v0.17.3
go: finding github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: finding github.com/hashicorp/go-cleanhttp v0.5.0
go: finding github.com/miekg/dns v1.1.4
go: finding github.com/hashicorp/go-safetemp v1.0.0
go: finding github.com/hashicorp/go-version v1.1.0
go: finding github.com/mitchellh/go-homedir v1.1.0
go: finding github.com/mitchellh/go-testing-interface v1.0.0
go: finding github.com/ulikunitz/xz v0.5.5
go: finding k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
go: finding github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: finding github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
go: finding github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: finding github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading github.com/evanphx/json-patch v4.5.0+incompatible
go: extracting github.com/pmezard/go-difflib v1.0.0
go: extracting github.com/evanphx/json-patch v4.5.0+incompatible
go: finding github.com/pmezard/go-difflib v1.0.0
go: finding github.com/evanphx/json-patch v4.5.0+incompatible
ok  	k8s.io/minikube/cmd/minikube/cmd	6.322s	coverage: 20.7% of statements
ok  	k8s.io/minikube/cmd/minikube/cmd/config	0.152s	coverage: 21.6% of statements
E0526 22:07:29.202197   11649 out.go:102] [unset errFile]: * 
E0526 22:07:29.202413   11649 out.go:102] [unset errFile]: X Error getting primary control plane: remove /tmp/profile227553418/.minikube/profiles/config.json: no such file or directory
E0526 22:07:29.202428   11649 out.go:102] [unset errFile]: * 
E0526 22:07:29.202438   11649 out.go:102] [unset errFile]: * minikube is exiting due to an error. If the above message is not useful, open an issue:
E0526 22:07:29.202456   11649 out.go:102] [unset errFile]:   - https://github.com/kubernetes/minikube/issues/new/choose
FAIL	k8s.io/minikube/pkg/addons	0.027s
ok  	k8s.io/minikube/pkg/drivers	0.014s	coverage: 19.6% of statements
ok  	k8s.io/minikube/pkg/drivers/hyperkit	0.009s	coverage: 77.3% of statements
ok  	k8s.io/minikube/pkg/drivers/kvm	0.024s	coverage: 2.3% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper	0.978s	coverage: 55.7% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/bsutil	0.060s	coverage: 63.2% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/bsutil/ktmpl	0.009s	coverage: 100.0% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/images	0.021s	coverage: 88.9% of statements
ok  	k8s.io/minikube/pkg/minikube/cluster	0.049s	coverage: 16.9% of statements
ok  	k8s.io/minikube/pkg/minikube/command	0.012s	coverage: 3.8% of statements
ok  	k8s.io/minikube/pkg/minikube/config	0.118s	coverage: 67.3% of statements
ok  	k8s.io/minikube/pkg/minikube/cruntime	0.044s	coverage: 40.6% of statements
ok  	k8s.io/minikube/pkg/minikube/docker	0.021s	coverage: 20.8% of statements
ok  	k8s.io/minikube/pkg/minikube/driver	0.014s	coverage: 37.3% of statements
ok  	k8s.io/minikube/pkg/minikube/extract	0.028s	coverage: 58.8% of statements
ok  	k8s.io/minikube/pkg/minikube/kubeconfig	0.042s	coverage: 77.0% of statements
ok  	k8s.io/minikube/pkg/minikube/localpath	0.005s	coverage: 51.9% of statements
ok  	k8s.io/minikube/pkg/minikube/logs	0.032s	coverage: 1.3% of statements
ok  	k8s.io/minikube/pkg/minikube/machine	1.449s	coverage: 38.6% of statements
ok  	k8s.io/minikube/pkg/minikube/notify	0.011s	coverage: 92.9% of statements
ok  	k8s.io/minikube/pkg/minikube/out	0.050s	coverage: 67.4% of statements
ok  	k8s.io/minikube/pkg/minikube/perf	0.225s	coverage: 54.7% of statements
ok  	k8s.io/minikube/pkg/minikube/problem	0.025s	coverage: 91.7% of statements
ok  	k8s.io/minikube/pkg/minikube/proxy	0.012s	coverage: 77.0% of statements
ok  	k8s.io/minikube/pkg/minikube/registry	0.008s	coverage: 75.5% of statements
ok  	k8s.io/minikube/pkg/minikube/service	0.055s	coverage: 84.2% of statements
ok  	k8s.io/minikube/pkg/minikube/storageclass	0.021s	coverage: 100.0% of statements
ok  	k8s.io/minikube/pkg/minikube/sysinit	0.021s	coverage: 6.5% of statements
ok  	k8s.io/minikube/pkg/minikube/translate	0.005s	coverage: 10.5% of statements
ok  	k8s.io/minikube/pkg/minikube/tunnel	1.965s	coverage: 64.2% of statements
ok  	k8s.io/minikube/pkg/util	0.598s	coverage: 77.9% of statements
ok  	k8s.io/minikube/pkg/util/lock	0.004s	coverage: 18.2% of statements
ok  	k8s.io/minikube/pkg/util/retry	0.001s	coverage: 0.0% of statements
FAIL
Makefile:271: recipe for target 'test' failed
make: *** [test] Error 32
TravisBuddy Request Identifier: 7d274970-9f9d-11ea-a34f-dd9ab62511aa

@tstromberg tstromberg changed the title restart dockerd inside minikube if docker-env command faces error docker-env: restart dockerd inside minikube if communication fails May 26, 2020
@tstromberg tstromberg changed the title docker-env: restart dockerd inside minikube if communication fails docker-env: restart dockerd inside minikube on failure May 26, 2020
@medyagh medyagh merged commit 69d679f into kubernetes:master May 26, 2020
@medyagh medyagh deleted the verify_docker_env branch May 26, 2020 23:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

docker-env stops working after IP change
8 participants