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

kubeadm.go: apiserver status: Stopped #5167

Closed
robotsp opened this issue Aug 22, 2019 · 3 comments
Closed

kubeadm.go: apiserver status: Stopped #5167

robotsp opened this issue Aug 22, 2019 · 3 comments
Labels
co/none-driver triage/duplicate Indicates an issue is a duplicate of other open issue.

Comments

@robotsp
Copy link

robotsp commented Aug 22, 2019

The exact command to reproduce the issue:
I install minikube on Centos 7, and run ./minikube start --registry-mirror=https://registry.docker-cn.com --vm-driver="none" --v=3 --alsologtostderr.

The full output of the command that failed:

I0822 13:29:29.896181 89080 kubeadm.go:385] apiserver status: Stopped, err:
I0822 13:29:30.196147 89080 kubeadm.go:143] https://10.125.164.134:8443/healthz response: Get https://10.125.164.134:8443/healthz: dial tcp 10.125.164.134:8443: connect: connection refused
I0822 13:29:30.196179 89080 kubeadm.go:385] apiserver status: Stopped, err:
I0822 13:29:30.496310 89080 kubeadm.go:143] https://10.125.164.134:8443/healthz response: Get https://10.125.164.134:8443/healthz: dial tcp 10.125.164.134:8443: connect: connection refused

The output of the minikube logs command:

  • Aug 22 13:57:58 b2b-qa-bigu-cdh-server-0 kubelet[123466]: E0822 13:57:58.605238 123466 event.go:249] Unable to write event: 'Patch https://localhost:8443/api/v1/namespaces/kube-system/events/etcd-minikube.15bd0066187ac16c: dial tcp [::1]:8443: connect: connection refused' (may retry after sleeping)
  • Aug 22 13:57:58 b2b-qa-bigu-cdh-server-0 kubelet[123466]: E0822 13:57:58.675433 123466 reflector.go:125] k8s.io/kubernetes/pkg/kubelet/config/apiserver.go:47: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=spec.nodeName%3Dminikube&limit=500&resourceVersion=0: dial tcp [::1]:8443: connect: connection refused
  • Aug 22 13:57:58 b2b-qa-bigu-cdh-server-0 kubelet[123466]: E0822 13:57:58.684445 123466 kubelet.go:2248] node "minikube" not found
  • Aug 22 13:57:58 b2b-qa-bigu-cdh-server-0 kubelet[123466]: E0822 13:57:58.784828 123466 kubelet.go:2248] node "minikube" not found
  • Aug 22 13:57:58 b2b-qa-bigu-cdh-server-0 kubelet[123466]: E0822 13:57:58.875293 123466 reflector.go:125] k8s.io/client-go/informers/factory.go:133: Failed to list *v1beta1.CSIDriver: Get https://localhost:8443/apis/storage.k8s.io/v1beta1/csidrivers?limit=500&resourceVersion=0: dial tcp [::1]:8443: connect: connection refused
  • Aug 22 13:57:58 b2b-qa-bigu-cdh-server-0 kubelet[123466]: E0822 13:57:58.884995 123466 kubelet.go:2248] node "minikube" not found
  • Aug 22 13:57:58 b2b-qa-bigu-cdh-server-0 kubelet[123466]: E0822 13:57:58.985248 123466 kubelet.go:2248] node "minikube" not found

The operating system version:

Centos 7.4

Thanks!

@tstromberg
Copy link
Contributor

Hi @robotsp! Thank you for the bug report.

Do you mind including the full output of the minikube start command? I cannot tell from this bug report what version of minikube you are running on, and what error minikube displayed.

Also, the output of this commands would be quite useful:

docker ps -a

Thank you!

@tstromberg tstromberg added co/none-driver triage/needs-information Indicates an issue needs more information in order to work on it. labels Aug 22, 2019
@robotsp
Copy link
Author

robotsp commented Aug 23, 2019

minikube start:

[root@b2b-qa-bigu-cdh-server-0 bin]# ./minikube start

  • minikube v1.3.1 on Centos 7.4.1708
    ! Please don't run minikube as root or with 'sudo' privileges. It isn't necessary with virtualbox driver.
  • Downloading VM boot image ...

X Failed to cache ISO

docker ps -a

[root@b2b-qa-bigu-cdh-server-0 bin]# docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
0442e9667896 k8s.gcr.io/pause:3.1 "/pause" 32 hours ago Up 32 hours k8s_POD_kube-scheduler-minikube_kube-system_abfcb4f52e957b11256c1f6841d49700_0
d841551fdb57 k8s.gcr.io/pause:3.1 "/pause" 32 hours ago Up 32 hours k8s_POD_kube-controller-manager-minikube_kube-system_ee64e541bb4d363d421723c0b41350a3_0
5b0a7078e2c4 k8s.gcr.io/pause:3.1 "/pause" 32 hours ago Up 32 hours k8s_POD_kube-apiserver-minikube_kube-system_916a8125060ca39bc9e7f2bda203939b_0
64e3026be670 k8s.gcr.io/pause:3.1 "/pause" 32 hours ago Up 32 hours k8s_POD_etcd-minikube_kube-system_4205e0c977ec2de4445e48ea518a5cc1_0
23b0524b5b4a k8s.gcr.io/pause:3.1 "/pause" 32 hours ago Up 32 hours k8s_POD_kube-addon-manager-minikube_kube-system_65a31d2b812b11a2035f37c8a742e46f_0
731c1918df5f registry "/entrypoint.sh /etc…" 4 days ago Up 4 days 0.0.0.0:5000->5000/tcp registry
a2f8e4dace45 centos:6 "/bin/bash" 4 days ago Exited (127) 4 days ago test01

@sharifelgamal sharifelgamal added the kind/support Categorizes issue or PR as a support question. label Sep 20, 2019
@sharifelgamal
Copy link
Collaborator

Looks like you can't download our ISO from GCS, we have a bug open (#4774) that will allow everyone to download ISOs from Github directly.

Closing this as a dupe.

@sharifelgamal sharifelgamal added triage/duplicate Indicates an issue is a duplicate of other open issue. and removed triage/needs-information Indicates an issue needs more information in order to work on it. kind/support Categorizes issue or PR as a support question. labels Sep 20, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
co/none-driver triage/duplicate Indicates an issue is a duplicate of other open issue.
Projects
None yet
Development

No branches or pull requests

3 participants