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

Add HostIP implementation for parallels driver #8259

Merged
merged 3 commits into from
May 26, 2020
Merged

Add HostIP implementation for parallels driver #8259

merged 3 commits into from
May 26, 2020

Conversation

legal90
Copy link
Contributor

@legal90 legal90 commented May 23, 2020

Fixes Parallels/docker-machine-parallels#90
Fixes #4862

This PR does the following:

  • adds the support of Parallels driver into HostIP function, which actually fixes the entire compatibility of minikube with this driver.
  • removes the support of Parallels driver for Mac, because the driver and Parallels Desktop itself support only macOS.

Tested on macOS 10.15.4 with docker-machine-driver-parallels v1.4.0 and Parallels Desktop for Mac 15.1.4.

Before this PR

$ ./out/minikube start --driver parallels
😄  minikube v1.10.1 on Darwin 10.15.4
    ▪ KUBECONFIG=/Users/legal/.kube/config
✨  Using the parallels driver based on user configuration
👍  Starting control plane node minikube in cluster minikube
🔥  Creating parallels VM (CPUs=2, Memory=4000MB, Disk=20000MB) ...
🐳  Preparing Kubernetes v1.18.2 on Docker 19.03.8 ...
E0523 23:12:39.024819   54085 start.go:95] Unable to get host IP: HostIP not yet implemented for "parallels" driver

💣  failed to start node: startup failed: Failed to setup kubeconfig: HostIP not yet implemented for "parallels" driver

😿  minikube is exiting due to an error. If the above message is not useful, open an issue:
👉  https://github.com/kubernetes/minikube/issues/new/choose

After this PR

$ ./out/minikube start
😄  minikube v1.10.1 on Darwin 10.15.4
    ▪ KUBECONFIG=/Users/legal/.kube/config
✨  Automatically selected the parallels driver
👍  Starting control plane node minikube in cluster minikube
🔥  Creating parallels VM (CPUs=2, Memory=4000MB, Disk=20000MB) ...
🐳  Preparing Kubernetes v1.18.2 on Docker 19.03.8 ...
🔎  Verifying Kubernetes components...
🌟  Enabled addons: default-storageclass, storage-provisioner
🏄  Done! kubectl is now configured to use "minikube"

❗  /usr/local/bin/kubectl is version 1.15.3, which may be incompatible with Kubernetes 1.18.2.
💡  You can also use 'minikube kubectl -- get pods' to invoke a matching version

Implementation details

Just for the reviewer's information:
The function is supposed to run the command prlsrvctl net info Shared. Here is the full output example:

Network ID: Shared
Type: shared
Bound To: vnic0
Parallels adapter:
	IPv4 address: 10.211.55.2
	IPv4 subnet mask: 255.255.255.0
	Host assign IP v6: off
	IPv6 address: fdb2:2c26:f4e4::1
	IPv6 subnet mask: ffff:ffff:ffff:ffff::
DHCPv4 server:
	Server address: 10.211.55.1
	IP scope start address: 10.211.55.1
	IP scope end address: 10.211.55.254
DHCPv6 server:
	Server address: fdb2:2c26:f4e4::
	IP scope start address: fdb2:2c26:f4e4::
	IP scope end address: fdb2:2c26:f4e4:0:ffff:ffff:ffff:ffff

NAT server:

Here we just parse this output to get the value of IPv4 address field, which is 10.211.55.2. The VM created by parallels driver is connected to the same virtual network and can access the host using this IP.

Parallels Desktop works only on macOS (Darwin)
@k8s-ci-robot
Copy link
Contributor

Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA.

It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.


Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here.

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

Welcome @legal90!

It looks like this is your first PR to kubernetes/minikube 🎉. Please refer to our pull request process documentation to help your PR have a smooth ride to approval.

You will be prompted by a bot to use commands during the review process. Do not be afraid to follow the prompts! It is okay to experiment. Here is the bot commands documentation.

You can also check if kubernetes/minikube has its own contribution guidelines.

You may want to refer to our testing guide if you run into trouble with your tests not passing.

If you are having difficulty getting your pull request seen, please follow the recommended escalation practices. Also, for tips and tricks in the contribution process you may want to read the Kubernetes contributor cheat sheet. We want to make sure your contribution gets all the attention it needs!

Thank you, and welcome to Kubernetes. 😃

@k8s-ci-robot k8s-ci-robot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label May 23, 2020
@k8s-ci-robot
Copy link
Contributor

Hi @legal90. Thanks for your PR.

I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: legal90
To complete the pull request process, please assign priyawadhwa
You can assign the PR to them by writing /assign @priyawadhwa in a comment when ready.

The full list of commands accepted by this bot can be found 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 23, 2020
@minikube-bot
Copy link
Collaborator

Can one of the admins verify this patch?

@TravisBuddy
Copy link

Travis tests have failed

Hey @legal90,
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="fb5f7eb58509191e27bdad87056c7eb2d82cdd1b"" ./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: unparam: failed prerequisites: [buildssa@k8s.io/minikube/pkg/minikube/node: analysis skipped: errors in package: [/home/travis/gopath/src/github.com/kubernetes/minikube/pkg/minikube/node/start.go:42:2: could not import k8s.io/minikube/pkg/minikube/cluster (/home/travis/gopath/src/github.com/kubernetes/minikube/pkg/minikube/cluster/ip.go:76:35: PrlSrvCtlPath not declared by package driver)]] 
WARN [runner] Can't run linter unused: buildssa: analysis skipped: errors in package: [/home/travis/gopath/src/github.com/kubernetes/minikube/pkg/minikube/cluster/ip.go:76:35: PrlSrvCtlPath not declared by package driver -: could not load export data: no export data for "k8s.io/minikube/pkg/minikube/cluster"] 
ERRO Running error: buildssa: analysis skipped: errors in package: [/home/travis/gopath/src/github.com/kubernetes/minikube/pkg/minikube/cluster/ip.go:76:35: PrlSrvCtlPath not declared by package driver -: could not load export data: no export data for "k8s.io/minikube/pkg/minikube/cluster"] 
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

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="fb5f7eb58509191e27bdad87056c7eb2d82cdd1b"" ./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/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: downloading k8s.io/api v0.17.3
go: downloading github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: downloading golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: downloading github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: downloading github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: downloading github.com/spf13/pflag v1.0.5
go: downloading k8s.io/apimachinery v0.17.3
go: extracting github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: extracting github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: downloading github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: extracting github.com/spf13/pflag v1.0.5
go: extracting github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: extracting github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: downloading github.com/opencontainers/go-digest v1.0.0-rc1
go: extracting k8s.io/apimachinery v0.17.3
go: downloading github.com/shirou/gopsutil v2.18.12+incompatible
go: downloading github.com/otiai10/copy v1.0.2
go: extracting github.com/opencontainers/go-digest v1.0.0-rc1
go: downloading github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: extracting github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: extracting github.com/shirou/gopsutil v2.18.12+incompatible
go: extracting github.com/otiai10/copy v1.0.2
go: downloading k8s.io/kubernetes v1.17.3
go: downloading k8s.io/client-go v0.17.3
go: downloading github.com/google/gofuzz v1.0.0
go: downloading github.com/docker/go-units v0.4.0
go: extracting github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading github.com/spf13/viper v1.6.1
go: extracting github.com/spf13/viper v1.6.1
go: extracting golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: extracting github.com/google/gofuzz v1.0.0
go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
go: extracting github.com/docker/go-units v0.4.0
go: downloading github.com/spf13/cobra v1.0.0
go: downloading github.com/gogo/protobuf v1.3.1
go: extracting github.com/cenkalti/backoff v2.2.1+incompatible
go: downloading github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: extracting github.com/spf13/cobra v1.0.0
go: downloading k8s.io/klog v1.0.0
go: extracting github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: downloading github.com/mitchellh/mapstructure v1.1.2
go: downloading github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: extracting k8s.io/klog v1.0.0
go: extracting github.com/mitchellh/mapstructure v1.1.2
go: downloading gopkg.in/ini.v1 v1.51.1
go: extracting github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: downloading github.com/blang/semver v3.5.0+incompatible
go: extracting github.com/blang/semver v3.5.0+incompatible
go: downloading github.com/spf13/afero v1.2.2
go: extracting gopkg.in/ini.v1 v1.51.1
go: downloading github.com/olekukonko/tablewriter v0.0.4
go: extracting github.com/spf13/afero v1.2.2
go: downloading github.com/spf13/cast v1.3.1
go: extracting github.com/olekukonko/tablewriter v0.0.4
go: downloading golang.org/x/text v0.3.2
go: extracting k8s.io/client-go v0.17.3
go: extracting github.com/gogo/protobuf v1.3.1
go: extracting k8s.io/api v0.17.3
go: extracting github.com/spf13/cast v1.3.1
go: downloading github.com/magiconair/properties v1.8.1
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: extracting github.com/magiconair/properties v1.8.1
go: downloading github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: downloading github.com/pelletier/go-toml v1.6.0
go: downloading github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading github.com/pkg/errors v0.9.1
go: extracting github.com/pelletier/go-toml v1.6.0
go: extracting github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: downloading github.com/subosito/gotenv v1.2.0
go: extracting github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: downloading sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.0+incompatible
go: extracting github.com/pkg/errors v0.9.1
go: downloading golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: extracting github.com/spf13/jwalterweatherman v1.1.0
go: extracting golang.org/x/text v0.3.2
go: downloading github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
go: downloading cloud.google.com/go v0.45.1
go: downloading github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: extracting github.com/hashicorp/hcl v1.0.0
go: extracting github.com/subosito/gotenv v1.2.0
go: downloading github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: extracting sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.0+incompatible
go: downloading github.com/prometheus/client_golang v1.1.0
go: downloading google.golang.org/api v0.9.0
go: extracting github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
go: downloading github.com/mattn/go-runewidth v0.0.7
go: extracting github.com/mattn/go-runewidth v0.0.7
go: downloading github.com/golang/protobuf v1.3.2
go: extracting golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: downloading github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: extracting github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: downloading github.com/googleapis/gnostic v0.3.0
go: extracting github.com/prometheus/client_golang v1.1.0
go: downloading golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: extracting cloud.google.com/go v0.45.1
go: extracting k8s.io/kubernetes v1.17.3
go: extracting github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: extracting github.com/golang/protobuf v1.3.2
go: downloading github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: extracting gopkg.in/inf.v0 v0.9.1
go: downloading github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef
go: downloading github.com/cheggaaa/pb v1.0.27
go: downloading github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: extracting github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: extracting github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: downloading github.com/google/uuid v1.1.1
go: downloading github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: extracting github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: extracting github.com/googleapis/gnostic v0.3.0
go: extracting golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: downloading golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: downloading k8s.io/kubectl v0.17.3
go: downloading gopkg.in/yaml.v2 v2.2.8
go: downloading github.com/aws/aws-sdk-go v1.27.1
go: extracting google.golang.org/api v0.9.0
go: extracting github.com/cheggaaa/pb v1.0.27
go: extracting github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef
go: downloading golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: extracting github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: downloading sigs.k8s.io/yaml v1.1.0
go: downloading github.com/cheggaaa/pb/v3 v3.0.1
go: downloading github.com/davecgh/go-spew v1.1.1
go: extracting golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: downloading github.com/docker/go-connections v0.4.0
go: extracting gopkg.in/yaml.v2 v2.2.8
go: extracting github.com/google/uuid v1.1.1
go: downloading github.com/imdario/mergo v0.3.8
go: extracting github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: downloading github.com/ulikunitz/xz v0.5.5
go: downloading google.golang.org/grpc v1.26.0
go: extracting k8s.io/kubectl v0.17.3
go: extracting github.com/aws/aws-sdk-go v1.27.1
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: extracting github.com/cheggaaa/pb/v3 v3.0.1
go: extracting sigs.k8s.io/yaml v1.1.0
go: extracting golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: downloading github.com/mattn/go-isatty v0.0.11
go: downloading github.com/hashicorp/go-cleanhttp v0.5.0
go: extracting github.com/davecgh/go-spew v1.1.1
go: downloading github.com/hashicorp/go-version v1.1.0
go: downloading github.com/libvirt/libvirt-go v3.4.0+incompatible
go: extracting github.com/mitchellh/go-homedir v1.1.0
go: extracting github.com/imdario/mergo v0.3.8
go: downloading github.com/prometheus/common v0.6.0
go: extracting github.com/docker/go-connections v0.4.0
go: downloading google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: extracting github.com/ulikunitz/xz v0.5.5
go: extracting google.golang.org/grpc v1.26.0
go: downloading github.com/miekg/dns v1.1.4
go: extracting golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: downloading github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: downloading github.com/cpuguy83/go-md2man v1.0.10
go: downloading github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: extracting github.com/hashicorp/go-cleanhttp v0.5.0
go: extracting github.com/hashicorp/go-version v1.1.0
go: extracting github.com/libvirt/libvirt-go v3.4.0+incompatible
go: downloading github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: extracting github.com/mattn/go-isatty v0.0.11
go: downloading k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: downloading github.com/mattn/go-colorable v0.1.2
go: downloading github.com/docker/distribution v2.7.1+incompatible
go: extracting github.com/prometheus/common v0.6.0
go: extracting github.com/miekg/dns v1.1.4
go: extracting github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: extracting github.com/cpuguy83/go-md2man v1.0.10
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0
go: extracting google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: downloading k8s.io/kube-proxy v0.17.3
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
go: extracting github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: downloading k8s.io/cluster-bootstrap v0.17.3
go: downloading github.com/fsnotify/fsnotify v1.4.7
go: downloading k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
go: extracting github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: extracting k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: extracting github.com/mattn/go-colorable v0.1.2
go: extracting github.com/docker/distribution v2.7.1+incompatible
go: downloading github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: downloading github.com/sirupsen/logrus v1.4.2
go: downloading github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: downloading github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: extracting github.com/cpuguy83/go-md2man/v2 v2.0.0
go: extracting k8s.io/cluster-bootstrap v0.17.3
go: extracting k8s.io/kube-proxy v0.17.3
go: extracting github.com/matttproud/golang_protobuf_extensions v1.0.1
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: downloading k8s.io/component-base v0.17.3
go: downloading github.com/hashicorp/golang-lru v0.5.3
go: downloading github.com/mitchellh/go-testing-interface v1.0.0
go: extracting github.com/fsnotify/fsnotify v1.4.7
go: extracting k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
go: downloading k8s.io/kubelet v0.17.3
go: downloading github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: extracting github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: extracting github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: downloading github.com/VividCortex/ewma v1.1.1
go: extracting github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: extracting github.com/sirupsen/logrus v1.4.2
go: downloading github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: extracting github.com/russross/blackfriday/v2 v2.0.1
go: extracting github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: extracting github.com/mitchellh/go-testing-interface v1.0.0
go: downloading github.com/fatih/color v1.7.0
go: extracting k8s.io/component-base v0.17.3
go: downloading github.com/googleapis/gax-go/v2 v2.0.5
go: downloading go.opencensus.io v0.22.0
go: extracting k8s.io/kubelet v0.17.3
go: downloading github.com/opencontainers/image-spec v1.0.1
go: downloading github.com/hashicorp/go-safetemp v1.0.0
go: extracting github.com/hashicorp/golang-lru v0.5.3
go: downloading github.com/modern-go/reflect2 v1.0.1
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
go: extracting github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: extracting github.com/VividCortex/ewma v1.1.1
go: extracting github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: downloading github.com/json-iterator/go v1.1.8
go: downloading github.com/mitchellh/go-wordwrap v1.0.0
go: extracting github.com/shurcooL/sanitized_anchor_name v1.0.0
go: extracting github.com/fatih/color v1.7.0
go: downloading github.com/beorn7/perks v1.0.1
go: extracting github.com/modern-go/reflect2 v1.0.1
go: extracting github.com/googleapis/gax-go/v2 v2.0.5
go: downloading github.com/docker/docker-credential-helpers v0.6.3
go: extracting github.com/hashicorp/go-safetemp v1.0.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: extracting go.opencensus.io v0.22.0
go: downloading github.com/prometheus/procfs v0.0.5
go: extracting github.com/opencontainers/image-spec v1.0.1
go: downloading github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
go: downloading github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: extracting github.com/mitchellh/go-wordwrap v1.0.0
go: extracting github.com/json-iterator/go v1.1.8
go: extracting github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
go: extracting github.com/beorn7/perks v1.0.1
go: extracting github.com/prometheus/procfs v0.0.5
go: extracting github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: extracting github.com/docker/docker-credential-helpers v0.6.3
go: extracting github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
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 k8s.io/client-go v0.17.3
go: finding github.com/olekukonko/tablewriter v0.0.4
go: finding github.com/blang/semver v3.5.0+incompatible
go: finding github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: finding github.com/spf13/viper v1.6.1
go: finding golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: finding github.com/libvirt/libvirt-go v3.4.0+incompatible
go: finding github.com/mattn/go-runewidth v0.0.7
go: finding github.com/imdario/mergo v0.3.8
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/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 golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: finding github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: finding github.com/gogo/protobuf v1.3.1
go: finding github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: finding github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
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/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: finding github.com/hashicorp/hcl v1.0.0
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/shirou/gopsutil v2.18.12+incompatible
go: finding github.com/magiconair/properties v1.8.1
go: finding github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: finding github.com/google/gofuzz v1.0.0
go: finding github.com/mitchellh/mapstructure v1.1.2
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/pelletier/go-toml v1.6.0
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/cenkalti/backoff v2.2.1+incompatible
go: finding github.com/docker/docker-credential-helpers v0.6.3
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/googleapis/gax-go/v2 v2.0.5
go: finding github.com/prometheus/client_golang v1.1.0
go: finding github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: finding github.com/spf13/jwalterweatherman v1.1.0
go: finding k8s.io/kubernetes v1.17.3
go: finding gopkg.in/yaml.v2 v2.2.8
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 google.golang.org/api v0.9.0
go: finding google.golang.org/grpc v1.26.0
go: finding github.com/subosito/gotenv v1.2.0
go: finding github.com/shurcooL/sanitized_anchor_name v1.0.0
go: finding github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: finding go.opencensus.io v0.22.0
go: finding gopkg.in/ini.v1 v1.51.1
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/fatih/color v1.7.0
go: finding github.com/beorn7/perks v1.0.1
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/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4
go: finding golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: finding github.com/hashicorp/golang-lru v0.5.3
go: finding github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: finding github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
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/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: finding github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
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 sigs.k8s.io/yaml v1.1.0
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 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/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
# k8s.io/minikube/pkg/minikube/cluster
pkg/minikube/cluster/ip.go:76:28: undefined: "k8s.io/minikube/pkg/minikube/driver".PrlSrvCtlPath
FAIL	k8s.io/minikube/cmd/minikube/cmd [build failed]
ok  	k8s.io/minikube/cmd/minikube/cmd/config	0.542s	coverage: 21.6% of statements
ok  	k8s.io/minikube/pkg/addons	0.037s	coverage: 56.9% of statements
ok  	k8s.io/minikube/pkg/drivers	0.011s	coverage: 19.6% of statements
ok  	k8s.io/minikube/pkg/drivers/hyperkit	0.003s	coverage: 77.3% of statements
# k8s.io/minikube/pkg/minikube/cluster [k8s.io/minikube/pkg/minikube/cluster.test]
pkg/minikube/cluster/ip.go:76: undefined: "k8s.io/minikube/pkg/minikube/driver".PrlSrvCtlPath
ok  	k8s.io/minikube/pkg/drivers/kvm	0.045s	coverage: 2.3% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper	0.698s	coverage: 55.7% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/bsutil	0.061s	coverage: 63.2% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/bsutil/ktmpl	0.011s	coverage: 100.0% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/images	0.009s	coverage: 88.9% of statements
FAIL	k8s.io/minikube/pkg/minikube/cluster [build failed]
ok  	k8s.io/minikube/pkg/minikube/command	0.011s	coverage: 3.8% of statements
ok  	k8s.io/minikube/pkg/minikube/config	0.177s	coverage: 67.3% of statements
ok  	k8s.io/minikube/pkg/minikube/cruntime	0.030s	coverage: 40.6% of statements
ok  	k8s.io/minikube/pkg/minikube/docker	0.015s	coverage: 20.8% of statements
ok  	k8s.io/minikube/pkg/minikube/driver	0.019s	coverage: 37.3% of statements
ok  	k8s.io/minikube/pkg/minikube/extract	0.006s	coverage: 58.8% of statements
ok  	k8s.io/minikube/pkg/minikube/kubeconfig	0.027s	coverage: 77.0% of statements
ok  	k8s.io/minikube/pkg/minikube/localpath	0.004s	coverage: 51.9% of statements
ok  	k8s.io/minikube/pkg/minikube/logs	0.040s	coverage: 1.3% of statements
ok  	k8s.io/minikube/pkg/minikube/machine	1.734s	coverage: 38.6% of statements
ok  	k8s.io/minikube/pkg/minikube/notify	0.012s	coverage: 92.9% of statements
ok  	k8s.io/minikube/pkg/minikube/out	0.043s	coverage: 67.4% of statements
ok  	k8s.io/minikube/pkg/minikube/perf	0.279s	coverage: 54.7% of statements
ok  	k8s.io/minikube/pkg/minikube/problem	0.008s	coverage: 91.7% of statements
ok  	k8s.io/minikube/pkg/minikube/proxy	0.011s	coverage: 77.0% of statements
ok  	k8s.io/minikube/pkg/minikube/registry	0.007s	coverage: 75.5% of statements
ok  	k8s.io/minikube/pkg/minikube/service	0.074s	coverage: 84.2% of statements
ok  	k8s.io/minikube/pkg/minikube/storageclass	0.017s	coverage: 100.0% of statements
ok  	k8s.io/minikube/pkg/minikube/sysinit	0.015s	coverage: 6.5% of statements
ok  	k8s.io/minikube/pkg/minikube/translate	0.011s	coverage: 10.5% of statements
ok  	k8s.io/minikube/pkg/minikube/tunnel	1.624s	coverage: 64.2% of statements
ok  	k8s.io/minikube/pkg/util	1.253s	coverage: 77.9% of statements
ok  	k8s.io/minikube/pkg/util/lock	0.008s	coverage: 18.2% of statements
ok  	k8s.io/minikube/pkg/util/retry	0.002s	coverage: 0.0% of statements
FAIL
Makefile:271: recipe for target 'test' failed
make: *** [test] Error 32

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

Updating gimme

$ git clone --depth=50 https://github.com/kubernetes/minikube.git kubernetes/minikube
Cloning into 'kubernetes/minikube'...
remote: Enumerating objects: 11099, done.
remote: Counting objects: 100% (11099/11099), done.
remote: Compressing objects: 100% (4250/4250), done.
remote: Total 11099 (delta 7432), reused 9252 (delta 6185), pack-reused 0
Receiving objects: 100% (11099/11099), 66.20 MiB | 33.54 MiB/s, done.
Resolving deltas: 100% (7432/7432), done.
Checking out files: 100% (973/973), done.
$ cd kubernetes/minikube
$ git fetch origin +refs/pull/8259/merge:
remote: Enumerating objects: 27, done.
remote: Counting objects: 100% (27/27), done.
remote: Compressing objects: 100% (11/11), done.
remote: Total 19 (delta 15), reused 11 (delta 8), pack-reused 0
Unpacking objects: 100% (19/19), done.
From https://github.com/kubernetes/minikube
 * branch            refs/pull/8259/merge -> FETCH_HEAD
$ git checkout -qf FETCH_HEAD

$ 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_export_go 1.13.8 github.com/kubernetes/minikube

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

$ 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"
$ gimme version
v1.5.4
$ go version
go version go1.13.8 linux/amd64
$ 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-build260570551=/tmp/go-build -gno-record-gcc-switches"
$ travis_install_go_dependencies 1.13.8 -v
Makefile detected
$ 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="fb5f7eb58509191e27bdad87056c7eb2d82cdd1b"" -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/pkg/errors v0.9.1
go: downloading github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: downloading github.com/spf13/viper v1.6.1
go: downloading github.com/blang/semver v3.5.0+incompatible
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/shirou/gopsutil v2.18.12+incompatible
go: extracting github.com/spf13/viper v1.6.1
go: downloading k8s.io/client-go v0.17.3
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/pflag v1.0.5
go: downloading gopkg.in/yaml.v2 v2.2.8
go: extracting github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: downloading github.com/spf13/afero v1.2.2
go: downloading k8s.io/apimachinery v0.17.3
go: extracting github.com/pkg/errors v0.9.1
go: downloading github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: extracting github.com/machine-drivers/machine v0.7.1-0.20200323212942-41eb826190d8
go: extracting github.com/blang/semver v3.5.0+incompatible
go: extracting github.com/spf13/afero v1.2.2
go: extracting gopkg.in/yaml.v2 v2.2.8
go: downloading github.com/hashicorp/hcl v1.0.0
go: extracting k8s.io/client-go v0.17.3
go: extracting k8s.io/apimachinery v0.17.3
go: downloading github.com/spf13/cast v1.3.1
go: downloading github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: downloading github.com/magiconair/properties v1.8.1
go: extracting github.com/hashicorp/hcl v1.0.0
go: downloading golang.org/x/text v0.3.2
go: extracting github.com/google/go-containerregistry v0.0.0-20200131185320-aec8da010de2
go: extracting github.com/spf13/cast v1.3.1
go: downloading k8s.io/kubectl v0.17.3
go: extracting github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: extracting github.com/magiconair/properties v1.8.1
go: downloading github.com/gogo/protobuf v1.3.1
go: downloading github.com/pelletier/go-toml v1.6.0
go: downloading github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
go: downloading k8s.io/api v0.17.3
go: extracting github.com/cenkalti/backoff v2.2.1+incompatible
go: extracting github.com/gogo/protobuf v1.3.1
go: downloading github.com/subosito/gotenv v1.2.0
go: extracting github.com/spf13/jwalterweatherman v1.1.0
go: extracting github.com/pelletier/go-toml v1.6.0
go: downloading golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: extracting golang.org/x/text v0.3.2
go: extracting github.com/subosito/gotenv v1.2.0
go: extracting github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: extracting golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: downloading cloud.google.com/go v0.45.1
go: downloading github.com/spf13/cobra v1.0.0
go: extracting k8s.io/kubectl v0.17.3
go: extracting github.com/spf13/cobra v1.0.0
go: downloading github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: extracting github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: downloading golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: extracting k8s.io/api v0.17.3
go: downloading github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: downloading github.com/mitchellh/go-testing-interface v1.0.0
go: downloading golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: extracting github.com/mitchellh/go-testing-interface v1.0.0
go: downloading golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: extracting cloud.google.com/go v0.45.1
go: extracting golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9
go: extracting golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: extracting github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: extracting golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073
go: downloading google.golang.org/api v0.9.0
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: downloading github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: downloading github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: downloading github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: downloading github.com/cheggaaa/pb v1.0.27
go: downloading gopkg.in/ini.v1 v1.51.1
go: extracting github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: extracting github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: downloading github.com/googleapis/gnostic v0.3.0
go: extracting github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: downloading github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: extracting github.com/cheggaaa/pb v1.0.27
go: downloading github.com/docker/go-units v0.4.0
go: extracting github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/cheggaaa/pb/v3 v3.0.1
go: extracting gopkg.in/ini.v1 v1.51.1
go: downloading github.com/ulikunitz/xz v0.5.5
go: extracting github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: downloading github.com/mitchellh/mapstructure v1.1.2
go: extracting github.com/cheggaaa/pb/v3 v3.0.1
go: extracting github.com/docker/go-units v0.4.0
go: downloading github.com/mattn/go-colorable v0.1.2
go: extracting github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: downloading github.com/davecgh/go-spew v1.1.1
go: extracting github.com/googleapis/gnostic v0.3.0
go: extracting github.com/mattn/go-colorable v0.1.2
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: extracting github.com/ulikunitz/xz v0.5.5
go: extracting github.com/mitchellh/mapstructure v1.1.2
go: downloading github.com/hashicorp/go-version v1.1.0
go: downloading github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: extracting github.com/davecgh/go-spew v1.1.1
go: downloading github.com/imdario/mergo v0.3.8
go: extracting github.com/hashicorp/go-version v1.1.0
go: downloading golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: extracting github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading github.com/hashicorp/go-safetemp v1.0.0
go: downloading k8s.io/kubernetes v1.17.3
go: extracting github.com/hashicorp/go-safetemp v1.0.0
go: extracting golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: downloading github.com/fatih/color v1.7.0
go: downloading github.com/golang/protobuf v1.3.2
go: extracting github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: downloading github.com/fsnotify/fsnotify v1.4.7
go: extracting github.com/fatih/color v1.7.0
go: downloading github.com/mattn/go-isatty v0.0.11
go: extracting github.com/imdario/mergo v0.3.8
go: downloading github.com/VividCortex/ewma v1.1.1
go: extracting github.com/fsnotify/fsnotify v1.4.7
go: extracting github.com/mattn/go-isatty v0.0.11
go: downloading github.com/google/gofuzz v1.0.0
go: downloading k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: extracting github.com/golang/protobuf v1.3.2
go: extracting k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: extracting github.com/VividCortex/ewma v1.1.1
go: downloading github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: downloading github.com/otiai10/copy v1.0.2
go: extracting github.com/google/gofuzz v1.0.0
go: downloading google.golang.org/grpc v1.26.0
go: downloading github.com/mitchellh/go-wordwrap v1.0.0
go: extracting google.golang.org/api v0.9.0
go: extracting github.com/otiai10/copy v1.0.2
go: extracting google.golang.org/grpc v1.26.0
go: extracting github.com/mitchellh/go-wordwrap v1.0.0
go: downloading github.com/opencontainers/go-digest v1.0.0-rc1
go: downloading github.com/mattn/go-runewidth v0.0.7
go: downloading github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading k8s.io/klog v1.0.0
go: downloading github.com/cpuguy83/go-md2man v1.0.10
go: downloading go.opencensus.io v0.22.0
go: extracting github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: extracting k8s.io/kubernetes v1.17.3
go: downloading github.com/olekukonko/tablewriter v0.0.4
go: downloading sigs.k8s.io/yaml v1.1.0
go: downloading github.com/modern-go/reflect2 v1.0.1
go: extracting github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: extracting github.com/mattn/go-runewidth v0.0.7
go: extracting k8s.io/klog v1.0.0
go: extracting go.opencensus.io v0.22.0
go: extracting github.com/opencontainers/go-digest v1.0.0-rc1
go: extracting github.com/cpuguy83/go-md2man v1.0.10
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: downloading github.com/docker/distribution v2.7.1+incompatible
go: downloading k8s.io/component-base v0.17.3
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0
go: downloading k8s.io/cluster-bootstrap v0.17.3
go: downloading github.com/opencontainers/image-spec v1.0.1
go: extracting github.com/olekukonko/tablewriter v0.0.4
go: extracting sigs.k8s.io/yaml v1.1.0
go: extracting github.com/modern-go/reflect2 v1.0.1
go: downloading github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading k8s.io/kube-proxy v0.17.3
go: extracting github.com/cpuguy83/go-md2man/v2 v2.0.0
go: extracting github.com/opencontainers/image-spec v1.0.1
go: downloading github.com/json-iterator/go v1.1.8
go: extracting k8s.io/cluster-bootstrap v0.17.3
go: downloading github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: downloading github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: extracting gopkg.in/inf.v0 v0.9.1
go: extracting github.com/docker/distribution v2.7.1+incompatible
go: extracting k8s.io/component-base v0.17.3
go: downloading github.com/hashicorp/golang-lru v0.5.3
go: downloading golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: extracting github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: extracting github.com/google/go-cmp v0.3.2-0.20191028172631-481baca67f93
go: extracting k8s.io/kube-proxy v0.17.3
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: downloading github.com/googleapis/gax-go/v2 v2.0.5
go: downloading github.com/docker/go-connections v0.4.0
go: extracting google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: downloading github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: extracting github.com/hashicorp/golang-lru v0.5.3
go: extracting golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: downloading github.com/sirupsen/logrus v1.4.2
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/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: downloading github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: downloading github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: downloading github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: extracting github.com/googleapis/gax-go/v2 v2.0.5
go: downloading k8s.io/kubelet v0.17.3
go: extracting github.com/docker/go-connections v0.4.0
go: downloading github.com/hashicorp/go-cleanhttp v0.5.0
go: extracting github.com/russross/blackfriday/v2 v2.0.1
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
go: extracting github.com/sirupsen/logrus v1.4.2
go: extracting github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: extracting github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
go: extracting github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: extracting github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: downloading github.com/docker/docker-credential-helpers v0.6.3
go: extracting github.com/shurcooL/sanitized_anchor_name v1.0.0
go: extracting github.com/hashicorp/go-cleanhttp v0.5.0
go: extracting k8s.io/kubelet v0.17.3
go: extracting github.com/docker/docker-credential-helpers v0.6.3
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/pkg/errors v0.9.1
go: finding github.com/imdario/mergo v0.3.8
go: finding github.com/blang/semver v3.5.0+incompatible
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 cloud.google.com/go v0.45.1
go: finding github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: finding github.com/sayboras/dockerclient v0.0.0-20191231050035-015626177a97
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 golang.org/x/text v0.3.2
go: finding github.com/gogo/protobuf v1.3.1
go: finding github.com/docker/go-units v0.4.0
go: finding github.com/docker/distribution v2.7.1+incompatible
go: finding github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: finding github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: finding github.com/docker/docker-credential-helpers v0.6.3
go: finding github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936
go: finding github.com/spf13/viper v1.6.1
go: finding github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: finding github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: finding golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
go: finding github.com/shirou/gopsutil v2.18.12+incompatible
go: finding github.com/spf13/cobra 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 google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24
go: finding github.com/fsnotify/fsnotify v1.4.7
go: finding github.com/hashicorp/hcl v1.0.0
go: finding github.com/opencontainers/go-digest v1.0.0-rc1
go: finding google.golang.org/api v0.9.0
go: finding github.com/magiconair/properties v1.8.1
go: finding google.golang.org/grpc v1.26.0
go: finding k8s.io/klog v1.0.0
go: finding github.com/mitchellh/mapstructure v1.1.2
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/pelletier/go-toml v1.6.0
go: finding github.com/spf13/afero v1.2.2
go: finding github.com/cenkalti/backoff v2.2.1+incompatible
go: finding github.com/spf13/cast v1.3.1
go: finding github.com/VividCortex/ewma v1.1.1
go: finding github.com/docker/go-connections v0.4.0
go: finding github.com/spf13/jwalterweatherman v1.1.0
go: finding golang.org/x/net v0.0.0-20200301022130-244492dfa37a
go: finding github.com/subosito/gotenv v1.2.0
go: finding github.com/golang/protobuf v1.3.2
go: finding github.com/fatih/color v1.7.0
go: finding gopkg.in/ini.v1 v1.51.1
go: finding gopkg.in/yaml.v2 v2.2.8
go: finding github.com/json-iterator/go v1.1.8
go: finding github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: finding k8s.io/api v0.17.3
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/reflect2 v1.0.1
go: finding gopkg.in/inf.v0 v0.9.1
go: finding golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45
go: finding github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: finding github.com/google/gofuzz v1.0.0
go: finding github.com/hashicorp/golang-lru v0.5.3
go: finding github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: finding github.com/mattn/go-runewidth v0.0.7
go: finding k8s.io/kubectl v0.17.3
go: finding github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: finding github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: finding github.com/sirupsen/logrus v1.4.2
go: finding k8s.io/kubernetes v1.17.3
go: finding github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: finding sigs.k8s.io/yaml v1.1.0
go: finding github.com/mitchellh/go-wordwrap v1.0.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 github.com/davecgh/go-spew v1.1.1
go: finding github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: finding k8s.io/cluster-bootstrap v0.17.3
go: finding github.com/hashicorp/go-cleanhttp v0.5.0
go: finding golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
go: finding github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: finding k8s.io/utils v0.0.0-20200229041039-0a110f9eb7ab
go: finding github.com/hashicorp/go-safetemp v1.0.0
go: finding github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: finding github.com/hashicorp/go-version v1.1.0
go: finding github.com/cpuguy83/go-md2man/v2 v2.0.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/pkg/minikube/cluster
pkg/minikube/cluster/ip.go:76:28: undefined: "k8s.io/minikube/pkg/minikube/driver".PrlSrvCtlPath
Makefile:164: recipe for target 'out/minikube' failed
make: *** [out/minikube] Error 2
TravisBuddy Request Identifier: 0b6d30f0-9d19-11ea-8472-279b0b07e116

@k8s-ci-robot k8s-ci-robot added cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. and removed cncf-cla: no Indicates the PR's author has not signed the CNCF CLA. labels May 23, 2020
@codecov-commenter
Copy link

codecov-commenter commented May 23, 2020

Codecov Report

Merging #8259 into master will decrease coverage by 0.05%.
The diff coverage is 0.00%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #8259      +/-   ##
==========================================
- Coverage   34.46%   34.40%   -0.06%     
==========================================
  Files         147      147              
  Lines        9428     9444      +16     
==========================================
  Hits         3249     3249              
- Misses       5780     5796      +16     
  Partials      399      399              
Impacted Files Coverage Δ
pkg/minikube/cluster/ip.go 0.00% <0.00%> (ø)
pkg/minikube/driver/driver_linux.go 0.00% <ø> (ø)

@legal90
Copy link
Contributor Author

legal90 commented May 23, 2020

It seems that these CI check failures are not related to this PR

  • functional_test_docker_windows
  • functional_test_hyperv_windows

Copy link
Member

@medyagh medyagh left a comment

Choose a reason for hiding this comment

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

this looks like a good PR ! just minor changes needed, can you also put the output before/after this PR?

pkg/minikube/cluster/ip.go Outdated Show resolved Hide resolved
Rename "cmd*" var to "bin*" in the parallels-specific block
@legal90
Copy link
Contributor Author

legal90 commented May 23, 2020

Thank you, @medyagh! I added the output before/after this PR to the top message and also renamed the variable, as you asked.

Copy link
Member

@medyagh medyagh left a comment

Choose a reason for hiding this comment

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

looks good to me, thank you very much for fixing this !

@medyagh
Copy link
Member

medyagh commented May 24, 2020

/ok-to-test

@k8s-ci-robot k8s-ci-robot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels May 24, 2020
@minikube-pr-bot
Copy link

kvm2 Driver
Times for minikube: [64.83835388899999 64.53290428099999 65.26805592000001]
Average time for minikube: 64.87977136333332

Times for Minikube (PR 8259): [64.501283271 62.56648873 62.328824960000006]
Average time for Minikube (PR 8259): 63.13219898699999

Averages Time Per Log

+--------------------------------+-----------+--------------------+
|              LOG               | MINIKUBE  | MINIKUBE (PR 8259) |
+--------------------------------+-----------+--------------------+
| * minikube v1.10.1 on Debian   |  0.060229 |           0.063225 |
|                           9.11 |           |                    |
| * Using the kvm2 driver based  |  0.019515 |           0.020099 |
| on existing profile            |           |                    |
| * Starting control plane node  |  0.005101 |           0.002990 |
| minikube in cluster minikube   |           |                    |
| * Creating kvm2 VM (CPUs=2,    | 40.545688 |          40.399716 |
| Memory=3700MB, Disk=20000MB)   |           |                    |
| ...                            |           |                    |
| * Preparing Kubernetes v1.18.2 | 22.026621 |          20.601519 |
| on Docker 19.03.8 ...          |           |                    |
| * Verifying Kubernetes         |  1.311800 |           1.231682 |
| components...                  |           |                    |
| * Enabled addons:              |  0.827351 |           0.734430 |
| default-storageclass,          |           |                    |
| storage-provisioner            |           |                    |
| * Done! kubectl is now         |  0.079954 |           0.074351 |
| configured to use "minikube"   |           |                    |
|                                |  0.003513 |           0.004186 |
+--------------------------------+-----------+--------------------+

docker Driver
Times for minikube: [26.498966686 26.271696587 26.281302745999998]
Average time for minikube: 26.350655339666663

Times for Minikube (PR 8259): [27.714082698000002 27.046909114999995 27.339831469]
Average time for Minikube (PR 8259): 27.366941093999998

Averages Time Per Log

+----------------------------------------+-----------+--------------------+
|                  LOG                   | MINIKUBE  | MINIKUBE (PR 8259) |
+----------------------------------------+-----------+--------------------+
| * minikube v1.10.1 on Debian           |  0.075641 |           0.077426 |
|                                   9.11 |           |                    |
| * Using the docker driver              |  0.002480 |           0.002337 |
| based on existing profile              |           |                    |
| * Starting control plane node          |  0.057100 |           0.055900 |
| minikube in cluster minikube           |           |                    |
| * Creating docker container            |  7.459705 |           7.528362 |
| (CPUs=2, Memory=3700MB) ...            |           |                    |
| * Preparing Kubernetes v1.18.2         |  0.116189 |           0.115644 |
| on Docker 19.03.2 ...                  |           |                    |
|   -                                    | 17.498172 |          17.727255 |
| kubeadm.pod-network-cidr=10.244.0.0/16 |           |                    |
| * Verifying Kubernetes                 |  1.072702 |           1.775214 |
| components...                          |           |                    |
| * Enabled addons:                      |  0.002606 |           0.002494 |
| default-storageclass,                  |           |                    |
| storage-provisioner                    |           |                    |
| * Done! kubectl is now                 |  0.062155 |           0.078474 |
| configured to use "minikube"           |           |                    |
|                                        |  0.003904 |           0.003836 |
+----------------------------------------+-----------+--------------------+

@medyagh medyagh merged commit 20179ef into kubernetes:master May 26, 2020
@legal90 legal90 deleted the parallels-host-ip branch May 27, 2020 05:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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/S Denotes a PR that changes 10-29 lines, ignoring generated files.
Projects
None yet
7 participants