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

Improve parsing of start flag apiserver-names #9385

Merged
merged 2 commits into from
Nov 11, 2020

Conversation

bluestealth
Copy link
Contributor

@bluestealth bluestealth commented Oct 3, 2020

Fixes #8990
Uses StringSliceVar instead of StringArrayVar so that comma separated SANs can be processed on first run and then interpreted correctly on subsequent runs. RFC 1035 does not allow for commas in DNS names, so this shouldn't be an issue.

[bluestealth@neptune minikube]$ ./out/minikube start -p testing --memory 2048 --apiserver-names=1,2,3 --apiserver-names=4
😄  [testing] minikube v1.13.1 on Fedora 32
✨  Using the kvm2 driver based on user configuration
👍  Starting control plane node testing in cluster testing
🔥  Creating kvm2 VM (CPUs=4, Memory=2048MB, Disk=20000MB) ...
🎁  Preparing Kubernetes v1.19.2 on CRI-O 1.18.3 ...
🔗  Configuring bridge CNI (Container Networking Interface) ...
🔎  Verifying Kubernetes components...
🌟  Enabled addons: default-storageclass, storage-provisioner
🏄  Done! kubectl is now configured to use "testing" by default
[bluestealth@neptune minikube]$ cat ~/.minikube/profiles/testing/config.json  | jq .KubernetesConfig.APIServerNames
[
  "1",
  "2",
  "3",
  "4"
]
[bluestealth@neptune minikube]$ ./out/minikube start -p testing --memory 2048 --apiserver-names=1,2,3 --apiserver-names=4
😄  [testing] minikube v1.13.1 on Fedora 32
✨  Using the kvm2 driver based on existing profile
👍  Starting control plane node testing in cluster testing
🏃  Updating the running kvm2 "testing" VM ...
🎁  Preparing Kubernetes v1.19.2 on CRI-O 1.18.3 ...
🔗  Configuring bridge CNI (Container Networking Interface) ...
🔎  Verifying Kubernetes components...
🌟  Enabled addons: storage-provisioner, default-storageclass
🏄  Done! kubectl is now configured to use "testing" by default
[bluestealth@neptune minikube]$ cat ~/.minikube/profiles/testing/config.json  | jq .KubernetesConfig.APIServerNames
[
  "1",
  "2",
  "3",
  "4"
]
[bluestealth@neptune minikube]$ ./out/minikube start -p testing --memory 2048 --apiserver-names=1 --apiserver-names=4
😄  [testing] minikube v1.13.1 on Fedora 32
✨  Using the kvm2 driver based on existing profile
👍  Starting control plane node testing in cluster testing
🏃  Updating the running kvm2 "testing" VM ...
🎁  Preparing Kubernetes v1.19.2 on CRI-O 1.18.3 ...
🔗  Configuring bridge CNI (Container Networking Interface) ...
🔎  Verifying Kubernetes components...
🌟  Enabled addons: storage-provisioner, default-storageclass
🏄  Done! kubectl is now configured to use "testing" by default
[bluestealth@neptune minikube]$ cat ~/.minikube/profiles/testing/config.json  | jq .KubernetesConfig.APIServerNames
[
  "1",
  "4"
]
[bluestealth@neptune minikube]$ minikube delete -p testing
🔥  Deleting "testing" in kvm2 ...
💀  Removed all traces of the "testing" cluster.
[bluestealth@neptune minikube]$ ./out/minikube start -p testing --memory 2048 --apiserver-names=1 --apiserver-names=4
😄  [testing] minikube v1.13.1 on Fedora 32
✨  Using the kvm2 driver based on user configuration
👍  Starting control plane node testing in cluster testing
🔥  Creating kvm2 VM (CPUs=4, Memory=2048MB, Disk=20000MB) ...
🎁  Preparing Kubernetes v1.19.2 on CRI-O 1.18.3 ...
🔗  Configuring bridge CNI (Container Networking Interface) ...
🔎  Verifying Kubernetes components...
🌟  Enabled addons: storage-provisioner, default-storageclass
🏄  Done! kubectl is now configured to use "testing" by default
[bluestealth@neptune minikube]$ cat ~/.minikube/profiles/testing/config.json  | jq .KubernetesConfig.APIServerNames
[
  "1",
  "4"
]
[bluestealth@neptune minikube]$ ./out/minikube start -p testing --memory 2048 --apiserver-names=1 --apiserver-names=4
😄  [testing] minikube v1.13.1 on Fedora 32
✨  Using the kvm2 driver based on existing profile
👍  Starting control plane node testing in cluster testing
🏃  Updating the running kvm2 "testing" VM ...
🎁  Preparing Kubernetes v1.19.2 on CRI-O 1.18.3 ...
🔗  Configuring bridge CNI (Container Networking Interface) ...
🔎  Verifying Kubernetes components...
🌟  Enabled addons: storage-provisioner, default-storageclass
🏄  Done! kubectl is now configured to use "testing" by default
[bluestealth@neptune minikube]$ cat ~/.minikube/profiles/testing/config.json  | jq .KubernetesConfig.APIServerNames
[
  "1",
  "4"
]
[bluestealth@neptune minikube]$ openssl x509 -in ~/.minikube/profiles/testing/apiserver.crt -noout -text | grep DNS
                DNS:1, DNS:4, DNS:minikubeCA, DNS:control-plane.minikube.internal, DNS:kubernetes.default.svc.cluster.local, DNS:kubernetes.default.svc, DNS:kubernetes.default, DNS:kubernetes, DNS:localhost, IP Address:192.168.39.49, IP Address:10.96.0.1, IP Address:127.0.0.1, IP Address:10.0.0.1

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

Hi @bluestealth. 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 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 Oct 3, 2020
@k8s-ci-robot k8s-ci-robot added the size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. label Oct 3, 2020
@minikube-bot
Copy link
Collaborator

Can one of the admins verify this patch?

@TravisBuddy
Copy link

Travis tests have failed

Hey @bluestealth,
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
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.14.6.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.3/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
PATH="/home/travis/gopath/bin:/home/travis/.gimme/versions/go1.14.6.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.3/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.13.1 -X k8s.io/minikube/pkg/version.isoVersion=v1.13.1 -X k8s.io/minikube/pkg/version.isoPath=minikube/iso -X k8s.io/minikube/pkg/version.gitCommitID="01acb67de68704db1965e10553969579c3f9f88d" -X k8s.io/minikube/pkg/version.storageProvisionerVersion=v3" ./test.sh
= schema_check ==========================================================
go: downloading github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f
go: downloading github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
go: downloading github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
ok
= go test ===============================================================
go: downloading github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
go: downloading k8s.io/api v0.17.3
go: downloading github.com/libvirt/libvirt-go v3.4.0+incompatible
go: downloading k8s.io/apimachinery v0.17.3
go: downloading github.com/spf13/viper v1.7.0
go: downloading github.com/machine-drivers/machine v0.7.1-0.20200810185219-7d42fed1b770
go: downloading github.com/cloudevents/sdk-go/v2 v2.1.0
go: downloading github.com/mattn/go-isatty v0.0.12
go: downloading github.com/spf13/cobra v1.0.0
go: downloading github.com/magiconair/properties v1.8.1
go: downloading github.com/google/slowjam v0.0.0-20200530021616-df27e642fe7b
go: downloading github.com/pelletier/go-toml v1.8.0
go: downloading golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6
go: downloading github.com/spf13/afero v1.2.2
go: downloading github.com/fsnotify/fsnotify v1.4.9
go: downloading github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/pkg/profile v0.0.0-20161223203901-3a8809bd8a80
go: downloading github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
go: downloading github.com/olekukonko/tablewriter v0.0.4
go: downloading github.com/spf13/cast v1.3.1
go: downloading github.com/blang/semver v3.5.0+incompatible
go: downloading github.com/afbjorklund/go-containerregistry v0.0.0-20200902152226-fbad78ec2813
go: downloading github.com/opencontainers/go-digest v1.0.0-rc1
go: downloading k8s.io/client-go v0.17.3
go: downloading github.com/sayboras/dockerclient v1.0.0
go: downloading github.com/gogo/protobuf v1.3.1
go: downloading github.com/pkg/browser v0.0.0-20160118053552-9302be274faa
go: downloading github.com/cenkalti/backoff v2.2.1+incompatible
go: downloading go.opencensus.io v0.22.3
go: downloading github.com/google/uuid v1.1.1
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: downloading github.com/mattn/go-runewidth v0.0.7
go: downloading golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading github.com/shirou/gopsutil v2.18.12+incompatible
go: downloading k8s.io/kubernetes v1.18.5
go: downloading github.com/google/gofuzz v1.1.0
go: downloading golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a
go: downloading gopkg.in/yaml.v2 v2.3.0
go: downloading github.com/mitchellh/mapstructure v1.3.1
go: downloading github.com/juju/mutex v0.0.0-20180619145857-d21b13acf4bf
go: downloading github.com/google/go-github v17.0.0+incompatible
go: downloading sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.0+incompatible
go: downloading github.com/pkg/errors v0.9.1
go: downloading k8s.io/kubectl v0.17.3
go: downloading golang.org/x/text v0.3.2
go: downloading cloud.google.com/go v0.57.0
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading github.com/hooklift/iso9660 v0.0.0-20170318115843-1cf07e5970d8
go: downloading github.com/docker/go-units v0.4.0
go: downloading golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading sigs.k8s.io/sig-storage-lib-external-provisioner/v5 v5.0.0
go: downloading github.com/subosito/gotenv v1.2.0
go: downloading github.com/machine-drivers/docker-machine-driver-vmware v0.1.1
go: downloading github.com/mitchellh/go-ps v0.0.0-20190716172923-621e5597135b
go: downloading google.golang.org/api v0.25.0
go: downloading github.com/otiai10/copy v1.0.2
go: downloading golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2
go: downloading cloud.google.com/go/storage v1.8.0
go: downloading github.com/russross/blackfriday v1.5.3-0.20200218234912-41c5fccfd6f6
go: downloading github.com/prometheus/client_golang v1.4.1
go: downloading github.com/docker/cli v0.0.0-20200303162255-7d407207c304
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading github.com/juju/errors v0.0.0-20190806202954-0232dcc7464d
go: downloading github.com/opencontainers/image-spec v1.0.1
go: downloading github.com/docker/go-connections v0.4.0
go: downloading github.com/golang/protobuf v1.4.2
go: downloading k8s.io/utils v0.0.0-20200324210504-a9aa75ae1b89
go: downloading google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece
go: downloading github.com/golang-collections/collections v0.0.0-20130729185459-604e922904d3
go: downloading github.com/google/go-querystring v1.0.0
go: downloading golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
go: downloading google.golang.org/protobuf v1.24.0
go: downloading github.com/prometheus/procfs v0.0.8
go: downloading github.com/mitchellh/go-wordwrap v1.0.0
go: downloading github.com/json-iterator/go v1.1.9
go: downloading github.com/hashicorp/golang-lru v0.5.3
go: downloading github.com/lightstep/tracecontext.go v0.0.0-20181129014701-1757c391b1ac
go: downloading github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57
go: downloading github.com/sirupsen/logrus v1.6.0
go: downloading google.golang.org/grpc v1.29.1
go: downloading github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e
go: downloading github.com/modern-go/reflect2 v1.0.1
go: downloading github.com/afbjorklund/go-getter v1.4.1-0.20190910175809-eb9f6c26742c
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash v1.1.0
go: downloading github.com/c4milo/gotoolkit v0.0.0-20170318115440-bcc06269efa9
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/cespare/xxhash/v2 v2.1.1
go: downloading golang.org/x/sys v0.0.0-20200523222454-059865788121
go: downloading k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6
go: downloading github.com/hashicorp/go-cleanhttp v0.5.1
go: downloading github.com/prometheus/common v0.9.1
go: downloading github.com/aws/aws-sdk-go v1.31.6
go: downloading github.com/ulikunitz/xz v0.5.7
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/hashicorp/go-version v1.2.0
go: downloading gopkg.in/ini.v1 v1.56.0
go: downloading github.com/googleapis/gnostic v0.3.0
go: downloading github.com/cheggaaa/pb v1.0.27
go: downloading github.com/cheggaaa/pb/v3 v3.0.1
go: downloading k8s.io/cluster-bootstrap v0.17.3
go: downloading github.com/prometheus/client_model v0.2.0
go: downloading github.com/VividCortex/ewma v1.1.1
go: downloading github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd
go: downloading k8s.io/component-base v0.17.3
go: downloading github.com/juju/clock v0.0.0-20190205081909-9c5c9712527c
go: downloading github.com/mitchellh/go-testing-interface v1.0.0
go: downloading github.com/intel-go/cpuid v0.0.0-20181003105527-1a4a6f06a1c6
go: downloading github.com/googleapis/gax-go v2.0.2+incompatible
go: downloading github.com/googleapis/gax-go/v2 v2.0.5
go: downloading github.com/google/go-cmp v0.4.1
go: downloading github.com/mattn/go-colorable v0.1.6
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
go: downloading k8s.io/klog v1.0.0
go: downloading github.com/docker/distribution v2.7.1+incompatible
go: downloading github.com/docker/docker-credential-helpers v0.6.3
go: downloading github.com/hashicorp/go-safetemp v1.0.0
go: downloading github.com/fatih/color v1.9.0
go: downloading github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d
go: downloading github.com/cloudfoundry-attic/jibber_jabber v0.0.0-20151120183258-bcc4c8345a21
go: downloading github.com/cpuguy83/go-md2man v1.0.10
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0
go: downloading sigs.k8s.io/yaml v1.2.0
go: downloading github.com/miekg/dns v1.1.27
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: downloading go.uber.org/zap v1.10.0
go: downloading github.com/imdario/mergo v0.3.9
go: downloading github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
go: downloading go.uber.org/atomic v1.4.0
go: downloading go.uber.org/multierr v1.1.0
go: downloading github.com/jmespath/go-jmespath v0.3.0
go: downloading github.com/evanphx/json-patch v4.5.0+incompatible
go: downloading golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
go: downloading github.com/pmezard/go-difflib v1.0.0
ERROR: logging before flag.Parse: I1003 06:03:56.978629   12026 translate.go:106] Setting Language to en-US ...
--- FAIL: TestGenerateDocs (0.03s)
    --- FAIL: TestGenerateDocs/start (0.00s)
        generate-docs_test.go:47: Docs are not updated. Please run `make generate-docs` to update commands documentation:   strings.Join({
              	... // 712 identical bytes
              	" used if you want to make the apiserver available from outside t",
              	"he machine (default \"minikubeCA\")\n      --apiserver-names string",
            - 	"s    ",
            + 	"Array",
              	"       A set of apiserver names which are used in the generated ",
              	"certificate for kubernetes.  This can be used if you want to mak",
              	... // 10450 identical bytes
              }, "")
E1003 06:04:01.888524   12026 out.go:141] [unset errFile]: ! Not passing HTTP_PROXY=127.0.0.1:3128 to docker env.
E1003 06:04:01.889022   12026 out.go:141] [unset errFile]: ! Not passing HTTP_PROXY=127.0.0.1:3128 to docker env.
E1003 06:04:01.889173   12026 out.go:141] [unset errFile]: ! Not passing HTTP_PROXY=localhost:3128 to docker env.
E1003 06:04:01.889410   12026 out.go:141] [unset errFile]: ! Not passing HTTP_PROXY=localhost:3128 to docker env.
E1003 06:04:01.889518   12026 out.go:141] [unset errFile]: ! Not passing HTTP_PROXY=http://localhost:3128 to docker env.
E1003 06:04:01.889757   12026 out.go:141] [unset errFile]: ! Not passing HTTP_PROXY=http://localhost:3128 to docker env.
E1003 06:04:01.889866   12026 out.go:141] [unset errFile]: ! Not passing HTTP_PROXY=http://127.0.0.1:3128 to docker env.
E1003 06:04:01.890103   12026 out.go:141] [unset errFile]: ! Not passing HTTP_PROXY=http://127.0.0.1:3128 to docker env.
FAIL
coverage: 18.4% of statements
FAIL	k8s.io/minikube/cmd/minikube/cmd	4.988s
ok  	k8s.io/minikube/cmd/minikube/cmd/config	0.049s	coverage: 21.2% of statements
ok  	k8s.io/minikube/pkg/addons	0.062s	coverage: 48.6% of statements
ok  	k8s.io/minikube/pkg/drivers	0.012s	coverage: 19.6% of statements
ok  	k8s.io/minikube/pkg/drivers/hyperkit	0.020s	coverage: 77.3% of statements
ok  	k8s.io/minikube/pkg/drivers/kic/oci	0.023s	coverage: 6.6% of statements
ok  	k8s.io/minikube/pkg/drivers/kvm	0.027s	coverage: 2.3% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper	1.850s	coverage: 55.7% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/bsutil	0.104s	coverage: 62.4% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/bsutil/ktmpl	0.013s	coverage: 100.0% of statements
ok  	k8s.io/minikube/pkg/minikube/bootstrapper/images	0.005s	coverage: 82.0% of statements
ok  	k8s.io/minikube/pkg/minikube/cluster	0.061s	coverage: 14.9% of statements
ok  	k8s.io/minikube/pkg/minikube/command	0.030s	coverage: 4.2% of statements
ok  	k8s.io/minikube/pkg/minikube/config	0.150s	coverage: 68.1% of statements
ok  	k8s.io/minikube/pkg/minikube/cruntime	0.052s	coverage: 36.7% of statements
ok  	k8s.io/minikube/pkg/minikube/docker	0.037s	coverage: 20.8% of statements
ok  	k8s.io/minikube/pkg/minikube/driver	0.023s	coverage: 37.6% of statements
ok  	k8s.io/minikube/pkg/minikube/extract	0.006s	coverage: 58.6% of statements
ok  	k8s.io/minikube/pkg/minikube/image	0.041s	coverage: 3.0% of statements
ok  	k8s.io/minikube/pkg/minikube/kubeconfig	0.029s	coverage: 81.2% of statements
ok  	k8s.io/minikube/pkg/minikube/localpath	0.011s	coverage: 49.3% of statements
ok  	k8s.io/minikube/pkg/minikube/logs	0.042s	coverage: 1.3% of statements
ok  	k8s.io/minikube/pkg/minikube/machine	1.091s	coverage: 35.9% of statements
ok  	k8s.io/minikube/pkg/minikube/mustload	0.064s	coverage: 10.5% of statements
ok  	k8s.io/minikube/pkg/minikube/notify	0.055s	coverage: 92.9% of statements
ok  	k8s.io/minikube/pkg/minikube/out	0.102s	coverage: 66.0% of statements
ok  	k8s.io/minikube/pkg/minikube/out/register	0.007s	coverage: 54.5% of statements
ok  	k8s.io/minikube/pkg/minikube/perf	4.014s	coverage: 21.1% of statements
ok  	k8s.io/minikube/pkg/minikube/proxy	0.012s	coverage: 68.7% of statements
ok  	k8s.io/minikube/pkg/minikube/reason	0.009s	coverage: 80.0% of statements
ok  	k8s.io/minikube/pkg/minikube/registry	0.011s	coverage: 75.5% of statements
ok  	k8s.io/minikube/pkg/minikube/service	0.088s	coverage: 84.2% of statements
ok  	k8s.io/minikube/pkg/minikube/shell	0.002s	coverage: 97.1% of statements
ok  	k8s.io/minikube/pkg/minikube/storageclass	0.029s	coverage: 100.0% of statements
ok  	k8s.io/minikube/pkg/minikube/style	0.006s	coverage: 100.0% of statements
ok  	k8s.io/minikube/pkg/minikube/sysinit	0.028s	coverage: 6.5% of statements
ok  	k8s.io/minikube/pkg/minikube/translate	0.012s	coverage: 10.5% of statements
ok  	k8s.io/minikube/pkg/minikube/tunnel	1.639s	coverage: 64.2% of statements
ok  	k8s.io/minikube/pkg/util	1.021s	coverage: 75.7% of statements
ok  	k8s.io/minikube/pkg/util/lock	0.008s	coverage: 22.2% of statements
ok  	k8s.io/minikube/pkg/util/retry	0.005s	coverage: 0.0% of statements
FAIL
Makefile:320: recipe for target 'test' failed
make: *** [test] Error 32
TravisBuddy Request Identifier: 7a5082a0-053e-11eb-9f67-09c25eb247e4

@priyawadhwa
Copy link

/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 Oct 7, 2020
Copy link

@priyawadhwa priyawadhwa left a comment

Choose a reason for hiding this comment

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

LGTM thanks for fixing this! Just waiting for integration tests to run before merging.

@minikube-pr-bot
Copy link

kvm2 Driver
Times for minikube: 62.3s 60.7s 60.4s
Average time for minikube: 61.1s

Times for Minikube (PR 9385): 60.8s 59.3s 61.6s
Average time for Minikube (PR 9385): 60.5s

Averages Time Per Log

+--------------------------------+----------+--------------------+
|              LOG               | MINIKUBE | MINIKUBE (PR 9385) |
+--------------------------------+----------+--------------------+
| * minikube v1.14.0-beta.0 on   | 0.0s     | 0.0s               |
| Debian 9.11                    |          |                    |
| * Using the kvm2 driver based  | 0.0s     | 0.0s               |
| on user configuration          |          |                    |
| * Starting control plane node  | 0.0s     | 0.0s               |
| minikube in cluster minikube   |          |                    |
| * Creating kvm2 VM (CPUs=2,    | 35.7s    | 34.6s              |
| Memory=3700MB, Disk=20000MB)   |          |                    |
| ...                            |          |                    |
| * Preparing Kubernetes v1.19.2 | 23.6s    | 24.0s              |
| on Docker 19.03.12 ...         |          |                    |
| * Verifying Kubernetes         | 1.5s     | 1.7s               |
| components...                  |          |                    |
| * Enabled addons:              | 0.1s     | 0.3s               |
| storage-provisioner,           |          |                    |
| default-storageclass           |          |                    |
|                                | 0.0s     | 0.1s               |
| * Want kubectl v1.19.2? Try    |          |                    |
| 'minikube kubectl -- get pods  |          |                    |
| -A'                            |          |                    |
| * Done! kubectl is now         |          |                    |
| configured to use "minikube"   |          |                    |
| by default                     |          |                    |
+--------------------------------+----------+--------------------+

docker Driver
Times for minikube: 27.8s 27.9s 29.1s
Average time for minikube: 28.3s

Times for Minikube (PR 9385): 27.6s 28.7s 29.5s
Average time for Minikube (PR 9385): 28.6s

Averages Time Per Log

+--------------------------------+----------+--------------------+
|              LOG               | MINIKUBE | MINIKUBE (PR 9385) |
+--------------------------------+----------+--------------------+
| * minikube v1.14.0-beta.0 on   | 0.2s     | 0.2s               |
| Debian 9.11                    |          |                    |
| * Using the docker driver      | 0.1s     | 0.1s               |
| based on user configuration    |          |                    |
| * Starting control plane node  | 0.1s     | 0.1s               |
| minikube in cluster minikube   |          |                    |
| * Creating docker container    | 8.8s     | 8.9s               |
| (CPUs=2, Memory=3700MB) ...    |          |                    |
| * Preparing Kubernetes v1.19.2 | 18.0s    | 18.2s              |
| on Docker 19.03.8 ...          |          |                    |
| * Verifying Kubernetes         | 1.1s     | 1.1s               |
| components...                  |          |                    |
| * Enabled addons:              | 0.1s     | 0.1s               |
| default-storageclass,          |          |                    |
| storage-provisioner            |          |                    |
|                                | 0.0s     | 0.0s               |
| * Want kubectl v1.19.2? Try    |          |                    |
| 'minikube kubectl -- get pods  |          |                    |
| -A'                            |          |                    |
| * Done! kubectl is now         |          |                    |
| configured to use "minikube"   |          |                    |
| by default                     |          |                    |
+--------------------------------+----------+--------------------+

@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: bluestealth, priyawadhwa

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 approved Indicates a PR has been approved by an approver from all required OWNERS files. label Oct 28, 2020
@sharifelgamal
Copy link
Collaborator

Thanks for your contribution!

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/XS Denotes a PR that changes 0-9 lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

--apiserver-names does not work as expected when you run minikube start a second time
7 participants