kubernetes / minikube

Run Kubernetes locally
https://minikube.sigs.k8s.io/
Apache License 2.0
29.45k stars 4.89k forks source link

How to start the api server with basic auth as authz/authn mode #7866

Closed tasdikrahman closed 4 years ago

tasdikrahman commented 4 years ago

I am trying to start the apiserver with basic auth, by trying to pass BASICAUTH as extra config to minikube when doing minikube start

I want to pass a static basic auth file to the API server as documented here https://kubernetes.io/docs/reference/access-authn-authz/authentication/#static-password-file

But looks like the API server is still not picking up the basic auth after I checked my kubeconfig context.

Things I did

$ minikube start --extra-config=apiserver.authorization-mode=BASICAUTH                                                                                
šŸ˜„  minikube v1.9.2 on Ubuntu 18.04
āœØ  Automatically selected the docker driver
šŸ‘  Starting control plane node m01 in cluster minikube
šŸšœ  Pulling base image ...
šŸ’¾  Downloading Kubernetes v1.18.0 preload ...
    > preloaded-images-k8s-v2-v1.18.0-docker-overlay2-amd64.tar.lz4: 542.91 MiB
šŸ”„  Creating Kubernetes in docker container with (CPUs=2) (4 available), Memory=2200MB (7652MB available) ...
šŸ³  Preparing Kubernetes v1.18.0 on Docker 19.03.2 ...
    ā–Ŗ apiserver.authorization-mode=BASICAUTH
šŸŒŸ  Enabling addons: default-storageclass, storage-provisioner
šŸ„  Done! kubectl is now configured to use "minikube"

Steps to reproduce the issue:

``` $ minikube start --extra-config=apiserver.authorization-mode=BASICAUTH $ kubectl get pods kube-apiserver-minikube -n kube-system -oyaml ... ... spec: containers: - command: - kube-apiserver - --advertise-address=172.17.0.3 - --allow-privileged=true - --authorization-mode=Node,RBAC - --client-ca-file=/var/lib/minikube/certs/ca.crt - --enable-admission-plugins=NamespaceLifecycle,LimitRanger,ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,NodeRestriction,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota - --enable-bootstrap-token-auth=true - --etcd-cafile=/var/lib/minikube/certs/etcd/ca.crt - --etcd-certfile=/var/lib/minikube/certs/apiserver-etcd-client.crt - --etcd-keyfile=/var/lib/minikube/certs/apiserver-etcd-client.key - --etcd-servers=https://127.0.0.1:2379 - --insecure-port=0 - --kubelet-client-certificate=/var/lib/minikube/certs/apiserver-kubelet-client.crt - --kubelet-client-key=/var/lib/minikube/certs/apiserver-kubelet-client.key - --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname - --proxy-client-cert-file=/var/lib/minikube/certs/front-proxy-client.crt - --proxy-client-key-file=/var/lib/minikube/certs/front-proxy-client.key - --requestheader-allowed-names=front-proxy-client - --requestheader-client-ca-file=/var/lib/minikube/certs/front-proxy-ca.crt - --requestheader-extra-headers-prefix=X-Remote-Extra- - --requestheader-group-headers=X-Remote-Group - --requestheader-username-headers=X-Remote-User - --secure-port=8443 - --service-account-key-file=/var/lib/minikube/certs/sa.pub - --service-cluster-ip-range=10.96.0.0/12 - --tls-cert-file=/var/lib/minikube/certs/apiserver.crt - --tls-private-key-file=/var/lib/minikube/certs/apiserver.key image: k8s.gcr.io/kube-apiserver:v1.18.0 imagePullPolicy: IfNotPresent ... ... ```
tasdikrahman commented 4 years ago

I feel we can add this piece of info, if it's missing here https://minikube.sigs.k8s.io/docs/handbook/config/#kubernetes-configuration, was wondering how I can pass that file on local machine to minkube for the key authorization-mode=BASICAUTH, on another note, would that be the right key and value to enable basic auth?

priyawadhwa commented 4 years ago

Hey @tasdikrahman so the --extra-config flag is for passing values to k8s components on startup. For the apiserver to read from a file, you'll need to make sure the file is accessible to the apiserver container and that you pass in the path to the file.

Could you try following the instructions in this comment and see if that fixes this for you? https://github.com/kubernetes/minikube/issues/3438#issuecomment-457067230

tasdikrahman commented 4 years ago

Hello @priyawadhwa ,

I tried what was mentioned in the comment here https://github.com/kubernetes/minikube/issues/3438#issuecomment-457067230

This is what I got

$ minikube start --extra-config=apiserver.basic-auth-file=/Users/tasdikrahman/workspace/work/jaach/minikube/users.csv                    
šŸ˜„  minikube v1.2.0 on darwin (amd64)
šŸ’”  Tip: Use 'minikube start -p <name>' to create a new cluster, or 'minikube delete' to delete this one.
šŸ”„  Restarting existing virtualbox VM for "minikube" ...
āŒ›  Waiting for SSH access ...
šŸ³  Configuring environment for Kubernetes v1.15.0 on Docker 18.09.6
    ā–Ŗ apiserver.basic-auth-file=/Users/tasdikrahman/workspace/work/jaach/minikube/users.csv
šŸ”„  Relaunching Kubernetes v1.15.0 using kubeadm ...

šŸ’£  Error restarting cluster: waiting for apiserver: timed out waiting for the condition

šŸ˜æ  Sorry that minikube crashed. If this was unexpected, we would love to hear from you:
šŸ‘‰  https://github.com/kubernetes/minikube/issues/new
āŒ  Problems detected in "kube-apiserver":
    error: invalid authentication config: open /Users/tasdikrahman/workspace/work/jaach/minikube/users.csv: no such file or directory
āŒ  Problems detected in "kube-addon-manager":
    error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused
    error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused

I am passing the absolute path of the basic auth file here as mentioned in the comment

$ cat /Users/tasdikrahman/workspace/work/jaach/minikube/users.csv
somepassword,johndoe,johndoe123,developers

Here are the detailed logs with --alsologtostderr flag passed while running the command

$ MINIKUBE_IN_STYLE=false minikube --alsologtostderr start --kubernetes-version="v1.13.0" --extra-config=apiserver.basic-auth-file=/Users/tasdikrahman/workspace/work/jaach/minikube/users.csv
``` $ MINIKUBE_IN_STYLE=false minikube --alsologtostderr start --kubernetes-version="v1.13.0" --extra-config=apiserver.basic-auth-file=/Users/tasdikrahman/workspace/work/jaach/minikube/users.csv (minikube/default) W0424 15:59:54.491362 41826 root.go:151] Error reading config file at /Users/tasdikrahman/.minikube/config/config.json: open /Users/tasdikrahman/.minikube/config/config.json: no such file or directory * minikube v1.2.0 on darwin (amd64) I0424 15:59:54.493699 41826 downloader.go:60] Not caching ISO, using https://storage.googleapis.com/minikube/iso/minikube-v1.2.0.iso I0424 15:59:54.493934 41826 start.go:753] Saving config: { "MachineConfig": { "KeepContext": false, "MinikubeISO": "https://storage.googleapis.com/minikube/iso/minikube-v1.2.0.iso", "Memory": 2048, "CPUs": 2, "DiskSize": 20000, "VMDriver": "virtualbox", "ContainerRuntime": "docker", "HyperkitVpnKitSock": "", "HyperkitVSockPorts": [], "XhyveDiskDriver": "ahci-hd", "DockerEnv": null, "InsecureRegistry": null, "RegistryMirror": null, "HostOnlyCIDR": "192.168.99.1/24", "HypervVirtualSwitch": "", "KvmNetwork": "default", "DockerOpt": null, "DisableDriverMounts": false, "NFSShare": [], "NFSSharesRoot": "/nfsshares", "UUID": "", "GPU": false, "Hidden": false, "NoVTXCheck": false }, "KubernetesConfig": { "KubernetesVersion": "v1.13.0", "NodeIP": "", "NodePort": 8443, "NodeName": "minikube", "APIServerName": "minikubeCA", "APIServerNames": null, "APIServerIPs": null, "DNSDomain": "cluster.local", "ContainerRuntime": "docker", "CRISocket": "", "NetworkPlugin": "", "FeatureGates": "", "ServiceCIDR": "10.96.0.0/12", "ImageRepository": "", "ExtraOptions": [ { "Component": "apiserver", "Key": "basic-auth-file", "Value": "/Users/tasdikrahman/workspace/work/jaach/minikube/users.csv" } ], "ShouldLoadCachedImages": true, "EnableDefaultCNI": false } } I0424 15:59:54.494280 41826 cluster.go:90] Machine does not exist... provisioning new machine I0424 15:59:54.494317 41826 cache_images.go:285] Attempting to cache image: gcr.io/k8s-minikube/storage-provisioner:v1.8.1 at /Users/tasdikrahman/.minikube/cache/images/gcr.io/k8s-minikube/storage-provisioner_v1.8.1 I0424 15:59:54.494320 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/kube-scheduler:v1.13.0 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-scheduler_v1.13.0 I0424 15:59:54.494321 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/kube-proxy:v1.13.0 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-proxy_v1.13.0 I0424 15:59:54.494372 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/k8s-dns-sidecar-amd64:1.14.8 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-sidecar-amd64_1.14.8 I0424 15:59:54.494362 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/coredns:1.2.6 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/coredns_1.2.6 I0424 15:59:54.494421 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/pause:3.1 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/pause_3.1 I0424 15:59:54.494348 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/k8s-dns-kube-dns-amd64:1.14.8 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-kube-dns-amd64_1.14.8 I0424 15:59:54.494296 41826 cluster.go:91] Provisioning machine with config: {KeepContext:false MinikubeISO:https://storage.googleapis.com/minikube/iso/minikube-v1.2.0.iso Memory:2048 CPUs:2 DiskSize:20000 VMDriver:virtualbox ContainerRuntime:docker HyperkitVpnKitSock: HyperkitVSockPorts:[] XhyveDiskDriver:ahci-hd DockerEnv:[] InsecureRegistry:[] RegistryMirror:[] HostOnlyCIDR:192.168.99.1/24 HypervVirtualSwitch: KvmNetwork:default Downloader:{} DockerOpt:[] DisableDriverMounts:false NFSShare:[] NFSSharesRoot:/nfsshares UUID: GPU:false Hidden:false NoVTXCheck:false} I0424 15:59:54.494415 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/kube-addon-manager:v9.0 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-addon-manager_v9.0 I0424 15:59:54.494464 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/kube-apiserver:v1.13.0 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-apiserver_v1.13.0 I0424 15:59:54.494321 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/k8s-dns-dnsmasq-nanny-amd64:1.14.8 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-dnsmasq-nanny-amd64_1.14.8 I0424 15:59:54.494360 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/kubernetes-dashboard-amd64:v1.10.1 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kubernetes-dashboard-amd64_v1.10.1 I0424 15:59:54.494422 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/etcd:3.2.24 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/etcd_3.2.24 I0424 15:59:54.494463 41826 cache_images.go:285] Attempting to cache image: k8s.gcr.io/kube-controller-manager:v1.13.0 at /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-controller-manager_v1.13.0 * Creating virtualbox VM (CPUs=2, Memory=2048MB, Disk=20000MB) ... I0424 15:59:55.534859 41826 cache_images.go:309] OPENING: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-proxy_v1.13.0 I0424 15:59:55.538895 41826 cache_images.go:309] OPENING: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-dnsmasq-nanny-amd64_1.14.8 I0424 15:59:55.539085 41826 cache_images.go:309] OPENING: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-scheduler_v1.13.0 I0424 15:59:55.540531 41826 cache_images.go:309] OPENING: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/coredns_1.2.6 I0424 15:59:55.540774 41826 cache_images.go:309] OPENING: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-controller-manager_v1.13.0 I0424 15:59:55.541653 41826 cache_images.go:309] OPENING: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/etcd_3.2.24 I0424 15:59:55.541683 41826 cache_images.go:309] OPENING: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-kube-dns-amd64_1.14.8 I0424 15:59:55.542629 41826 cache_images.go:309] OPENING: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-apiserver_v1.13.0 I0424 15:59:55.561647 41826 cache_images.go:309] OPENING: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-sidecar-amd64_1.14.8 I0424 16:00:27.368057 41826 cache_images.go:82] Successfully cached all images. I0424 16:00:53.491839 41826 ssh_runner.go:101] SSH: sudo rm -f /etc/docker/ca.pem I0424 16:00:53.505448 41826 ssh_runner.go:101] SSH: sudo mkdir -p /etc/docker I0424 16:00:53.511894 41826 ssh_runner.go:182] Transferring 1050 bytes to ca.pem I0424 16:00:53.512521 41826 ssh_runner.go:195] ca.pem: copied 1050 bytes I0424 16:00:53.517070 41826 ssh_runner.go:101] SSH: sudo rm -f /etc/docker/server.pem I0424 16:00:53.522366 41826 ssh_runner.go:101] SSH: sudo mkdir -p /etc/docker I0424 16:00:53.537655 41826 ssh_runner.go:182] Transferring 1127 bytes to server.pem I0424 16:00:53.538686 41826 ssh_runner.go:195] server.pem: copied 1127 bytes I0424 16:00:53.543112 41826 ssh_runner.go:101] SSH: sudo rm -f /etc/docker/server-key.pem I0424 16:00:53.549617 41826 ssh_runner.go:101] SSH: sudo mkdir -p /etc/docker I0424 16:00:53.557413 41826 ssh_runner.go:182] Transferring 1675 bytes to server-key.pem I0424 16:00:53.562045 41826 ssh_runner.go:195] server-key.pem: copied 1675 bytes I0424 16:00:54.584862 41826 start.go:753] Saving config: { "MachineConfig": { "KeepContext": false, "MinikubeISO": "https://storage.googleapis.com/minikube/iso/minikube-v1.2.0.iso", "Memory": 2048, "CPUs": 2, "DiskSize": 20000, "VMDriver": "virtualbox", "ContainerRuntime": "docker", "HyperkitVpnKitSock": "", "HyperkitVSockPorts": [], "XhyveDiskDriver": "ahci-hd", "DockerEnv": null, "InsecureRegistry": null, "RegistryMirror": null, "HostOnlyCIDR": "192.168.99.1/24", "HypervVirtualSwitch": "", "KvmNetwork": "default", "DockerOpt": null, "DisableDriverMounts": false, "NFSShare": [], "NFSSharesRoot": "/nfsshares", "UUID": "", "GPU": false, "Hidden": false, "NoVTXCheck": false }, "KubernetesConfig": { "KubernetesVersion": "v1.13.0", "NodeIP": "192.168.99.101", "NodePort": 8443, "NodeName": "minikube", "APIServerName": "minikubeCA", "APIServerNames": null, "APIServerIPs": null, "DNSDomain": "cluster.local", "ContainerRuntime": "docker", "CRISocket": "", "NetworkPlugin": "", "FeatureGates": "", "ServiceCIDR": "10.96.0.0/12", "ImageRepository": "", "ExtraOptions": [ { "Component": "apiserver", "Key": "basic-auth-file", "Value": "/Users/tasdikrahman/workspace/work/jaach/minikube/users.csv" } ], "ShouldLoadCachedImages": true, "EnableDefaultCNI": false } } I0424 16:00:54.630867 41826 ssh_runner.go:101] SSH: systemctl is-active --quiet service containerd I0424 16:00:54.642188 41826 ssh_runner.go:101] SSH: systemctl is-active --quiet service crio I0424 16:00:54.648672 41826 ssh_runner.go:101] SSH: sudo systemctl stop crio I0424 16:00:54.679883 41826 ssh_runner.go:101] SSH: systemctl is-active --quiet service crio I0424 16:00:54.689476 41826 ssh_runner.go:101] SSH: sudo systemctl start docker I0424 16:00:55.115223 41826 ssh_runner.go:137] Run with output: docker version --format '{{.Server.Version}}' I0424 16:00:55.153635 41826 utils.go:241] > 18.09.6 * Configuring environment for Kubernetes v1.13.0 on Docker 18.09.6 - apiserver.basic-auth-file=/Users/tasdikrahman/workspace/work/jaach/minikube/users.csv I0424 16:00:55.195918 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-scheduler_v1.13.0 I0424 16:00:55.195960 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-sidecar-amd64_1.14.8 I0424 16:00:55.195982 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-proxy_v1.13.0 I0424 16:00:55.196037 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kubernetes-dashboard-amd64_v1.10.1 I0424 16:00:55.196009 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-dnsmasq-nanny-amd64_1.14.8 I0424 16:00:55.196120 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/k8s-dns-sidecar-amd64_1.14.8 I0424 16:00:55.195918 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/gcr.io/k8s-minikube/storage-provisioner_v1.8.1 I0424 16:00:55.195931 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-kube-dns-amd64_1.14.8 I0424 16:00:55.196208 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/kubernetes-dashboard-amd64_v1.10.1 I0424 16:00:55.195934 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/coredns_1.2.6 I0424 16:00:55.195936 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/etcd_3.2.24 I0424 16:00:55.196328 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/k8s-dns-dnsmasq-nanny-amd64_1.14.8 I0424 16:00:55.195934 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-apiserver_v1.13.0 I0424 16:00:55.196437 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/coredns_1.2.6 I0424 16:00:55.196482 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/storage-provisioner_v1.8.1 I0424 16:00:55.195958 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-controller-manager_v1.13.0 I0424 16:00:55.195955 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/pause_3.1 I0424 16:00:55.196083 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/kube-scheduler_v1.13.0 I0424 16:00:55.196597 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/kube-controller-manager_v1.13.0 I0424 16:00:55.196049 41826 cache_images.go:198] Loading image from cache: /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-addon-manager_v9.0 I0424 16:00:55.196611 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/pause_3.1 I0424 16:00:55.196103 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/kube-proxy_v1.13.0 I0424 16:00:55.196677 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/kube-addon-manager_v9.0 I0424 16:00:55.196420 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/etcd_3.2.24 I0424 16:00:55.196507 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/kube-apiserver_v1.13.0 I0424 16:00:55.196510 41826 ssh_runner.go:101] SSH: sudo rm -f /tmp/k8s-dns-kube-dns-amd64_1.14.8 I0424 16:00:55.228648 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.229621 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.235690 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.244368 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.244862 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.246146 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.249861 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.251997 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.255800 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.262799 41826 ssh_runner.go:182] Transferring 20683776 bytes to storage-provisioner_v1.8.1 I0424 16:00:55.283285 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.283526 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.290134 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.290137 41826 ssh_runner.go:101] SSH: sudo mkdir -p /tmp I0424 16:00:55.338050 41826 ssh_runner.go:182] Transferring 46335488 bytes to kube-apiserver_v1.13.0 I0424 16:00:55.338064 41826 ssh_runner.go:182] Transferring 29377536 bytes to kube-proxy_v1.13.0 I0424 16:00:55.338066 41826 ssh_runner.go:182] Transferring 318976 bytes to pause_3.1 I0424 16:00:55.339945 41826 ssh_runner.go:182] Transferring 12205056 bytes to coredns_1.2.6 I0424 16:00:55.339995 41826 ssh_runner.go:182] Transferring 30522368 bytes to kube-addon-manager_v9.0 I0424 16:00:55.341376 41826 ssh_runner.go:182] Transferring 44910592 bytes to kubernetes-dashboard-amd64_v1.10.1 I0424 16:00:55.341389 41826 ssh_runner.go:182] Transferring 63426048 bytes to etcd_3.2.24 I0424 16:00:55.345413 41826 ssh_runner.go:182] Transferring 44569088 bytes to kube-controller-manager_v1.13.0 I0424 16:00:55.475344 41826 ssh_runner.go:182] Transferring 11102208 bytes to k8s-dns-dnsmasq-nanny-amd64_1.14.8 I0424 16:00:55.494478 41826 ssh_runner.go:182] Transferring 13356544 bytes to k8s-dns-kube-dns-amd64_1.14.8 I0424 16:00:55.501669 41826 ssh_runner.go:182] Transferring 11406336 bytes to k8s-dns-sidecar-amd64_1.14.8 I0424 16:00:55.509878 41826 ssh_runner.go:182] Transferring 29306368 bytes to kube-scheduler_v1.13.0 I0424 16:00:55.578422 41826 ssh_runner.go:195] pause_3.1: copied 318976 bytes I0424 16:00:55.716199 41826 docker.go:92] Loading image: /tmp/pause_3.1 I0424 16:00:55.716224 41826 ssh_runner.go:101] SSH: docker load -i /tmp/pause_3.1 I0424 16:00:57.381437 41826 utils.go:241] > Loaded image: k8s.gcr.io/pause:3.1 I0424 16:00:57.385460 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/pause_3.1 I0424 16:00:57.625888 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/pause_3.1 from cache I0424 16:01:02.471256 41826 ssh_runner.go:195] k8s-dns-dnsmasq-nanny-amd64_1.14.8: copied 11102208 bytes I0424 16:01:02.646033 41826 docker.go:92] Loading image: /tmp/k8s-dns-dnsmasq-nanny-amd64_1.14.8 I0424 16:01:02.646066 41826 ssh_runner.go:101] SSH: docker load -i /tmp/k8s-dns-dnsmasq-nanny-amd64_1.14.8 I0424 16:01:02.716692 41826 ssh_runner.go:195] k8s-dns-sidecar-amd64_1.14.8: copied 11406336 bytes I0424 16:01:02.832261 41826 ssh_runner.go:195] coredns_1.2.6: copied 12205056 bytes I0424 16:01:03.521218 41826 ssh_runner.go:195] k8s-dns-kube-dns-amd64_1.14.8: copied 13356544 bytes I0424 16:01:04.621208 41826 ssh_runner.go:195] storage-provisioner_v1.8.1: copied 20683776 bytes I0424 16:01:05.847225 41826 ssh_runner.go:195] kube-proxy_v1.13.0: copied 29377536 bytes I0424 16:01:05.927966 41826 ssh_runner.go:195] kube-scheduler_v1.13.0: copied 29306368 bytes I0424 16:01:06.010413 41826 ssh_runner.go:195] kube-addon-manager_v9.0: copied 30522368 bytes I0424 16:01:06.347231 41826 utils.go:241] > Loaded image: k8s.gcr.io/k8s-dns-dnsmasq-nanny-amd64:1.14.8 I0424 16:01:06.355002 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/k8s-dns-dnsmasq-nanny-amd64_1.14.8 I0424 16:01:06.410409 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-dnsmasq-nanny-amd64_1.14.8 from cache I0424 16:01:06.410460 41826 docker.go:92] Loading image: /tmp/k8s-dns-sidecar-amd64_1.14.8 I0424 16:01:06.410473 41826 ssh_runner.go:101] SSH: docker load -i /tmp/k8s-dns-sidecar-amd64_1.14.8 I0424 16:01:06.989620 41826 ssh_runner.go:195] kube-controller-manager_v1.13.0: copied 44569088 bytes I0424 16:01:07.009591 41826 ssh_runner.go:195] kubernetes-dashboard-amd64_v1.10.1: copied 44910592 bytes I0424 16:01:07.061655 41826 ssh_runner.go:195] kube-apiserver_v1.13.0: copied 46335488 bytes I0424 16:01:07.338172 41826 ssh_runner.go:195] etcd_3.2.24: copied 63426048 bytes I0424 16:01:08.079584 41826 utils.go:241] > Loaded image: k8s.gcr.io/k8s-dns-sidecar-amd64:1.14.8 I0424 16:01:08.087159 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/k8s-dns-sidecar-amd64_1.14.8 I0424 16:01:08.099470 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-sidecar-amd64_1.14.8 from cache I0424 16:01:08.099523 41826 docker.go:92] Loading image: /tmp/coredns_1.2.6 I0424 16:01:08.099534 41826 ssh_runner.go:101] SSH: docker load -i /tmp/coredns_1.2.6 I0424 16:01:09.079594 41826 utils.go:241] > Loaded image: k8s.gcr.io/coredns:1.2.6 I0424 16:01:09.087150 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/coredns_1.2.6 I0424 16:01:09.098771 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/coredns_1.2.6 from cache I0424 16:01:09.098811 41826 docker.go:92] Loading image: /tmp/k8s-dns-kube-dns-amd64_1.14.8 I0424 16:01:09.098820 41826 ssh_runner.go:101] SSH: docker load -i /tmp/k8s-dns-kube-dns-amd64_1.14.8 I0424 16:01:10.183992 41826 utils.go:241] > Loaded image: k8s.gcr.io/k8s-dns-kube-dns-amd64:1.14.8 I0424 16:01:10.190281 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/k8s-dns-kube-dns-amd64_1.14.8 I0424 16:01:10.198360 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/k8s-dns-kube-dns-amd64_1.14.8 from cache I0424 16:01:10.198409 41826 docker.go:92] Loading image: /tmp/storage-provisioner_v1.8.1 I0424 16:01:10.198422 41826 ssh_runner.go:101] SSH: docker load -i /tmp/storage-provisioner_v1.8.1 I0424 16:01:11.745867 41826 utils.go:241] > Loaded image: gcr.io/k8s-minikube/storage-provisioner:v1.8.1 I0424 16:01:11.762234 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/storage-provisioner_v1.8.1 I0424 16:01:11.770606 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/gcr.io/k8s-minikube/storage-provisioner_v1.8.1 from cache I0424 16:01:11.770661 41826 docker.go:92] Loading image: /tmp/kube-proxy_v1.13.0 I0424 16:01:11.770670 41826 ssh_runner.go:101] SSH: docker load -i /tmp/kube-proxy_v1.13.0 I0424 16:01:14.116618 41826 utils.go:241] > Loaded image: k8s.gcr.io/kube-proxy:v1.13.0 I0424 16:01:14.130335 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/kube-proxy_v1.13.0 I0424 16:01:14.137958 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-proxy_v1.13.0 from cache I0424 16:01:14.138012 41826 docker.go:92] Loading image: /tmp/kube-scheduler_v1.13.0 I0424 16:01:14.138026 41826 ssh_runner.go:101] SSH: docker load -i /tmp/kube-scheduler_v1.13.0 I0424 16:01:14.968385 41826 utils.go:241] > Loaded image: k8s.gcr.io/kube-scheduler:v1.13.0 I0424 16:01:14.973773 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/kube-scheduler_v1.13.0 I0424 16:01:14.981074 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-scheduler_v1.13.0 from cache I0424 16:01:14.981102 41826 docker.go:92] Loading image: /tmp/kube-addon-manager_v9.0 I0424 16:01:14.981110 41826 ssh_runner.go:101] SSH: docker load -i /tmp/kube-addon-manager_v9.0 I0424 16:01:16.211919 41826 utils.go:241] > Loaded image: k8s.gcr.io/kube-addon-manager:v9.0 I0424 16:01:16.220879 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/kube-addon-manager_v9.0 I0424 16:01:16.229838 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-addon-manager_v9.0 from cache I0424 16:01:16.229903 41826 docker.go:92] Loading image: /tmp/kube-controller-manager_v1.13.0 I0424 16:01:16.229915 41826 ssh_runner.go:101] SSH: docker load -i /tmp/kube-controller-manager_v1.13.0 I0424 16:01:18.588586 41826 utils.go:241] > Loaded image: k8s.gcr.io/kube-controller-manager:v1.13.0 I0424 16:01:18.600664 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/kube-controller-manager_v1.13.0 I0424 16:01:18.609699 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-controller-manager_v1.13.0 from cache I0424 16:01:18.609731 41826 docker.go:92] Loading image: /tmp/kubernetes-dashboard-amd64_v1.10.1 I0424 16:01:18.609742 41826 ssh_runner.go:101] SSH: docker load -i /tmp/kubernetes-dashboard-amd64_v1.10.1 I0424 16:01:21.306640 41826 utils.go:241] > Loaded image: k8s.gcr.io/kubernetes-dashboard-amd64:v1.10.1 I0424 16:01:21.316995 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/kubernetes-dashboard-amd64_v1.10.1 I0424 16:01:21.326488 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kubernetes-dashboard-amd64_v1.10.1 from cache I0424 16:01:21.326555 41826 docker.go:92] Loading image: /tmp/kube-apiserver_v1.13.0 I0424 16:01:21.326579 41826 ssh_runner.go:101] SSH: docker load -i /tmp/kube-apiserver_v1.13.0 I0424 16:01:23.945243 41826 utils.go:241] > Loaded image: k8s.gcr.io/kube-apiserver:v1.13.0 I0424 16:01:23.957315 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/kube-apiserver_v1.13.0 I0424 16:01:23.966878 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/kube-apiserver_v1.13.0 from cache I0424 16:01:23.966911 41826 docker.go:92] Loading image: /tmp/etcd_3.2.24 I0424 16:01:23.966922 41826 ssh_runner.go:101] SSH: docker load -i /tmp/etcd_3.2.24 I0424 16:01:28.501932 41826 utils.go:241] > Loaded image: k8s.gcr.io/etcd:3.2.24 I0424 16:01:28.516616 41826 ssh_runner.go:101] SSH: sudo rm -rf /tmp/etcd_3.2.24 I0424 16:01:28.529839 41826 cache_images.go:227] Successfully loaded image /Users/tasdikrahman/.minikube/cache/images/k8s.gcr.io/etcd_3.2.24 from cache I0424 16:01:28.529933 41826 cache_images.go:109] Successfully loaded all cached images. I0424 16:01:28.530500 41826 kubeadm.go:501] kubelet v1.13.0 config: [Unit] Wants=docker.socket [Service] ExecStart= ExecStart=/usr/bin/kubelet --allow-privileged=true --authorization-mode=Webhook --bootstrap-kubeconfig=/etc/kubernetes/bootstrap-kubelet.conf --cgroup-driver=cgroupfs --client-ca-file=/var/lib/minikube/certs/ca.crt --cluster-dns=10.96.0.10 --cluster-domain=cluster.local --container-runtime=docker --fail-swap-on=false --hostname-override=minikube --kubeconfig=/etc/kubernetes/kubelet.conf --pod-manifest-path=/etc/kubernetes/manifests [Install] * Downloading kubeadm v1.13.0 * Downloading kubelet v1.13.0 I0424 16:01:42.876911 41826 ssh_runner.go:101] SSH: sudo rm -f /usr/bin/kubeadm I0424 16:01:42.892439 41826 ssh_runner.go:101] SSH: sudo mkdir -p /usr/bin I0424 16:01:42.900824 41826 ssh_runner.go:182] Transferring 36386912 bytes to kubeadm I0424 16:01:43.390477 41826 ssh_runner.go:195] kubeadm: copied 36386912 bytes I0424 16:01:44.830879 41826 ssh_runner.go:101] SSH: sudo rm -f /usr/bin/kubelet I0424 16:01:44.840157 41826 ssh_runner.go:101] SSH: sudo mkdir -p /usr/bin I0424 16:01:44.845819 41826 ssh_runner.go:182] Transferring 112953368 bytes to kubelet I0424 16:01:46.524068 41826 ssh_runner.go:195] kubelet: copied 112953368 bytes I0424 16:01:46.547916 41826 ssh_runner.go:101] SSH: sudo rm -f /lib/systemd/system/kubelet.service I0424 16:01:46.552587 41826 ssh_runner.go:101] SSH: sudo mkdir -p /lib/systemd/system I0424 16:01:46.557959 41826 ssh_runner.go:182] Transferring 222 bytes to kubelet.service I0424 16:01:46.558641 41826 ssh_runner.go:195] kubelet.service: copied 222 bytes I0424 16:01:46.562612 41826 ssh_runner.go:101] SSH: sudo rm -f /etc/systemd/system/kubelet.service.d/10-kubeadm.conf I0424 16:01:46.568114 41826 ssh_runner.go:101] SSH: sudo mkdir -p /etc/systemd/system/kubelet.service.d I0424 16:01:46.573631 41826 ssh_runner.go:182] Transferring 497 bytes to 10-kubeadm.conf I0424 16:01:46.574109 41826 ssh_runner.go:195] 10-kubeadm.conf: copied 497 bytes I0424 16:01:46.578762 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/kubeadm.yaml I0424 16:01:46.585077 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib I0424 16:01:46.591865 41826 ssh_runner.go:182] Transferring 1171 bytes to kubeadm.yaml I0424 16:01:46.592612 41826 ssh_runner.go:195] kubeadm.yaml: copied 1171 bytes I0424 16:01:46.597328 41826 ssh_runner.go:101] SSH: sudo rm -f /etc/kubernetes/manifests/addon-manager.yaml.tmpl I0424 16:01:46.602530 41826 ssh_runner.go:101] SSH: sudo mkdir -p /etc/kubernetes/manifests/ I0424 16:01:46.608699 41826 ssh_runner.go:182] Transferring 1406 bytes to addon-manager.yaml.tmpl I0424 16:01:46.609274 41826 ssh_runner.go:195] addon-manager.yaml.tmpl: copied 1406 bytes I0424 16:01:46.614123 41826 ssh_runner.go:101] SSH: sudo rm -f /etc/kubernetes/addons/storage-provisioner.yaml I0424 16:01:46.619413 41826 ssh_runner.go:101] SSH: sudo mkdir -p /etc/kubernetes/addons I0424 16:01:46.625532 41826 ssh_runner.go:182] Transferring 1709 bytes to storage-provisioner.yaml I0424 16:01:46.626153 41826 ssh_runner.go:195] storage-provisioner.yaml: copied 1709 bytes I0424 16:01:46.631713 41826 ssh_runner.go:101] SSH: sudo rm -f /etc/kubernetes/addons/storageclass.yaml I0424 16:01:46.638146 41826 ssh_runner.go:101] SSH: sudo mkdir -p /etc/kubernetes/addons I0424 16:01:46.644223 41826 ssh_runner.go:182] Transferring 271 bytes to storageclass.yaml I0424 16:01:46.645096 41826 ssh_runner.go:195] storageclass.yaml: copied 271 bytes I0424 16:01:46.650176 41826 ssh_runner.go:101] SSH: sudo systemctl daemon-reload && sudo systemctl start kubelet I0424 16:01:46.733214 41826 certs.go:47] Setting up certificates for IP: 192.168.99.101 I0424 16:01:46.751857 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/minikube/certs/ca.crt I0424 16:01:46.760177 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib/minikube/certs/ I0424 16:01:46.767056 41826 ssh_runner.go:182] Transferring 1066 bytes to ca.crt I0424 16:01:46.767752 41826 ssh_runner.go:195] ca.crt: copied 1066 bytes I0424 16:01:46.774464 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/minikube/certs/ca.key I0424 16:01:46.781365 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib/minikube/certs/ I0424 16:01:46.788402 41826 ssh_runner.go:182] Transferring 1675 bytes to ca.key I0424 16:01:46.789017 41826 ssh_runner.go:195] ca.key: copied 1675 bytes I0424 16:01:46.795027 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/minikube/certs/apiserver.crt I0424 16:01:46.801656 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib/minikube/certs/ I0424 16:01:46.809039 41826 ssh_runner.go:182] Transferring 1298 bytes to apiserver.crt I0424 16:01:46.809668 41826 ssh_runner.go:195] apiserver.crt: copied 1298 bytes I0424 16:01:46.815699 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/minikube/certs/apiserver.key I0424 16:01:46.828135 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib/minikube/certs/ I0424 16:01:46.834495 41826 ssh_runner.go:182] Transferring 1679 bytes to apiserver.key I0424 16:01:46.835157 41826 ssh_runner.go:195] apiserver.key: copied 1679 bytes I0424 16:01:46.840303 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/minikube/certs/proxy-client-ca.crt I0424 16:01:46.845613 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib/minikube/certs/ I0424 16:01:46.852390 41826 ssh_runner.go:182] Transferring 1074 bytes to proxy-client-ca.crt I0424 16:01:46.853075 41826 ssh_runner.go:195] proxy-client-ca.crt: copied 1074 bytes I0424 16:01:46.858859 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/minikube/certs/proxy-client-ca.key I0424 16:01:46.864519 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib/minikube/certs/ I0424 16:01:46.871201 41826 ssh_runner.go:182] Transferring 1679 bytes to proxy-client-ca.key I0424 16:01:46.871863 41826 ssh_runner.go:195] proxy-client-ca.key: copied 1679 bytes I0424 16:01:46.877734 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/minikube/certs/proxy-client.crt I0424 16:01:46.883191 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib/minikube/certs/ I0424 16:01:46.889757 41826 ssh_runner.go:182] Transferring 1103 bytes to proxy-client.crt I0424 16:01:46.890429 41826 ssh_runner.go:195] proxy-client.crt: copied 1103 bytes I0424 16:01:46.895595 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/minikube/certs/proxy-client.key I0424 16:01:46.900749 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib/minikube/certs/ I0424 16:01:46.907666 41826 ssh_runner.go:182] Transferring 1675 bytes to proxy-client.key I0424 16:01:46.914041 41826 ssh_runner.go:195] proxy-client.key: copied 1675 bytes I0424 16:01:46.915414 41826 ssh_runner.go:101] SSH: sudo rm -f /var/lib/minikube/kubeconfig I0424 16:01:46.921549 41826 ssh_runner.go:101] SSH: sudo mkdir -p /var/lib/minikube I0424 16:01:46.927901 41826 ssh_runner.go:182] Transferring 428 bytes to kubeconfig I0424 16:01:46.928630 41826 ssh_runner.go:195] kubeconfig: copied 428 bytes I0424 16:01:47.284934 41826 kubeconfig.go:127] Using kubeconfig: /Users/tasdikrahman/.kube/config * Pulling images ... I0424 16:01:47.316679 41826 ssh_runner.go:101] SSH: sudo kubeadm config images pull --config /var/lib/kubeadm.yaml I0424 16:01:49.158289 41826 utils.go:241] > [config/images] Pulled k8s.gcr.io/kube-apiserver:v1.13.0 I0424 16:01:50.734959 41826 utils.go:241] > [config/images] Pulled k8s.gcr.io/kube-controller-manager:v1.13.0 I0424 16:01:52.236436 41826 utils.go:241] > [config/images] Pulled k8s.gcr.io/kube-scheduler:v1.13.0 I0424 16:01:53.799383 41826 utils.go:241] > [config/images] Pulled k8s.gcr.io/kube-proxy:v1.13.0 I0424 16:01:55.412941 41826 utils.go:241] > [config/images] Pulled k8s.gcr.io/pause:3.1 I0424 16:01:57.035068 41826 utils.go:241] > [config/images] Pulled k8s.gcr.io/etcd:3.2.24 I0424 16:01:58.527437 41826 utils.go:241] > [config/images] Pulled k8s.gcr.io/coredns:1.2.6 * Launching Kubernetes ... I0424 16:01:58.532313 41826 ssh_runner.go:137] Run with output: sudo /usr/bin/kubeadm init --config /var/lib/kubeadm.yaml --ignore-preflight-errors=DirAvailable--etc-kubernetes-manifests,DirAvailable--data-minikube,FileAvailable--etc-kubernetes-manifests-kube-scheduler.yaml,FileAvailable--etc-kubernetes-manifests-kube-apiserver.yaml,FileAvailable--etc-kubernetes-manifests-kube-controller-manager.yaml,FileAvailable--etc-kubernetes-manifests-etcd.yaml,Port-10250,Swap I0424 16:01:58.571675 41826 utils.go:241] > [init] Using Kubernetes version: v1.13.0 I0424 16:01:58.571816 41826 utils.go:241] > [preflight] Running pre-flight checks I0424 16:01:58.642260 41826 utils.go:241] ! [WARNING Service-Docker]: docker service is not enabled, please run 'systemctl enable docker.service' I0424 16:01:58.658543 41826 utils.go:241] ! [WARNING SystemVerification]: this Docker version is not on the list of validated versions: 18.09.6. Latest validated version: 18.06 I0424 16:01:58.746193 41826 utils.go:241] > [preflight] Pulling images required for setting up a Kubernetes cluster I0424 16:01:58.746245 41826 utils.go:241] > [preflight] This might take a minute or two, depending on the speed of your internet connection I0424 16:01:58.746263 41826 utils.go:241] ! [WARNING Service-Kubelet]: kubelet service is not enabled, please run 'systemctl enable kubelet.service' I0424 16:01:58.746269 41826 utils.go:241] > [preflight] You can also perform this action in beforehand using 'kubeadm config images pull' I0424 16:01:59.017325 41826 utils.go:241] > [kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env" I0424 16:01:59.018945 41826 utils.go:241] > [kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml" I0424 16:01:59.026183 41826 utils.go:241] > [kubelet-start] Activating the kubelet service I0424 16:01:59.124702 41826 utils.go:241] > [certs] Using certificateDir folder "/var/lib/minikube/certs/" I0424 16:01:59.124735 41826 utils.go:241] > [certs] Using existing ca certificate authority I0424 16:01:59.256268 41826 utils.go:241] > [certs] Generating "apiserver-kubelet-client" certificate and key I0424 16:01:59.256779 41826 utils.go:241] > [certs] Using existing apiserver certificate and key on disk I0424 16:01:59.424826 41826 utils.go:241] > [certs] Generating "front-proxy-ca" certificate and key I0424 16:01:59.746077 41826 utils.go:241] > [certs] Generating "front-proxy-client" certificate and key I0424 16:02:00.016987 41826 utils.go:241] > [certs] Generating "etcd/ca" certificate and key I0424 16:02:00.143776 41826 utils.go:241] > [certs] Generating "etcd/server" certificate and key I0424 16:02:00.143819 41826 utils.go:241] > [certs] etcd/server serving cert is signed for DNS names [minikube localhost] and IPs [192.168.99.101 127.0.0.1 ::1] I0424 16:02:00.495026 41826 utils.go:241] > [certs] Generating "etcd/peer" certificate and key I0424 16:02:00.495173 41826 utils.go:241] > [certs] etcd/peer serving cert is signed for DNS names [minikube localhost] and IPs [192.168.99.101 127.0.0.1 ::1] I0424 16:02:00.906603 41826 utils.go:241] > [certs] Generating "etcd/healthcheck-client" certificate and key I0424 16:02:01.243572 41826 utils.go:241] > [certs] Generating "apiserver-etcd-client" certificate and key I0424 16:02:01.471495 41826 utils.go:241] > [certs] Generating "sa" key and public key I0424 16:02:01.471544 41826 utils.go:241] > [kubeconfig] Using kubeconfig folder "/etc/kubernetes" I0424 16:02:01.832338 41826 utils.go:241] > [kubeconfig] Writing "admin.conf" kubeconfig file I0424 16:02:02.039490 41826 utils.go:241] > [kubeconfig] Writing "kubelet.conf" kubeconfig file I0424 16:02:02.257723 41826 utils.go:241] > [kubeconfig] Writing "controller-manager.conf" kubeconfig file I0424 16:02:02.537755 41826 utils.go:241] > [kubeconfig] Writing "scheduler.conf" kubeconfig file I0424 16:02:02.540736 41826 utils.go:241] > [control-plane] Using manifest folder "/etc/kubernetes/manifests" I0424 16:02:02.540803 41826 utils.go:241] > [control-plane] Creating static Pod manifest for "kube-apiserver" I0424 16:02:02.554766 41826 utils.go:241] > [control-plane] Creating static Pod manifest for "kube-controller-manager" I0424 16:02:02.558423 41826 utils.go:241] > [control-plane] Creating static Pod manifest for "kube-scheduler" I0424 16:02:02.560754 41826 utils.go:241] > [etcd] Creating static Pod manifest for local etcd in "/etc/kubernetes/manifests" I0424 16:02:02.567373 41826 utils.go:241] > [wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 4m0s I0424 16:02:42.574596 41826 utils.go:241] > [kubelet-check] Initial timeout of 40s passed. I0424 16:06:02.576001 41826 utils.go:241] > Unfortunately, an error has occurred: I0424 16:06:02.576034 41826 utils.go:241] > timed out waiting for the condition I0424 16:06:02.576048 41826 utils.go:241] ! error execution phase wait-control-plane: couldn't initialize a Kubernetes cluster I0424 16:06:02.576053 41826 utils.go:241] > This error is likely caused by: I0424 16:06:02.576082 41826 utils.go:241] > - The kubelet is not running I0424 16:06:02.576104 41826 utils.go:241] > - The kubelet is unhealthy due to a misconfiguration of the node in some way (required cgroups disabled) I0424 16:06:02.576135 41826 utils.go:241] > If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands: I0424 16:06:02.576179 41826 utils.go:241] > - 'systemctl status kubelet' I0424 16:06:02.576197 41826 utils.go:241] > - 'journalctl -xeu kubelet' I0424 16:06:02.576230 41826 utils.go:241] > Additionally, a control plane component may have crashed or exited when started by the container runtime. I0424 16:06:02.576278 41826 utils.go:241] > To troubleshoot, list all containers using your preferred container runtimes CLI, e.g. docker. I0424 16:06:02.576337 41826 utils.go:241] > Here is one example how you may list all Kubernetes containers running in docker: I0424 16:06:02.576372 41826 utils.go:241] > - 'docker ps -a | grep kube | grep -v pause' I0424 16:06:02.576402 41826 utils.go:241] > Once you have found the failing container, you can inspect its logs with: I0424 16:06:02.576419 41826 utils.go:241] > - 'docker logs CONTAINERID' I0424 16:06:02.581781 41826 ssh_runner.go:137] Run with output: docker ps -a --filter="name=kube-apiserver" --format="{{.ID}}" I0424 16:06:02.622269 41826 utils.go:241] > d3d6d3e7aed0 I0424 16:06:02.622293 41826 utils.go:241] > 85979edf0234 I0424 16:06:02.623499 41826 logs.go:158] 2 containers: [d3d6d3e7aed0 85979edf0234] I0424 16:06:02.623531 41826 ssh_runner.go:137] Run with output: docker ps -a --filter="name=coredns" --format="{{.ID}}" I0424 16:06:02.660941 41826 logs.go:158] 0 containers: [] W0424 16:06:02.660975 41826 logs.go:160] No container was found matching "coredns" I0424 16:06:02.660996 41826 ssh_runner.go:137] Run with output: docker ps -a --filter="name=kube-scheduler" --format="{{.ID}}" I0424 16:06:02.698803 41826 utils.go:241] > 8e96011aebf6 I0424 16:06:02.698831 41826 utils.go:241] > 43cf9df42f40 I0424 16:06:02.699899 41826 logs.go:158] 2 containers: [8e96011aebf6 43cf9df42f40] I0424 16:06:02.699925 41826 ssh_runner.go:137] Run with output: docker ps -a --filter="name=kube-proxy" --format="{{.ID}}" I0424 16:06:02.743659 41826 logs.go:158] 0 containers: [] W0424 16:06:02.743684 41826 logs.go:160] No container was found matching "kube-proxy" I0424 16:06:02.743698 41826 ssh_runner.go:137] Run with output: docker ps -a --filter="name=kube-addon-manager" --format="{{.ID}}" I0424 16:06:02.779563 41826 utils.go:241] > bd55dc3ad22c I0424 16:06:02.779609 41826 utils.go:241] > 678f05f465e7 I0424 16:06:02.781210 41826 logs.go:158] 2 containers: [bd55dc3ad22c 678f05f465e7] I0424 16:06:02.781243 41826 ssh_runner.go:137] Run with output: docker ps -a --filter="name=kubernetes-dashboard" --format="{{.ID}}" I0424 16:06:02.830848 41826 logs.go:158] 0 containers: [] W0424 16:06:02.830892 41826 logs.go:160] No container was found matching "kubernetes-dashboard" I0424 16:06:02.830910 41826 ssh_runner.go:137] Run with output: docker ps -a --filter="name=storage-provisioner" --format="{{.ID}}" I0424 16:06:02.878589 41826 logs.go:158] 0 containers: [] W0424 16:06:02.878623 41826 logs.go:160] No container was found matching "storage-provisioner" I0424 16:06:02.878646 41826 logs.go:76] Gathering logs for kube-addon-manager ... I0424 16:06:02.878658 41826 ssh_runner.go:137] Run with output: docker logs --tail 200 bd55dc3ad22c I0424 16:06:02.933415 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933499 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933451 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.933535 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933577 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933577 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.933612 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933618 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.933637 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933651 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.933794 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.933660 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933843 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.933852 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933878 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.933882 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933909 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933915 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.933938 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933947 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.933971 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.933978 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.934001 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.934009 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.934041 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.934062 41826 utils.go:241] > WRN: == Failed to start /opt/namespace.yaml in namespace at 2020-04-24T10:35:15+00:00. 81 tries remaining. == I0424 16:06:02.934077 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.970685 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.970722 41826 utils.go:241] ! error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:02.970727 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.970797 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.970806 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.970837 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.970868 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.970840 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.970910 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.970912 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.970980 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.970958 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.971013 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.971037 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.971056 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.971082 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.973899 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.971013 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.973935 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.973961 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.973962 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.973983 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.974058 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.974102 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.974128 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.974106 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.974160 41826 utils.go:241] > WRN: == Failed to start /opt/namespace.yaml in namespace at 2020-04-24T10:35:25+00:00. 80 tries remaining. == I0424 16:06:02.974164 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.974180 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.974187 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.977171 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.977231 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.977207 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.977248 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.977261 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.977267 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.977285 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.977288 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.977301 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.977319 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.977325 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.977336 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.977347 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.980663 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.980616 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.980730 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.980724 41826 utils.go:241] ! error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:02.980771 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.980787 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.980803 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.980810 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.980816 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.980855 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.982563 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.980873 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.982593 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.982624 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.982655 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.982684 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.982711 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.982656 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.982728 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.982739 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.982748 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.982761 41826 utils.go:241] > WRN: == Failed to start /opt/namespace.yaml in namespace at 2020-04-24T10:35:36+00:00. 79 tries remaining. == I0424 16:06:02.982771 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983290 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.982781 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983334 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983365 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983336 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983403 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983421 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983424 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983498 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983521 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983452 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983550 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983563 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983571 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983598 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983628 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983655 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983601 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983697 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983709 41826 utils.go:241] ! error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:02.983738 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983770 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983744 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983829 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.983831 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983888 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983914 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983937 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983963 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.983864 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984005 41826 utils.go:241] > WRN: == Failed to start /opt/namespace.yaml in namespace at 2020-04-24T10:35:46+00:00. 78 tries remaining. == I0424 16:06:02.984041 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984055 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984065 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984092 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984142 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984100 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984241 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984272 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984247 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984317 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984345 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984395 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984319 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984425 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984432 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984452 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984458 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984479 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984485 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984498 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984508 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984523 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984528 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984546 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984549 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984568 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984580 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984588 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984597 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984617 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984643 41826 utils.go:241] > WRN: == Failed to start /opt/namespace.yaml in namespace at 2020-04-24T10:35:56+00:00. 77 tries remaining. == I0424 16:06:02.984658 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984665 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984679 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984699 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984703 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984802 41826 utils.go:241] ! error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:02.984818 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984837 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984855 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984857 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984867 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984878 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984889 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984901 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984905 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984918 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984925 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984939 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984949 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984957 41826 utils.go:241] > WRN: == Error getting default service account, retry in 0.5 second == I0424 16:06:02.984970 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.984986 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985001 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985018 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985040 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985056 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985074 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985089 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985107 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985123 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985138 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985155 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985174 41826 utils.go:241] ! error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:02.985190 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985209 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985225 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985240 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985255 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985270 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985294 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985310 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985326 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985341 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985356 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? I0424 16:06:02.985373 41826 utils.go:241] ! The connection to the server localhost:8443 was refused - did you specify the right host or port? W0424 16:06:02.985743 41826 logs.go:88] Found kube-addon-manager problem: error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused W0424 16:06:02.986221 41826 logs.go:88] Found kube-addon-manager problem: error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused W0424 16:06:02.986654 41826 logs.go:88] Found kube-addon-manager problem: error: unabWRN: == Error getting default sele to recognize "STDIN": Grvice account, retry in 0.5 secoet https://nd == W0424 16:06:02.987242 41826 logs.go:88] Found kube-addon-manager problem: error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused W0424 16:06:02.987657 41826 logs.go:88] Found kube-addon-manager problem: error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:02.987972 41826 logs.go:76] Gathering logs for kubelet ... I0424 16:06:02.988001 41826 ssh_runner.go:137] Run with output: journalctl -u kubelet -n 200 I0424 16:06:02.994221 41826 utils.go:241] > -- Logs begin at Fri 2020-04-24 10:30:45 UTC, end at Fri 2020-04-24 10:36:02 UTC. -- I0424 16:06:02.994302 41826 utils.go:241] > Apr 24 10:35:48 minikube kubelet[3226]: E0424 10:35:48.352942 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:02.994361 41826 utils.go:241] > Apr 24 10:35:48 minikube kubelet[3226]: E0424 10:35:48.453621 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:02.994394 41826 utils.go:241] > Apr 24 10:35:48 minikube kubelet[3226]: E0424 10:35:48.553963 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:02.994438 41826 utils.go:241] > Apr 24 10:35:48 minikube kubelet[3226]: E0424 10:35:48.654783 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:02.994460 41826 utils.go:241] > Apr 24 10:35:48 minikube kubelet[3226]: E0424 10:35:48.755201 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043328 41826 utils.go:241] > Apr 24 10:35:48 minikube kubelet[3226]: E0424 10:35:48.855854 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043356 41826 utils.go:241] > Apr 24 10:35:48 minikube kubelet[3226]: E0424 10:35:48.956202 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043373 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.057052 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043427 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.122104 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.043466 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.122143 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.043505 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.123111 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.043534 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.157304 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043554 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.257872 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043571 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.359565 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043593 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.459873 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043610 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.560257 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043635 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.640792 3226 eviction_manager.go:243] eviction manager: failed to get summary stats: failed to get node info: node "minikube" not found I0424 16:06:03.043654 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.660392 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043671 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.760641 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043702 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.819649 3226 event.go:212] Unable to write event: 'Post https://localhost:8443/api/v1/namespaces/default/events: dial tcp 127.0.0.1:8443: connect: connection refused' (may retry after sleeping) I0424 16:06:03.043719 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.861833 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043738 41826 utils.go:241] > Apr 24 10:35:49 minikube kubelet[3226]: E0424 10:35:49.962866 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043755 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.064127 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043790 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.123760 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.043840 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.123768 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.043918 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.125943 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.043955 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.165655 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043973 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.265818 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.043997 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.367175 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044022 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.469868 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044040 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.571283 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044056 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.672680 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044073 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.773433 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044090 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.873856 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044126 41826 utils.go:241] > Apr 24 10:35:50 minikube kubelet[3226]: E0424 10:35:50.974547 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044191 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.075097 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044243 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.126279 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.044290 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.127213 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.044342 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.127337 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.044363 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.175977 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044384 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.276317 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044401 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.376663 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044418 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.477127 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044443 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.578195 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044461 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.680074 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044479 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.781563 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044520 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.881947 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044565 41826 utils.go:241] > Apr 24 10:35:51 minikube kubelet[3226]: E0424 10:35:51.982605 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044591 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.084108 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044655 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.127690 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.044726 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.128796 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.044793 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.129083 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.044816 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.184748 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044843 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.286862 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044862 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.390138 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044886 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: I0424 10:35:52.452370 3226 kubelet_node_status.go:278] Setting node annotation to enable volume controller attach/detach I0424 16:06:03.044908 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: I0424 10:35:52.455208 3226 kubelet_node_status.go:72] Attempting to register node minikube I0424 16:06:03.044938 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.455575 3226 kubelet_node_status.go:94] Unable to register node "minikube" with API server: Post https://localhost:8443/api/v1/nodes: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.044960 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.491069 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.044983 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: I0424 10:35:52.512821 3226 kubelet_node_status.go:278] Setting node annotation to enable volume controller attach/detach I0424 16:06:03.045034 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.514929 3226 pod_workers.go:190] Error syncing pod c7082627545277910cee11db4f439938 ("kube-apiserver-minikube_kube-system(c7082627545277910cee11db4f439938)"), skipping: failed to "StartContainer" for "kube-apiserver" with CrashLoopBackOff: "Back-off 2m40s restarting failed container=kube-apiserver pod=kube-apiserver-minikube_kube-system(c7082627545277910cee11db4f439938)" I0424 16:06:03.045055 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.593377 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045073 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.695008 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045090 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.796510 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045106 41826 utils.go:241] > Apr 24 10:35:52 minikube kubelet[3226]: E0424 10:35:52.900473 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045128 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.005259 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045145 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.105590 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045183 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.129044 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.045222 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.129855 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.045257 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.130407 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.045275 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.205998 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045292 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.308424 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045309 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.410942 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045326 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.514406 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045349 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.614881 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045366 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.715706 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045383 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.818841 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045400 41826 utils.go:241] > Apr 24 10:35:53 minikube kubelet[3226]: E0424 10:35:53.922432 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045464 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.026205 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045488 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.126413 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045527 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.129808 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.045566 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.131463 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.045601 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.132395 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.045625 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.226538 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045643 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.327565 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045661 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.429277 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045677 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.529713 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045694 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.630968 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045711 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.731485 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045730 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.832731 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045747 41826 utils.go:241] > Apr 24 10:35:54 minikube kubelet[3226]: E0424 10:35:54.933188 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045764 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.034839 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045802 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.131264 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.045841 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.132238 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.045876 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.134857 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.045894 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.135178 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045932 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.235703 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045957 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.336076 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045974 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.436390 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.045991 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.536961 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046011 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.638368 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046029 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.738848 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046052 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.839509 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046071 41826 utils.go:241] > Apr 24 10:35:55 minikube kubelet[3226]: E0424 10:35:55.940270 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046088 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.041901 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046133 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.133823 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.046175 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.134975 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.046211 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.135745 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.046229 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.142388 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046247 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.242669 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046264 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.344401 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046282 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.445203 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046299 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.545610 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046316 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.647339 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046333 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.750551 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046349 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.850856 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046367 41826 utils.go:241] > Apr 24 10:35:56 minikube kubelet[3226]: E0424 10:35:56.951064 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046383 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.051463 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046423 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.135877 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.046466 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.135977 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.046501 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.136497 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.046519 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.151728 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046536 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.252187 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046561 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.353658 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046582 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.454952 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046599 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.556388 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046619 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.656746 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046636 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.757729 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046656 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.859233 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046673 41826 utils.go:241] > Apr 24 10:35:57 minikube kubelet[3226]: E0424 10:35:57.959820 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046691 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.061308 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046729 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.136896 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.046769 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.138458 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.046812 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.139077 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.046841 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.162195 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046861 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.262615 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046878 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.363411 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046895 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.464927 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046912 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.565727 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046929 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.667722 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046945 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.770338 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046963 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.870768 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046980 41826 utils.go:241] > Apr 24 10:35:58 minikube kubelet[3226]: E0424 10:35:58.971558 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.046997 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.071886 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047035 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.137925 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.047079 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.139667 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.047119 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.140027 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.047142 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.172137 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047160 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.272816 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047179 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.373054 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047202 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: I0424 10:35:59.456121 3226 kubelet_node_status.go:278] Setting node annotation to enable volume controller attach/detach I0424 16:06:03.047238 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: I0424 10:35:59.458699 3226 kubelet_node_status.go:72] Attempting to register node minikube I0424 16:06:03.047301 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.459105 3226 kubelet_node_status.go:94] Unable to register node "minikube" with API server: Post https://localhost:8443/api/v1/nodes: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.047330 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.473954 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047357 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.574257 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047395 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.641494 3226 eviction_manager.go:243] eviction manager: failed to get summary stats: failed to get node info: node "minikube" not found I0424 16:06:03.047423 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.675186 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047450 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.776413 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047498 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.822585 3226 event.go:212] Unable to write event: 'Post https://localhost:8443/api/v1/namespaces/default/events: dial tcp 127.0.0.1:8443: connect: connection refused' (may retry after sleeping) I0424 16:06:03.047527 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.877233 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047554 41826 utils.go:241] > Apr 24 10:35:59 minikube kubelet[3226]: E0424 10:35:59.977906 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047584 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.078467 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047649 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.138785 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.047714 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.141725 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.047775 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.141986 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.047804 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.179604 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047831 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.281424 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047857 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.382634 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047921 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.485593 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047961 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.586560 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047978 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.687733 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.047995 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.788281 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048030 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.889177 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048064 41826 utils.go:241] > Apr 24 10:36:00 minikube kubelet[3226]: E0424 10:36:00.990901 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048082 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.091186 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048189 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.140399 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.048254 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.143668 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.048318 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.144217 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.048358 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.192691 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048383 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.293735 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048403 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.394028 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048423 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.496499 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048445 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: I0424 10:36:01.513298 3226 kubelet_node_status.go:278] Setting node annotation to enable volume controller attach/detach I0424 16:06:03.048469 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.598413 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048486 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.699607 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048503 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.800376 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048520 41826 utils.go:241] > Apr 24 10:36:01 minikube kubelet[3226]: E0424 10:36:01.900771 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048537 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.001552 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048556 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.101792 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048594 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.144168 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:453: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?fieldSelector=metadata.name%3Dminikube&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.048639 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.145717 3226 reflector.go:134] 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 127.0.0.1:8443: connect: connection refused I0424 16:06:03.048687 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.145925 3226 reflector.go:134] k8s.io/kubernetes/pkg/kubelet/kubelet.go:444: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.048707 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.202095 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048758 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.302613 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048781 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.404772 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048798 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.508354 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048842 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.608634 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048869 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.708997 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048886 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.814725 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.048903 41826 utils.go:241] > Apr 24 10:36:02 minikube kubelet[3226]: E0424 10:36:02.914972 3226 kubelet.go:2266] node "minikube" not found I0424 16:06:03.053303 41826 logs.go:76] Gathering logs for dmesg ... I0424 16:06:03.053336 41826 ssh_runner.go:137] Run with output: sudo dmesg -PH -L=never --level warn,err,crit,alert,emerg | tail -n 200 I0424 16:06:03.061841 41826 utils.go:241] > [Apr24 10:30] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. I0424 16:06:03.061887 41826 utils.go:241] > [ +21.170269] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2 I0424 16:06:03.061910 41826 utils.go:241] > [ +9.506649] systemd-fstab-generator[1290]: Ignoring "noauto" for root device I0424 16:06:03.061945 41826 utils.go:241] > [ +0.003264] systemd[1]: File /usr/lib/systemd/system/systemd-journald.service:35 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling. I0424 16:06:03.062011 41826 utils.go:241] > [ +0.000002] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.) I0424 16:06:03.062029 41826 utils.go:241] > [ +0.399351] vboxguest: loading out-of-tree module taints kernel. I0424 16:06:03.062070 41826 utils.go:241] > [ +0.005783] vgdrvHeartbeatInit: Setting up heartbeat to trigger every 2000 milliseconds I0424 16:06:03.062095 41826 utils.go:241] > [ +0.000280] vboxguest: misc device minor 57, IRQ 20, I/O port d020, MMIO at 00000000f0000000 (size 0x400000) I0424 16:06:03.062114 41826 utils.go:241] > [ +0.000205] vboxvideo: Unknown symbol ttm_bo_mmap (err 0) I0424 16:06:03.062167 41826 utils.go:241] > [ +0.000015] vboxvideo: Unknown symbol ttm_bo_global_release (err 0) I0424 16:06:03.062191 41826 utils.go:241] > [ +0.000006] vboxvideo: Unknown symbol ttm_pool_unpopulate (err 0) I0424 16:06:03.062212 41826 utils.go:241] > [ +0.000006] vboxvideo: Unknown symbol ttm_bo_manager_func (err 0) I0424 16:06:03.062225 41826 utils.go:241] > [ +0.000003] vboxvideo: Unknown symbol ttm_bo_global_init (err 0) I0424 16:06:03.062238 41826 utils.go:241] > [ +0.000002] vboxvideo: Unknown symbol ttm_bo_default_io_mem_pfn (err 0) I0424 16:06:03.062251 41826 utils.go:241] > [ +0.000007] vboxvideo: Unknown symbol ttm_bo_device_release (err 0) I0424 16:06:03.062262 41826 utils.go:241] > [ +0.000015] vboxvideo: Unknown symbol ttm_bo_kunmap (err 0) I0424 16:06:03.062275 41826 utils.go:241] > [ +0.000004] vboxvideo: Unknown symbol ttm_bo_del_sub_from_lru (err 0) I0424 16:06:03.062287 41826 utils.go:241] > [ +0.000009] vboxvideo: Unknown symbol ttm_bo_device_init (err 0) I0424 16:06:03.127760 41826 utils.go:241] > [ +0.000002] vboxvideo: Unknown symbol ttm_bo_init_mm (err 0) I0424 16:06:03.127787 41826 utils.go:241] > [ +0.000001] vboxvideo: Unknown symbol ttm_bo_dma_acc_size (err 0) I0424 16:06:03.127800 41826 utils.go:241] > [ +0.000005] vboxvideo: Unknown symbol ttm_tt_init (err 0) I0424 16:06:03.127823 41826 utils.go:241] > [ +0.000002] vboxvideo: Unknown symbol ttm_bo_kmap (err 0) I0424 16:06:03.127836 41826 utils.go:241] > [ +0.000008] vboxvideo: Unknown symbol ttm_bo_add_to_lru (err 0) I0424 16:06:03.127854 41826 utils.go:241] > [ +0.000003] vboxvideo: Unknown symbol ttm_bo_unref (err 0) I0424 16:06:03.127881 41826 utils.go:241] > [ +0.000002] vboxvideo: Unknown symbol ttm_mem_global_release (err 0) I0424 16:06:03.127953 41826 utils.go:241] > [ +0.000003] vboxvideo: Unknown symbol ttm_mem_global_init (err 0) I0424 16:06:03.128004 41826 utils.go:241] > [ +0.000012] vboxvideo: Unknown symbol ttm_bo_init (err 0) I0424 16:06:03.128032 41826 utils.go:241] > [ +0.000002] vboxvideo: Unknown symbol ttm_bo_validate (err 0) I0424 16:06:03.128045 41826 utils.go:241] > [ +0.000010] vboxvideo: Unknown symbol ttm_tt_fini (err 0) I0424 16:06:03.128063 41826 utils.go:241] > [ +0.000002] vboxvideo: Unknown symbol ttm_bo_eviction_valuable (err 0) I0424 16:06:03.128076 41826 utils.go:241] > [ +0.000002] vboxvideo: Unknown symbol ttm_pool_populate (err 0) I0424 16:06:03.128086 41826 utils.go:241] > [ +0.252250] hpet1: lost 649 rtc interrupts I0424 16:06:03.128104 41826 utils.go:241] > [ +0.008197] NFSD: the nfsdcld client tracking upcall will be removed in 3.10. Please transition to using nfsdcltrack. I0424 16:06:03.128120 41826 utils.go:241] > [ +0.002943] VBoxService 5.1.38 r122592 (verbosity: 0) linux.amd64 (May 9 2018 12:22:30) release log I0424 16:06:03.128436 41826 utils.go:241] > 00:00:00.002301 main Log opened 2020-04-24T10:30:51.381221000Z I0424 16:06:03.128460 41826 utils.go:241] > [ +0.000157] 00:00:00.002528 main OS Product: Linux I0424 16:06:03.128479 41826 utils.go:241] > [ +0.000134] 00:00:00.002670 main OS Release: 4.15.0 I0424 16:06:03.128537 41826 utils.go:241] > [ +0.000074] 00:00:00.002745 main OS Version: #1 SMP Sun Jun 23 23:02:01 PDT 2019 I0424 16:06:03.128560 41826 utils.go:241] > [ +0.000065] 00:00:00.002791 main Executable: /usr/sbin/VBoxService I0424 16:06:03.128574 41826 utils.go:241] > 00:00:00.002792 main Process ID: 2064 I0424 16:06:03.128620 41826 utils.go:241] > 00:00:00.002793 main Package type: LINUX_64BITS_GENERIC I0424 16:06:03.128638 41826 utils.go:241] > [ +0.000049] 00:00:00.002858 main 5.1.38 r122592 started. Verbose level = 0 I0424 16:06:03.128648 41826 utils.go:241] > [ +5.024014] hpet1: lost 279 rtc interrupts I0424 16:06:03.128661 41826 utils.go:241] > [ +2.949577] systemd-fstab-generator[2295]: Ignoring "noauto" for root device I0424 16:06:03.128673 41826 utils.go:241] > [ +2.073888] hpet_rtc_timer_reinit: 69 callbacks suppressed I0424 16:06:03.128683 41826 utils.go:241] > [ +0.000002] hpet1: lost 320 rtc interrupts I0424 16:06:03.128692 41826 utils.go:241] > [Apr24 10:31] hpet1: lost 319 rtc interrupts I0424 16:06:03.128702 41826 utils.go:241] > [ +5.002575] hpet1: lost 318 rtc interrupts I0424 16:06:03.128712 41826 utils.go:241] > [ +5.002728] hpet1: lost 318 rtc interrupts I0424 16:06:03.128721 41826 utils.go:241] > [ +5.000823] hpet1: lost 318 rtc interrupts I0424 16:06:03.131286 41826 utils.go:241] > [ +5.002810] hpet1: lost 318 rtc interrupts I0424 16:06:03.131307 41826 utils.go:241] > [ +5.000709] hpet1: lost 318 rtc interrupts I0424 16:06:03.131317 41826 utils.go:241] > [ +5.001936] hpet1: lost 318 rtc interrupts I0424 16:06:03.131327 41826 utils.go:241] > [ +5.000622] hpet1: lost 318 rtc interrupts I0424 16:06:03.131337 41826 utils.go:241] > [ +5.000955] hpet1: lost 319 rtc interrupts I0424 16:06:03.131347 41826 utils.go:241] > [ +5.001667] hpet1: lost 318 rtc interrupts I0424 16:06:03.131360 41826 utils.go:241] > [ +0.685496] systemd-fstab-generator[2974]: Ignoring "noauto" for root device I0424 16:06:03.131371 41826 utils.go:241] > [ +4.317570] hpet1: lost 319 rtc interrupts I0424 16:06:03.131389 41826 utils.go:241] > [ +5.003258] hpet1: lost 318 rtc interrupts I0424 16:06:03.131413 41826 utils.go:241] > [ +3.063807] systemd-fstab-generator[3207]: Ignoring "noauto" for root device I0424 16:06:03.131424 41826 utils.go:241] > [Apr24 10:32] hpet1: lost 318 rtc interrupts I0424 16:06:03.131434 41826 utils.go:241] > [ +5.005007] hpet1: lost 318 rtc interrupts I0424 16:06:03.131445 41826 utils.go:241] > [ +10.005607] hpet_rtc_timer_reinit: 22 callbacks suppressed I0424 16:06:03.131455 41826 utils.go:241] > [ +0.000012] hpet1: lost 319 rtc interrupts I0424 16:06:03.131465 41826 utils.go:241] > [ +5.002611] hpet1: lost 318 rtc interrupts I0424 16:06:03.131474 41826 utils.go:241] > [ +5.001327] hpet1: lost 318 rtc interrupts I0424 16:06:03.131484 41826 utils.go:241] > [ +5.001061] hpet1: lost 318 rtc interrupts I0424 16:06:03.133823 41826 utils.go:241] > [ +5.001443] hpet1: lost 318 rtc interrupts I0424 16:06:03.133848 41826 utils.go:241] > [ +5.003871] hpet1: lost 318 rtc interrupts I0424 16:06:03.133865 41826 utils.go:241] > [ +5.001869] hpet1: lost 319 rtc interrupts I0424 16:06:03.133893 41826 utils.go:241] > [ +2.581538] NFSD: Unable to end grace period: -110 I0424 16:06:03.133909 41826 utils.go:241] > [ +2.419681] hpet1: lost 318 rtc interrupts I0424 16:06:03.133926 41826 utils.go:241] > [ +5.001541] hpet1: lost 318 rtc interrupts I0424 16:06:03.133941 41826 utils.go:241] > [Apr24 10:33] hpet1: lost 318 rtc interrupts I0424 16:06:03.133957 41826 utils.go:241] > [ +5.001771] hpet1: lost 318 rtc interrupts I0424 16:06:03.133970 41826 utils.go:241] > [ +5.001433] hpet1: lost 318 rtc interrupts I0424 16:06:03.133980 41826 utils.go:241] > [ +5.001464] hpet1: lost 318 rtc interrupts I0424 16:06:03.133990 41826 utils.go:241] > [ +5.001802] hpet1: lost 318 rtc interrupts I0424 16:06:03.134000 41826 utils.go:241] > [ +5.003056] hpet1: lost 318 rtc interrupts I0424 16:06:03.134033 41826 utils.go:241] > [ +5.004599] hpet1: lost 319 rtc interrupts I0424 16:06:03.134054 41826 utils.go:241] > [ +5.004510] hpet1: lost 318 rtc interrupts I0424 16:06:03.134070 41826 utils.go:241] > [ +5.004164] hpet1: lost 318 rtc interrupts I0424 16:06:03.134081 41826 utils.go:241] > [ +5.002479] hpet1: lost 318 rtc interrupts I0424 16:06:03.134092 41826 utils.go:241] > [ +5.001150] hpet1: lost 319 rtc interrupts I0424 16:06:03.134102 41826 utils.go:241] > [ +5.002181] hpet1: lost 318 rtc interrupts I0424 16:06:03.134111 41826 utils.go:241] > [Apr24 10:34] hpet1: lost 318 rtc interrupts I0424 16:06:03.224662 41826 utils.go:241] > [ +5.000935] hpet1: lost 318 rtc interrupts I0424 16:06:03.224695 41826 utils.go:241] > [ +5.003076] hpet1: lost 318 rtc interrupts I0424 16:06:03.224782 41826 utils.go:241] > [ +5.001431] hpet1: lost 318 rtc interrupts I0424 16:06:03.224813 41826 utils.go:241] > [ +5.001622] hpet1: lost 318 rtc interrupts I0424 16:06:03.224832 41826 utils.go:241] > [ +5.000571] hpet1: lost 318 rtc interrupts I0424 16:06:03.224878 41826 utils.go:241] > [ +5.003422] hpet1: lost 319 rtc interrupts I0424 16:06:03.224895 41826 utils.go:241] > [ +5.001981] hpet1: lost 318 rtc interrupts I0424 16:06:03.224910 41826 utils.go:241] > [ +5.003387] hpet1: lost 318 rtc interrupts I0424 16:06:03.224925 41826 utils.go:241] > [ +5.002153] hpet1: lost 318 rtc interrupts I0424 16:06:03.224939 41826 utils.go:241] > [ +5.001757] hpet1: lost 318 rtc interrupts I0424 16:06:03.224953 41826 utils.go:241] > [ +5.003185] hpet1: lost 318 rtc interrupts I0424 16:06:03.224968 41826 utils.go:241] > [Apr24 10:35] hpet1: lost 318 rtc interrupts I0424 16:06:03.224983 41826 utils.go:241] > [ +5.000466] hpet1: lost 319 rtc interrupts I0424 16:06:03.224998 41826 utils.go:241] > [ +5.001418] hpet1: lost 318 rtc interrupts I0424 16:06:03.225012 41826 utils.go:241] > [ +5.000539] hpet1: lost 319 rtc interrupts I0424 16:06:03.225027 41826 utils.go:241] > [ +5.001181] hpet1: lost 318 rtc interrupts I0424 16:06:03.225042 41826 utils.go:241] > [ +5.002220] hpet1: lost 318 rtc interrupts I0424 16:06:03.225060 41826 utils.go:241] > [ +5.000870] hpet1: lost 318 rtc interrupts I0424 16:06:03.225094 41826 utils.go:241] > [ +5.002373] hpet1: lost 318 rtc interrupts I0424 16:06:03.225110 41826 utils.go:241] > [ +5.001132] hpet1: lost 318 rtc interrupts I0424 16:06:03.225125 41826 utils.go:241] > [ +5.002300] hpet1: lost 318 rtc interrupts I0424 16:06:03.230731 41826 utils.go:241] > [ +5.000803] hpet1: lost 319 rtc interrupts I0424 16:06:03.230773 41826 utils.go:241] > [ +5.001200] hpet1: lost 318 rtc interrupts I0424 16:06:03.230790 41826 utils.go:241] > [Apr24 10:36] hpet1: lost 318 rtc interrupts I0424 16:06:03.231961 41826 logs.go:76] Gathering logs for kube-apiserver ... I0424 16:06:03.231990 41826 ssh_runner.go:137] Run with output: docker logs --tail 200 d3d6d3e7aed0 I0424 16:06:03.290907 41826 utils.go:241] ! ProcMountType=true|false (ALPHA - default=false) I0424 16:06:03.290950 41826 utils.go:241] ! QOSReserved=true|false (ALPHA - default=false) I0424 16:06:03.290978 41826 utils.go:241] ! ResourceLimitsPriorityFunction=true|false (ALPHA - default=false) I0424 16:06:03.291012 41826 utils.go:241] ! ResourceQuotaScopeSelectors=true|false (BETA - default=true) I0424 16:06:03.291037 41826 utils.go:241] ! RotateKubeletClientCertificate=true|false (BETA - default=true) I0424 16:06:03.291073 41826 utils.go:241] ! RotateKubeletServerCertificate=true|false (BETA - default=true) I0424 16:06:03.291098 41826 utils.go:241] ! RunAsGroup=true|false (ALPHA - default=false) I0424 16:06:03.291130 41826 utils.go:241] ! RuntimeClass=true|false (ALPHA - default=false) I0424 16:06:03.291152 41826 utils.go:241] ! SCTPSupport=true|false (ALPHA - default=false) I0424 16:06:03.291175 41826 utils.go:241] ! ScheduleDaemonSetPods=true|false (BETA - default=true) I0424 16:06:03.291197 41826 utils.go:241] ! ServiceNodeExclusion=true|false (ALPHA - default=false) I0424 16:06:03.291227 41826 utils.go:241] ! StreamingProxyRedirects=true|false (BETA - default=true) I0424 16:06:03.291248 41826 utils.go:241] ! SupportPodPidsLimit=true|false (ALPHA - default=false) I0424 16:06:03.291267 41826 utils.go:241] ! Sysctls=true|false (BETA - default=true) I0424 16:06:03.291298 41826 utils.go:241] ! TTLAfterFinished=true|false (ALPHA - default=false) I0424 16:06:03.291319 41826 utils.go:241] ! TaintBasedEvictions=true|false (BETA - default=true) I0424 16:06:03.291346 41826 utils.go:241] ! TaintNodesByCondition=true|false (BETA - default=true) I0424 16:06:03.291369 41826 utils.go:241] ! TokenRequest=true|false (BETA - default=true) I0424 16:06:03.291408 41826 utils.go:241] ! TokenRequestProjection=true|false (BETA - default=true) I0424 16:06:03.291460 41826 utils.go:241] ! ValidateProxyRedirects=true|false (ALPHA - default=false) I0424 16:06:03.302631 41826 utils.go:241] ! VolumeSnapshotDataSource=true|false (ALPHA - default=false) I0424 16:06:03.302683 41826 utils.go:241] ! VolumeSubpathEnvExpansion=true|false (ALPHA - default=false) I0424 16:06:03.302720 41826 utils.go:241] ! --master-service-namespace string DEPRECATED: the namespace from which the kubernetes master services should be injected into pods. (default "default") I0424 16:06:03.302754 41826 utils.go:241] ! --max-mutating-requests-inflight int The maximum number of mutating requests in flight at a given time. When the server exceeds this, it rejects requests. Zero for no limit. (default 200) I0424 16:06:03.302790 41826 utils.go:241] ! --max-requests-inflight int The maximum number of non-mutating requests in flight at a given time. When the server exceeds this, it rejects requests. Zero for no limit. (default 400) I0424 16:06:03.303478 41826 utils.go:241] ! --min-request-timeout int An optional field indicating the minimum number of seconds a handler must keep a request open before timing it out. Currently only honored by the watch request handler, which picks a randomized value above this number as the connection timeout, to spread out load. (default 1800) I0424 16:06:03.303526 41826 utils.go:241] ! --request-timeout duration An optional field indicating the duration a handler must keep a request open before timing it out. This is the default request timeout for requests but may be overridden by flags such as --min-request-timeout for specific types of requests. (default 1m0s) I0424 16:06:03.303546 41826 utils.go:241] ! --target-ram-mb int Memory limit for apiserver in MB (used to configure sizes of caches, etc.) I0424 16:06:03.303553 41826 utils.go:241] ! Etcd flags: I0424 16:06:03.303574 41826 utils.go:241] ! --default-watch-cache-size int Default watch cache size. If zero, watch cache will be disabled for resources that do not have a default watch size set. (default 100) I0424 16:06:03.303604 41826 utils.go:241] ! --delete-collection-workers int Number of workers spawned for DeleteCollection call. These are used to speed up namespace cleanup. (default 1) I0424 16:06:03.358164 41826 utils.go:241] ! --enable-garbage-collector Enables the generic garbage collector. MUST be synced with the corresponding flag of the kube-controller-manager. (default true) I0424 16:06:03.358194 41826 utils.go:241] ! --encryption-provider-config string The file containing configuration for encryption providers to be used for storing secrets in etcd I0424 16:06:03.358209 41826 utils.go:241] ! --etcd-cafile string SSL Certificate Authority file used to secure etcd communication. I0424 16:06:03.358223 41826 utils.go:241] ! --etcd-certfile string SSL certification file used to secure etcd communication. I0424 16:06:03.358243 41826 utils.go:241] ! --etcd-compaction-interval duration The interval of compaction requests. If 0, the compaction request from apiserver is disabled. (default 5m0s) I0424 16:06:03.358262 41826 utils.go:241] ! --etcd-count-metric-poll-period duration Frequency of polling etcd for number of resources per type. 0 disables the metric collection. (default 1m0s) I0424 16:06:03.358275 41826 utils.go:241] ! --etcd-keyfile string SSL key file used to secure etcd communication. I0424 16:06:03.358290 41826 utils.go:241] ! --etcd-prefix string The prefix to prepend to all resource paths in etcd. (default "/registry") I0424 16:06:03.358306 41826 utils.go:241] ! --etcd-servers strings List of etcd servers to connect with (scheme://ip:port), comma separated. I0424 16:06:03.358347 41826 utils.go:241] ! --etcd-servers-overrides strings Per-resource etcd servers overrides, comma separated. The individual override format: group/resource#servers, where servers are URLs, semicolon separated. I0424 16:06:03.361101 41826 utils.go:241] ! --storage-backend string The storage backend for persistence. Options: 'etcd3' (default). I0424 16:06:03.361154 41826 utils.go:241] ! --storage-media-type string The media type to use to store objects in storage. Some resources or storage backends may only support a specific media type and will ignore this setting. (default "application/vnd.kubernetes.protobuf") I0424 16:06:03.361177 41826 utils.go:241] ! --watch-cache Enable watch caching in the apiserver (default true) I0424 16:06:03.361242 41826 utils.go:241] ! --watch-cache-sizes strings List of watch cache sizes for every resource (pods, nodes, etc.), comma separated. The individual override format: resource[.group]#size, where resource is lowercase plural (no version), group is optional, and size is a number. It takes effect when watch-cache is enabled. Some resources (replicationcontrollers, endpoints, nodes, pods, services, apiservices.apiregistration.k8s.io) have system defaults set by heuristics, others default to default-watch-cache-size I0424 16:06:03.361256 41826 utils.go:241] ! Secure serving flags: I0424 16:06:03.361298 41826 utils.go:241] ! --bind-address ip The IP address on which to listen for the --secure-port port. The associated interface(s) must be reachable by the rest of the cluster, and by CLI/web clients. If blank, all interfaces will be used (0.0.0.0 for all IPv4 interfaces and :: for all IPv6 interfaces). (default 0.0.0.0) I0424 16:06:03.361348 41826 utils.go:241] ! --cert-dir string The directory where the TLS certs are located. If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored. (default "/var/run/kubernetes") I0424 16:06:03.363864 41826 utils.go:241] ! --http2-max-streams-per-connection int The limit that the server gives to clients for the maximum number of streams in an HTTP/2 connection. Zero means to use golang's default. I0424 16:06:03.363924 41826 utils.go:241] ! --secure-port int The port on which to serve HTTPS with authentication and authorization.It cannot be switched off with 0. (default 6443) I0424 16:06:03.363969 41826 utils.go:241] ! --tls-cert-file string File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert). If HTTPS serving is enabled, and --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key are generated for the public address and saved to the directory specified by --cert-dir. I0424 16:06:03.364078 41826 utils.go:241] ! --tls-cipher-suites strings Comma-separated list of cipher suites for the server. If omitted, the default Go cipher suites will be use. Possible values: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_ECDSA_WITH_RC4_128_SHA,TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_RC4_128_SHA,TLS_RSA_WITH_3DES_EDE_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_256_GCM_SHA384,TLS_RSA_WITH_RC4_128_SHA I0424 16:06:03.364107 41826 utils.go:241] ! --tls-min-version string Minimum TLS version supported. Possible values: VersionTLS10, VersionTLS11, VersionTLS12 I0424 16:06:03.366360 41826 utils.go:241] ! --tls-private-key-file string File containing the default x509 private key matching --tls-cert-file. I0424 16:06:03.366460 41826 utils.go:241] ! --tls-sni-cert-key namedCertKey A pair of x509 certificate and private key file paths, optionally suffixed with a list of domain patterns which are fully qualified domain names, possibly with prefixed wildcard segments. If no domain patterns are provided, the names of the certificate are extracted. Non-wildcard matches trump over wildcard matches, explicit domain patterns trump over extracted names. For multiple key/certificate pairs, use the --tls-sni-cert-key multiple times. Examples: "example.crt,example.key" or "foo.crt,foo.key:*.foo.com,foo.com". (default []) I0424 16:06:03.366484 41826 utils.go:241] ! Insecure serving flags: I0424 16:06:03.366517 41826 utils.go:241] ! --insecure-bind-address ip The IP address on which to serve the --insecure-port (set to 0.0.0.0 for all IPv4 interfaces and :: for all IPv6 interfaces). (default 127.0.0.1) (DEPRECATED: This flag will be removed in a future version.) I0424 16:06:03.366538 41826 utils.go:241] ! --insecure-port int The port on which to serve unsecured, unauthenticated access. (default 8080) (DEPRECATED: This flag will be removed in a future version.) I0424 16:06:03.366547 41826 utils.go:241] ! Auditing flags: I0424 16:06:03.366565 41826 utils.go:241] ! --audit-dynamic-configuration Enables dynamic audit configuration. This feature also requires the DynamicAuditing feature flag I0424 16:06:03.366585 41826 utils.go:241] ! --audit-log-batch-buffer-size int The size of the buffer to store events before batching and writing. Only used in batch mode. (default 10000) I0424 16:06:03.366601 41826 utils.go:241] ! --audit-log-batch-max-size int The maximum size of a batch. Only used in batch mode. (default 1) I0424 16:06:03.418470 41826 utils.go:241] ! --audit-log-batch-max-wait duration The amount of time to wait before force writing the batch that hadn't reached the max size. Only used in batch mode. I0424 16:06:03.418532 41826 utils.go:241] ! --audit-log-batch-throttle-burst int Maximum number of requests sent at the same moment if ThrottleQPS was not utilized before. Only used in batch mode. I0424 16:06:03.418552 41826 utils.go:241] ! --audit-log-batch-throttle-enable Whether batching throttling is enabled. Only used in batch mode. I0424 16:06:03.418568 41826 utils.go:241] ! --audit-log-batch-throttle-qps float32 Maximum average number of batches per second. Only used in batch mode. I0424 16:06:03.418622 41826 utils.go:241] ! --audit-log-format string Format of saved audits. "legacy" indicates 1-line text format for each event. "json" indicates structured json format. Known formats are legacy,json. (default "json") I0424 16:06:03.418646 41826 utils.go:241] ! --audit-log-maxage int The maximum number of days to retain old audit log files based on the timestamp encoded in their filename. I0424 16:06:03.418676 41826 utils.go:241] ! --audit-log-maxbackup int The maximum number of old audit log files to retain. I0424 16:06:03.418694 41826 utils.go:241] ! --audit-log-maxsize int The maximum size in megabytes of the audit log file before it gets rotated. I0424 16:06:03.418736 41826 utils.go:241] ! --audit-log-mode string Strategy for sending audit events. Blocking indicates sending events should block server responses. Batch causes the backend to buffer and write events asynchronously. Known modes are batch,blocking,blocking-strict. (default "blocking") I0424 16:06:03.479476 41826 utils.go:241] ! --audit-log-path string If set, all requests coming to the apiserver will be logged to this file. '-' means standard out. I0424 16:06:03.479511 41826 utils.go:241] ! --audit-log-truncate-enabled Whether event and batch truncating is enabled. I0424 16:06:03.479576 41826 utils.go:241] ! --audit-log-truncate-max-batch-size int Maximum size of the batch sent to the underlying backend. Actual serialized size can be several hundreds of bytes greater. If a batch exceeds this limit, it is split into several batches of smaller size. (default 10485760) I0424 16:06:03.479616 41826 utils.go:241] ! --audit-log-truncate-max-event-size int Maximum size of the audit event sent to the underlying backend. If the size of an event is greater than this number, first request and response are removed, and if this doesn't reduce the size enough, event is discarded. (default 102400) I0424 16:06:03.479657 41826 utils.go:241] ! --audit-log-version string API group and version used for serializing audit events written to log. (default "audit.k8s.io/v1") I0424 16:06:03.479687 41826 utils.go:241] ! --audit-policy-file string Path to the file that defines the audit policy configuration. I0424 16:06:03.479725 41826 utils.go:241] ! --audit-webhook-batch-buffer-size int The size of the buffer to store events before batching and writing. Only used in batch mode. (default 10000) I0424 16:06:03.480058 41826 utils.go:241] ! --audit-webhook-batch-max-size int The maximum size of a batch. Only used in batch mode. (default 400) I0424 16:06:03.480097 41826 utils.go:241] ! --audit-webhook-batch-max-wait duration The amount of time to wait before force writing the batch that hadn't reached the max size. Only used in batch mode. (default 30s) I0424 16:06:03.480133 41826 utils.go:241] ! --audit-webhook-batch-throttle-burst int Maximum number of requests sent at the same moment if ThrottleQPS was not utilized before. Only used in batch mode. (default 15) I0424 16:06:03.480159 41826 utils.go:241] ! --audit-webhook-batch-throttle-enable Whether batching throttling is enabled. Only used in batch mode. (default true) I0424 16:06:03.480197 41826 utils.go:241] ! --audit-webhook-batch-throttle-qps float32 Maximum average number of batches per second. Only used in batch mode. (default 10) I0424 16:06:03.480223 41826 utils.go:241] ! --audit-webhook-config-file string Path to a kubeconfig formatted file that defines the audit webhook configuration. I0424 16:06:03.480261 41826 utils.go:241] ! --audit-webhook-initial-backoff duration The amount of time to wait before retrying the first failed request. (default 10s) I0424 16:06:03.480297 41826 utils.go:241] ! --audit-webhook-mode string Strategy for sending audit events. Blocking indicates sending events should block server responses. Batch causes the backend to buffer and write events asynchronously. Known modes are batch,blocking,blocking-strict. (default "batch") I0424 16:06:03.480317 41826 utils.go:241] ! --audit-webhook-truncate-enabled Whether event and batch truncating is enabled. I0424 16:06:03.480356 41826 utils.go:241] ! --audit-webhook-truncate-max-batch-size int Maximum size of the batch sent to the underlying backend. Actual serialized size can be several hundreds of bytes greater. If a batch exceeds this limit, it is split into several batches of smaller size. (default 10485760) I0424 16:06:03.480397 41826 utils.go:241] ! --audit-webhook-truncate-max-event-size int Maximum size of the audit event sent to the underlying backend. If the size of an event is greater than this number, first request and response are removed, and if this doesn't reduce the size enough, event is discarded. (default 102400) I0424 16:06:03.480419 41826 utils.go:241] ! --audit-webhook-version string API group and version used for serializing audit events written to webhook. (default "audit.k8s.io/v1") I0424 16:06:03.480428 41826 utils.go:241] ! Features flags: I0424 16:06:03.480452 41826 utils.go:241] ! --contention-profiling Enable lock contention profiling, if profiling is enabled I0424 16:06:03.480470 41826 utils.go:241] ! --enable-swagger-ui Enables swagger ui on the apiserver at /swagger-ui I0424 16:06:03.480498 41826 utils.go:241] ! --profiling Enable profiling via web interface host:port/debug/pprof/ (default true) I0424 16:06:03.480509 41826 utils.go:241] ! Authentication flags: I0424 16:06:03.480555 41826 utils.go:241] ! --anonymous-auth Enables anonymous requests to the secure port of the API server. Requests that are not rejected by another authentication method are treated as anonymous requests. Anonymous requests have a username of system:anonymous, and a group name of system:unauthenticated. (default true) I0424 16:06:03.480617 41826 utils.go:241] ! --api-audiences strings Identifiers of the API. The service account token authenticator will validate that tokens used against the API are bound to at least one of these audiences. If the --service-account-issuer flag is configured and this flag is not, this field defaults to a single element list containing the issuer URL . I0424 16:06:03.480664 41826 utils.go:241] ! --authentication-token-webhook-cache-ttl duration The duration to cache responses from the webhook token authenticator. (default 2m0s) I0424 16:06:03.480712 41826 utils.go:241] ! --authentication-token-webhook-config-file string File with webhook configuration for token authentication in kubeconfig format. The API server will query the remote service to determine authentication for bearer tokens. I0424 16:06:03.480754 41826 utils.go:241] ! --basic-auth-file string If set, the file that will be used to admit requests to the secure port of the API server via http basic authentication. I0424 16:06:03.480811 41826 utils.go:241] ! --client-ca-file string If set, any request presenting a client certificate signed by one of the authorities in the client-ca-file is authenticated with an identity corresponding to the CommonName of the client certificate. I0424 16:06:03.480846 41826 utils.go:241] ! --enable-bootstrap-token-auth Enable to allow secrets of type 'bootstrap.kubernetes.io/token' in the 'kube-system' namespace to be used for TLS bootstrapping authentication. I0424 16:06:03.480880 41826 utils.go:241] ! --oidc-ca-file string If set, the OpenID server's certificate will be verified by one of the authorities in the oidc-ca-file, otherwise the host's root CA set will be used. I0424 16:06:03.480918 41826 utils.go:241] ! --oidc-client-id string The client ID for the OpenID Connect client, must be set if oidc-issuer-url is set. I0424 16:06:03.480977 41826 utils.go:241] ! --oidc-groups-claim string If provided, the name of a custom OpenID Connect claim for specifying user groups. The claim value is expected to be a string or array of strings. This flag is experimental, please see the authentication documentation for further details. I0424 16:06:03.481001 41826 utils.go:241] ! --oidc-groups-prefix string If provided, all groups will be prefixed with this value to prevent conflicts with other authentication strategies. I0424 16:06:03.481027 41826 utils.go:241] ! --oidc-issuer-url string The URL of the OpenID issuer, only HTTPS scheme will be accepted. If set, it will be used to verify the OIDC JSON Web Token (JWT). I0424 16:06:03.481057 41826 utils.go:241] ! --oidc-required-claim mapStringString A key=value pair that describes a required claim in the ID Token. If set, the claim is verified to be present in the ID Token with a matching value. Repeat this flag to specify multiple claims. I0424 16:06:03.481089 41826 utils.go:241] ! --oidc-signing-algs strings Comma-separated list of allowed JOSE asymmetric signing algorithms. JWTs with a 'alg' header value not in this list will be rejected. Values are defined by RFC 7518 https://tools.ietf.org/html/rfc7518#section-3.1. (default [RS256]) I0424 16:06:03.481128 41826 utils.go:241] ! --oidc-username-claim string The OpenID claim to use as the user name. Note that claims other than the default ('sub') is not guaranteed to be unique and immutable. This flag is experimental, please see the authentication documentation for further details. (default "sub") I0424 16:06:03.481184 41826 utils.go:241] ! --oidc-username-prefix string If provided, all usernames will be prefixed with this value. If not provided, username claims other than 'email' are prefixed by the issuer URL to avoid clashes. To skip any prefixing, provide the value '-'. I0424 16:06:03.481250 41826 utils.go:241] ! --requestheader-allowed-names strings List of client certificate common names to allow to provide usernames in headers specified by --requestheader-username-headers. If empty, any client certificate validated by the authorities in --requestheader-client-ca-file is allowed. I0424 16:06:03.481287 41826 utils.go:241] ! --requestheader-client-ca-file string Root certificate bundle to use to verify client certificates on incoming requests before trusting usernames in headers specified by --requestheader-username-headers. WARNING: generally do not depend on authorization being already done for incoming requests. I0424 16:06:03.481309 41826 utils.go:241] ! --requestheader-extra-headers-prefix strings List of request header prefixes to inspect. X-Remote-Extra- is suggested. I0424 16:06:03.481327 41826 utils.go:241] ! --requestheader-group-headers strings List of request headers to inspect for groups. X-Remote-Group is suggested. I0424 16:06:03.481343 41826 utils.go:241] ! --requestheader-username-headers strings List of request headers to inspect for usernames. X-Remote-User is common. I0424 16:06:03.481374 41826 utils.go:241] ! --service-account-issuer string Identifier of the service account token issuer. The issuer will assert this identifier in "iss" claim of issued tokens. This value is a string or URI. I0424 16:06:03.481429 41826 utils.go:241] ! --service-account-key-file stringArray File containing PEM-encoded x509 RSA or ECDSA private or public keys, used to verify ServiceAccount tokens. The specified file can contain multiple keys, and the flag can be specified multiple times with different files. If unspecified, --tls-private-key-file is used. Must be specified when --service-account-signing-key is provided I0424 16:06:03.481455 41826 utils.go:241] ! --service-account-lookup If true, validate ServiceAccount tokens exist in etcd as part of authentication. (default true) I0424 16:06:03.481498 41826 utils.go:241] ! --service-account-max-token-expiration duration The maximum validity duration of a token created by the service account token issuer. If an otherwise valid TokenRequest with a validity duration larger than this value is requested, a token will be issued with a validity duration of this value. I0424 16:06:03.481527 41826 utils.go:241] ! --token-auth-file string If set, the file that will be used to secure the secure port of the API server via token authentication. I0424 16:06:03.481536 41826 utils.go:241] ! Authorization flags: I0424 16:06:03.481568 41826 utils.go:241] ! --authorization-mode strings Ordered list of plug-ins to do authorization on secure port. Comma-delimited list of: AlwaysAllow,AlwaysDeny,ABAC,Webhook,RBAC,Node. (default [AlwaysAllow]) I0424 16:06:03.481593 41826 utils.go:241] ! --authorization-policy-file string File with authorization policy in csv format, used with --authorization-mode=ABAC, on the secure port. I0424 16:06:03.481618 41826 utils.go:241] ! --authorization-webhook-cache-authorized-ttl duration The duration to cache 'authorized' responses from the webhook authorizer. (default 5m0s) I0424 16:06:03.481639 41826 utils.go:241] ! --authorization-webhook-cache-unauthorized-ttl duration The duration to cache 'unauthorized' responses from the webhook authorizer. (default 30s) I0424 16:06:03.481673 41826 utils.go:241] ! --authorization-webhook-config-file string File with webhook configuration in kubeconfig format, used with --authorization-mode=Webhook. The API server will query the remote service to determine access on the API server's secure port. I0424 16:06:03.481683 41826 utils.go:241] ! Cloud provider flags: I0424 16:06:03.481699 41826 utils.go:241] ! --cloud-config string The path to the cloud provider configuration file. Empty string for no configuration file. I0424 16:06:03.481718 41826 utils.go:241] ! --cloud-provider string The provider for cloud services. Empty string for no provider. I0424 16:06:03.481729 41826 utils.go:241] ! Storage flags: I0424 16:06:03.481740 41826 utils.go:241] ! Api enablement flags: I0424 16:06:03.481815 41826 utils.go:241] ! --runtime-config mapStringString A set of key=value pairs that describe runtime configuration that may be passed to apiserver. / (or for the core group) key can be used to turn on/off specific api versions. api/all is special key to control all api versions, be careful setting it false, unless you know what you do. api/legacy is deprecated, we will remove it in the future, so stop using it. I0424 16:06:03.481841 41826 utils.go:241] ! Admission flags: I0424 16:06:03.481948 41826 utils.go:241] ! --admission-control strings Admission is divided into two phases. In the first phase, only mutating admission plugins run. In the second phase, only validating admission plugins run. The names in the below list may represent a validating plugin, a mutating plugin, or both. The order of plugins in which they are passed to this flag does not matter. Comma-delimited list of: AlwaysAdmit, AlwaysDeny, AlwaysPullImages, DefaultStorageClass, DefaultTolerationSeconds, DenyEscalatingExec, DenyExecOnPrivileged, EventRateLimit, ExtendedResourceToleration, ImagePolicyWebhook, Initializers, LimitPodHardAntiAffinityTopology, LimitRanger, MutatingAdmissionWebhook, NamespaceAutoProvision, NamespaceExists, NamespaceLifecycle, NodeRestriction, OwnerReferencesPermissionEnforcement, PersistentVolumeClaimResize, PersistentVolumeLabel, PodNodeSelector, PodPreset, PodSecurityPolicy, PodTolerationRestriction, Priority, ResourceQuota, SecurityContextDeny, ServiceAccount, StorageObjectInUseProtection, ValidatingAdmissionWebhook. (DEPRECATED: Use --enable-admission-plugins or --disable-admission-plugins instead. Will be removed in a future version.) I0424 16:06:03.482046 41826 utils.go:241] ! --admission-control-config-file string File with admission control configuration. I0424 16:06:03.482167 41826 utils.go:241] ! --disable-admission-plugins strings admission plugins that should be disabled although they are in the default enabled plugins list (NamespaceLifecycle, LimitRanger, ServiceAccount, Priority, DefaultTolerationSeconds, DefaultStorageClass, PersistentVolumeClaimResize, MutatingAdmissionWebhook, ValidatingAdmissionWebhook, ResourceQuota). Comma-delimited list of admission plugins: AlwaysAdmit, AlwaysDeny, AlwaysPullImages, DefaultStorageClass, DefaultTolerationSeconds, DenyEscalatingExec, DenyExecOnPrivileged, EventRateLimit, ExtendedResourceToleration, ImagePolicyWebhook, Initializers, LimitPodHardAntiAffinityTopology, LimitRanger, MutatingAdmissionWebhook, NamespaceAutoProvision, NamespaceExists, NamespaceLifecycle, NodeRestriction, OwnerReferencesPermissionEnforcement, PersistentVolumeClaimResize, PersistentVolumeLabel, PodNodeSelector, PodPreset, PodSecurityPolicy, PodTolerationRestriction, Priority, ResourceQuota, SecurityContextDeny, ServiceAccount, StorageObjectInUseProtection, ValidatingAdmissionWebhook. The order of plugins in this flag does not matter. I0424 16:06:03.482354 41826 utils.go:241] ! --enable-admission-plugins strings admission plugins that should be enabled in addition to default enabled ones (NamespaceLifecycle, LimitRanger, ServiceAccount, Priority, DefaultTolerationSeconds, DefaultStorageClass, PersistentVolumeClaimResize, MutatingAdmissionWebhook, ValidatingAdmissionWebhook, ResourceQuota). Comma-delimited list of admission plugins: AlwaysAdmit, AlwaysDeny, AlwaysPullImages, DefaultStorageClass, DefaultTolerationSeconds, DenyEscalatingExec, DenyExecOnPrivileged, EventRateLimit, ExtendedResourceToleration, ImagePolicyWebhook, Initializers, LimitPodHardAntiAffinityTopology, LimitRanger, MutatingAdmissionWebhook, NamespaceAutoProvision, NamespaceExists, NamespaceLifecycle, NodeRestriction, OwnerReferencesPermissionEnforcement, PersistentVolumeClaimResize, PersistentVolumeLabel, PodNodeSelector, PodPreset, PodSecurityPolicy, PodTolerationRestriction, Priority, ResourceQuota, SecurityContextDeny, ServiceAccount, StorageObjectInUseProtection, ValidatingAdmissionWebhook. The order of plugins in this flag does not matter. I0424 16:06:03.482441 41826 utils.go:241] ! Misc flags: I0424 16:06:03.482470 41826 utils.go:241] ! --allow-privileged If true, allow privileged containers. [default=false] I0424 16:06:03.482496 41826 utils.go:241] ! --apiserver-count int The number of apiservers running in the cluster, must be a positive number. (In use when --endpoint-reconciler-type=master-count is enabled.) (default 1) I0424 16:06:03.482514 41826 utils.go:241] ! --enable-aggregator-routing Turns on aggregator routing requests to endpoints IP rather than cluster IP. I0424 16:06:03.482530 41826 utils.go:241] ! --enable-logs-handler If true, install a /logs handler for the apiserver logs. (default true) I0424 16:06:03.482550 41826 utils.go:241] ! --endpoint-reconciler-type string Use an endpoint reconciler (master-count, lease, none) (default "lease") I0424 16:06:03.482564 41826 utils.go:241] ! --event-ttl duration Amount of time to retain events. (default 1h0m0s) I0424 16:06:03.482588 41826 utils.go:241] ! --kubelet-certificate-authority string Path to a cert file for the certificate authority. I0424 16:06:03.482601 41826 utils.go:241] ! --kubelet-client-certificate string Path to a client cert file for TLS. I0424 16:06:03.482617 41826 utils.go:241] ! --kubelet-client-key string Path to a client key file for TLS. I0424 16:06:03.482631 41826 utils.go:241] ! --kubelet-https Use https for kubelet connections. (default true) I0424 16:06:03.482654 41826 utils.go:241] ! --kubelet-preferred-address-types strings List of the preferred NodeAddressTypes to use for kubelet connections. (default [Hostname,InternalDNS,InternalIP,ExternalDNS,ExternalIP]) I0424 16:06:03.482668 41826 utils.go:241] ! --kubelet-read-only-port uint DEPRECATED: kubelet port. (default 10255) I0424 16:06:03.482716 41826 utils.go:241] ! --kubelet-timeout duration Timeout for kubelet operations. (default 5s) I0424 16:06:03.482773 41826 utils.go:241] ! --kubernetes-service-node-port int If non-zero, the Kubernetes master service (which apiserver creates/maintains) will be of type NodePort, using this as the value of the port. If zero, the Kubernetes master service will be of type ClusterIP. I0424 16:06:03.482814 41826 utils.go:241] ! --max-connection-bytes-per-sec int If non-zero, throttle each user connection to this number of bytes/sec. Currently only applies to long-running requests. I0424 16:06:03.482908 41826 utils.go:241] ! --proxy-client-cert-file string Client certificate used to prove the identity of the aggregator or kube-apiserver when it must call out during a request. This includes proxying requests to a user api-server and calling out to webhook admission plugins. It is expected that this cert includes a signature from the CA in the --requestheader-client-ca-file flag. That CA is published in the 'extension-apiserver-authentication' configmap in the kube-system namespace. Components receiving calls from kube-aggregator should use that CA to perform their half of the mutual TLS verification. I0424 16:06:03.482949 41826 utils.go:241] ! --proxy-client-key-file string Private key for the client certificate used to prove the identity of the aggregator or kube-apiserver when it must call out during a request. This includes proxying requests to a user api-server and calling out to webhook admission plugins. I0424 16:06:03.482978 41826 utils.go:241] ! --service-account-signing-key-file string Path to the file that contains the current private key of the service account token issuer. The issuer will sign issued ID tokens with this private key. (Requires the 'TokenRequest' feature gate.) I0424 16:06:03.483022 41826 utils.go:241] ! --service-cluster-ip-range ipNet A CIDR notation IP range from which to assign service cluster IPs. This must not overlap with any IP ranges assigned to nodes for pods. (default 10.0.0.0/24) I0424 16:06:03.483064 41826 utils.go:241] ! --service-node-port-range portRange A port range to reserve for services with NodePort visibility. Example: '30000-32767'. Inclusive at both ends of the range. (default 30000-32767) I0424 16:06:03.483101 41826 utils.go:241] ! Global flags: I0424 16:06:03.483115 41826 utils.go:241] ! --alsologtostderr log to standard error as well as files I0424 16:06:03.483140 41826 utils.go:241] ! -h, --help help for kube-apiserver I0424 16:06:03.483176 41826 utils.go:241] ! --log-backtrace-at traceLocation when logging hits line file:N, emit a stack trace (default :0) I0424 16:06:03.483202 41826 utils.go:241] ! --log-dir string If non-empty, write log files in this directory I0424 16:06:03.483216 41826 utils.go:241] ! --log-file string If non-empty, use this log file I0424 16:06:03.483231 41826 utils.go:241] ! --log-flush-frequency duration Maximum number of seconds between log flushes (default 5s) I0424 16:06:03.483244 41826 utils.go:241] ! --logtostderr log to standard error instead of files (default true) I0424 16:06:03.483258 41826 utils.go:241] ! --skip-headers If true, avoid header prefixes in the log messages I0424 16:06:03.483272 41826 utils.go:241] ! --stderrthreshold severity logs at or above this threshold go to stderr (default 2) I0424 16:06:03.483282 41826 utils.go:241] ! -v, --v Level log level for V logs I0424 16:06:03.483294 41826 utils.go:241] ! --version version[=true] Print version information and quit I0424 16:06:03.483309 41826 utils.go:241] ! --vmodule moduleSpec comma-separated list of pattern=N settings for file-filtered logging I0424 16:06:03.483326 41826 utils.go:241] ! error: invalid authentication config: open /Users/tasdikrahman/workspace/work/jaach/minikube/users.csv: no such file or directory W0424 16:06:03.487078 41826 logs.go:88] Found kube-apiserver problem: error: invalid authentication config: open /Users/tasdikrahman/workspace/work/jaach/minikube/users.csv: no such file or directory I0424 16:06:03.487114 41826 logs.go:76] Gathering logs for kube-scheduler ... I0424 16:06:03.487123 41826 ssh_runner.go:137] Run with output: docker logs --tail 200 8e96011aebf6 I0424 16:06:03.521636 41826 utils.go:241] ! E0424 10:35:44.111740 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.521685 41826 utils.go:241] ! E0424 10:35:44.111789 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.521752 41826 utils.go:241] ! E0424 10:35:44.117939 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.522032 41826 utils.go:241] ! E0424 10:35:44.119637 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.522240 41826 utils.go:241] ! E0424 10:35:44.121369 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.522363 41826 utils.go:241] ! E0424 10:35:44.126015 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.522430 41826 utils.go:241] ! E0424 10:35:44.128007 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.522700 41826 utils.go:241] ! E0424 10:35:44.128166 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.522782 41826 utils.go:241] ! E0424 10:35:44.129729 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.546770 41826 utils.go:241] ! E0424 10:35:44.131840 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.546809 41826 utils.go:241] ! E0424 10:35:45.114801 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.546838 41826 utils.go:241] ! E0424 10:35:45.114876 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547445 41826 utils.go:241] ! E0424 10:35:45.119055 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547518 41826 utils.go:241] ! E0424 10:35:45.120547 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547576 41826 utils.go:241] ! E0424 10:35:45.121991 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547632 41826 utils.go:241] ! E0424 10:35:45.127730 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547660 41826 utils.go:241] ! E0424 10:35:45.129451 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547690 41826 utils.go:241] ! E0424 10:35:45.130154 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547720 41826 utils.go:241] ! E0424 10:35:45.132467 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547748 41826 utils.go:241] ! E0424 10:35:45.133542 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547779 41826 utils.go:241] ! E0424 10:35:46.115249 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547824 41826 utils.go:241] ! E0424 10:35:46.117242 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547884 41826 utils.go:241] ! E0424 10:35:46.121600 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.547957 41826 utils.go:241] ! E0424 10:35:46.121700 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548006 41826 utils.go:241] ! E0424 10:35:46.123898 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548052 41826 utils.go:241] ! E0424 10:35:46.129193 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548099 41826 utils.go:241] ! E0424 10:35:46.131115 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548141 41826 utils.go:241] ! E0424 10:35:46.133412 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548204 41826 utils.go:241] ! E0424 10:35:46.134269 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548268 41826 utils.go:241] ! E0424 10:35:46.135672 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548306 41826 utils.go:241] ! E0424 10:35:47.117574 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548352 41826 utils.go:241] ! E0424 10:35:47.118483 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548437 41826 utils.go:241] ! E0424 10:35:47.122407 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548474 41826 utils.go:241] ! E0424 10:35:47.124042 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548507 41826 utils.go:241] ! E0424 10:35:47.125252 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548541 41826 utils.go:241] ! E0424 10:35:47.130846 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548568 41826 utils.go:241] ! E0424 10:35:47.132732 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548598 41826 utils.go:241] ! E0424 10:35:47.134636 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548633 41826 utils.go:241] ! E0424 10:35:47.137344 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548662 41826 utils.go:241] ! E0424 10:35:47.138006 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548690 41826 utils.go:241] ! E0424 10:35:48.119768 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548720 41826 utils.go:241] ! E0424 10:35:48.119821 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548750 41826 utils.go:241] ! E0424 10:35:48.123403 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548778 41826 utils.go:241] ! E0424 10:35:48.125829 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548808 41826 utils.go:241] ! E0424 10:35:48.126562 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548842 41826 utils.go:241] ! E0424 10:35:48.131843 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548869 41826 utils.go:241] ! E0424 10:35:48.134592 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548906 41826 utils.go:241] ! E0424 10:35:48.135579 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548938 41826 utils.go:241] ! E0424 10:35:48.139371 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548969 41826 utils.go:241] ! E0424 10:35:48.139581 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.548998 41826 utils.go:241] ! E0424 10:35:49.121325 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549028 41826 utils.go:241] ! E0424 10:35:49.121704 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549059 41826 utils.go:241] ! E0424 10:35:49.125031 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549088 41826 utils.go:241] ! E0424 10:35:49.127270 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549118 41826 utils.go:241] ! E0424 10:35:49.127991 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549155 41826 utils.go:241] ! E0424 10:35:49.132725 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549183 41826 utils.go:241] ! E0424 10:35:49.135587 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549213 41826 utils.go:241] ! E0424 10:35:49.137146 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549241 41826 utils.go:241] ! E0424 10:35:49.140299 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549273 41826 utils.go:241] ! E0424 10:35:49.141690 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549306 41826 utils.go:241] ! E0424 10:35:50.124103 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549336 41826 utils.go:241] ! E0424 10:35:50.124591 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549370 41826 utils.go:241] ! E0424 10:35:50.126136 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549398 41826 utils.go:241] ! E0424 10:35:50.127766 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549434 41826 utils.go:241] ! E0424 10:35:50.129055 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549468 41826 utils.go:241] ! E0424 10:35:50.133519 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549495 41826 utils.go:241] ! E0424 10:35:50.136201 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549524 41826 utils.go:241] ! E0424 10:35:50.137699 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549552 41826 utils.go:241] ! E0424 10:35:50.141160 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549585 41826 utils.go:241] ! E0424 10:35:50.142251 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549614 41826 utils.go:241] ! E0424 10:35:51.125681 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549643 41826 utils.go:241] ! E0424 10:35:51.127752 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549672 41826 utils.go:241] ! E0424 10:35:51.127956 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549702 41826 utils.go:241] ! E0424 10:35:51.128510 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549730 41826 utils.go:241] ! E0424 10:35:51.129710 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549764 41826 utils.go:241] ! E0424 10:35:51.134519 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549792 41826 utils.go:241] ! E0424 10:35:51.137025 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549825 41826 utils.go:241] ! E0424 10:35:51.138457 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549853 41826 utils.go:241] ! E0424 10:35:51.143420 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549884 41826 utils.go:241] ! E0424 10:35:51.143420 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549916 41826 utils.go:241] ! E0424 10:35:52.126703 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549949 41826 utils.go:241] ! E0424 10:35:52.129264 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.549994 41826 utils.go:241] ! E0424 10:35:52.129361 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550032 41826 utils.go:241] ! E0424 10:35:52.130711 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550070 41826 utils.go:241] ! E0424 10:35:52.132125 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550110 41826 utils.go:241] ! E0424 10:35:52.135390 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550144 41826 utils.go:241] ! E0424 10:35:52.137805 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550184 41826 utils.go:241] ! E0424 10:35:52.139548 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550220 41826 utils.go:241] ! E0424 10:35:52.143856 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550268 41826 utils.go:241] ! E0424 10:35:52.146470 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550312 41826 utils.go:241] ! E0424 10:35:53.127528 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550346 41826 utils.go:241] ! E0424 10:35:53.130824 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550381 41826 utils.go:241] ! E0424 10:35:53.131194 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550434 41826 utils.go:241] ! E0424 10:35:53.132852 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550473 41826 utils.go:241] ! E0424 10:35:53.133712 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550507 41826 utils.go:241] ! E0424 10:35:53.136469 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550535 41826 utils.go:241] ! E0424 10:35:53.138732 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550565 41826 utils.go:241] ! E0424 10:35:53.140418 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550593 41826 utils.go:241] ! E0424 10:35:53.144825 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550631 41826 utils.go:241] ! E0424 10:35:53.147676 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550661 41826 utils.go:241] ! E0424 10:35:54.128808 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550694 41826 utils.go:241] ! E0424 10:35:54.132851 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550723 41826 utils.go:241] ! E0424 10:35:54.132904 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550750 41826 utils.go:241] ! E0424 10:35:54.134442 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550782 41826 utils.go:241] ! E0424 10:35:54.135363 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550819 41826 utils.go:241] ! E0424 10:35:54.137290 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550846 41826 utils.go:241] ! E0424 10:35:54.139603 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550877 41826 utils.go:241] ! E0424 10:35:54.141961 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550922 41826 utils.go:241] ! E0424 10:35:54.145928 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.550967 41826 utils.go:241] ! E0424 10:35:54.148709 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551007 41826 utils.go:241] ! E0424 10:35:55.130510 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551040 41826 utils.go:241] ! E0424 10:35:55.133659 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551078 41826 utils.go:241] ! E0424 10:35:55.134543 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551110 41826 utils.go:241] ! E0424 10:35:55.135854 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551141 41826 utils.go:241] ! E0424 10:35:55.136850 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551183 41826 utils.go:241] ! E0424 10:35:55.138667 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551229 41826 utils.go:241] ! E0424 10:35:55.140150 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551263 41826 utils.go:241] ! E0424 10:35:55.142777 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551291 41826 utils.go:241] ! E0424 10:35:55.146681 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551322 41826 utils.go:241] ! E0424 10:35:55.149673 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551354 41826 utils.go:241] ! E0424 10:35:56.134068 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551382 41826 utils.go:241] ! E0424 10:35:56.134789 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551411 41826 utils.go:241] ! E0424 10:35:56.135329 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551438 41826 utils.go:241] ! E0424 10:35:56.136442 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551476 41826 utils.go:241] ! E0424 10:35:56.137964 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551513 41826 utils.go:241] ! E0424 10:35:56.139676 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551540 41826 utils.go:241] ! E0424 10:35:56.141002 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551571 41826 utils.go:241] ! E0424 10:35:56.144399 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551599 41826 utils.go:241] ! E0424 10:35:56.148524 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551646 41826 utils.go:241] ! E0424 10:35:56.151400 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551695 41826 utils.go:241] ! E0424 10:35:57.136719 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551734 41826 utils.go:241] ! E0424 10:35:57.136846 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551767 41826 utils.go:241] ! E0424 10:35:57.137509 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551798 41826 utils.go:241] ! E0424 10:35:57.138665 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551832 41826 utils.go:241] ! E0424 10:35:57.140305 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551879 41826 utils.go:241] ! E0424 10:35:57.141457 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551911 41826 utils.go:241] ! E0424 10:35:57.142405 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551945 41826 utils.go:241] ! E0424 10:35:57.145098 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.551978 41826 utils.go:241] ! E0424 10:35:57.149710 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552009 41826 utils.go:241] ! E0424 10:35:57.152654 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552045 41826 utils.go:241] ! E0424 10:35:58.137818 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552100 41826 utils.go:241] ! E0424 10:35:58.138460 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552135 41826 utils.go:241] ! E0424 10:35:58.139896 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552176 41826 utils.go:241] ! E0424 10:35:58.141915 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552221 41826 utils.go:241] ! E0424 10:35:58.142997 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552275 41826 utils.go:241] ! E0424 10:35:58.144860 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552315 41826 utils.go:241] ! E0424 10:35:58.145675 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552344 41826 utils.go:241] ! E0424 10:35:58.147094 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552372 41826 utils.go:241] ! E0424 10:35:58.150445 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552404 41826 utils.go:241] ! E0424 10:35:58.153400 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552457 41826 utils.go:241] ! E0424 10:35:59.138249 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552509 41826 utils.go:241] ! E0424 10:35:59.139772 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552554 41826 utils.go:241] ! E0424 10:35:59.140332 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.552583 41826 utils.go:241] ! E0424 10:35:59.142423 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.602617 41826 utils.go:241] ! E0424 10:35:59.143407 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.602703 41826 utils.go:241] ! E0424 10:35:59.145481 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.602767 41826 utils.go:241] ! E0424 10:35:59.146568 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.602813 41826 utils.go:241] ! E0424 10:35:59.147517 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.602846 41826 utils.go:241] ! E0424 10:35:59.150898 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.602895 41826 utils.go:241] ! E0424 10:35:59.153772 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.670359 41826 utils.go:241] ! E0424 10:36:00.138781 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.670429 41826 utils.go:241] ! E0424 10:36:00.140455 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.670473 41826 utils.go:241] ! E0424 10:36:00.142615 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.670538 41826 utils.go:241] ! E0424 10:36:00.142825 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.670602 41826 utils.go:241] ! E0424 10:36:00.145164 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.670685 41826 utils.go:241] ! E0424 10:36:00.146076 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.670923 41826 utils.go:241] ! E0424 10:36:00.147167 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.670987 41826 utils.go:241] ! E0424 10:36:00.148783 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.671028 41826 utils.go:241] ! E0424 10:36:00.151594 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.671076 41826 utils.go:241] ! E0424 10:36:00.154483 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.671130 41826 utils.go:241] ! E0424 10:36:01.139893 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.671164 41826 utils.go:241] ! E0424 10:36:01.144585 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.673627 41826 utils.go:241] ! E0424 10:36:01.145213 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.673688 41826 utils.go:241] ! E0424 10:36:01.145867 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.673750 41826 utils.go:241] ! E0424 10:36:01.147666 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.673797 41826 utils.go:241] ! E0424 10:36:01.148080 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.673849 41826 utils.go:241] ! E0424 10:36:01.149330 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.673906 41826 utils.go:241] ! E0424 10:36:01.149953 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.673951 41826 utils.go:241] ! E0424 10:36:01.152112 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674000 41826 utils.go:241] ! E0424 10:36:01.155759 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674052 41826 utils.go:241] ! E0424 10:36:02.143856 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674123 41826 utils.go:241] ! E0424 10:36:02.145564 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674204 41826 utils.go:241] ! E0424 10:36:02.147669 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674284 41826 utils.go:241] ! E0424 10:36:02.149955 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674411 41826 utils.go:241] ! E0424 10:36:02.151231 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674465 41826 utils.go:241] ! E0424 10:36:02.152432 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674516 41826 utils.go:241] ! E0424 10:36:02.154138 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674562 41826 utils.go:241] ! E0424 10:36:02.155596 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674618 41826 utils.go:241] ! E0424 10:36:02.156395 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674724 41826 utils.go:241] ! E0424 10:36:02.157924 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674789 41826 utils.go:241] ! E0424 10:36:03.145335 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicationController: Get https://localhost:8443/api/v1/replicationcontrollers?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674872 41826 utils.go:241] ! E0424 10:36:03.147348 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1/storageclasses?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674922 41826 utils.go:241] ! E0424 10:36:03.148619 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolume: Get https://localhost:8443/api/v1/persistentvolumes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.674979 41826 utils.go:241] ! E0424 10:36:03.151009 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Service: Get https://localhost:8443/api/v1/services?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.675070 41826 utils.go:241] ! E0424 10:36:03.151929 1 reflector.go:134] k8s.io/kubernetes/cmd/kube-scheduler/app/server.go:232: Failed to list *v1.Pod: Get https://localhost:8443/api/v1/pods?fieldSelector=status.phase%21%3DFailed%2Cstatus.phase%21%3DSucceeded&limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.675137 41826 utils.go:241] ! E0424 10:36:03.153397 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.StatefulSet: Get https://localhost:8443/apis/apps/v1/statefulsets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.675186 41826 utils.go:241] ! E0424 10:36:03.155827 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.Node: Get https://localhost:8443/api/v1/nodes?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.675239 41826 utils.go:241] ! E0424 10:36:03.157049 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.PersistentVolumeClaim: Get https://localhost:8443/api/v1/persistentvolumeclaims?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.675310 41826 utils.go:241] ! E0424 10:36:03.157861 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1.ReplicaSet: Get https://localhost:8443/apis/apps/v1/replicasets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused I0424 16:06:03.675379 41826 utils.go:241] ! E0424 10:36:03.159355 1 reflector.go:134] k8s.io/client-go/informers/factory.go:132: Failed to list *v1beta1.PodDisruptionBudget: Get https://localhost:8443/apis/policy/v1beta1/poddisruptionbudgets?limit=500&resourceVersion=0: dial tcp 127.0.0.1:8443: connect: connection refused W0424 16:06:03.683785 41826 exit.go:100] Error starting cluster: cmd failed: sudo /usr/bin/kubeadm init --config /var/lib/kubeadm.yaml --ignore-preflight-errors=DirAvailable--etc-kubernetes-manifests,DirAvailable--data-minikube,FileAvailable--etc-kubernetes-manifests-kube-scheduler.yaml,FileAvailable--etc-kubernetes-manifests-kube-apiserver.yaml,FileAvailable--etc-kubernetes-manifests-kube-controller-manager.yaml,FileAvailable--etc-kubernetes-manifests-etcd.yaml,Port-10250,Swap [init] Using Kubernetes version: v1.13.0 [preflight] Running pre-flight checks [WARNING Service-Docker]: docker service is not enabled, please run 'systemctl enable docker.service' [WARNING SystemVerification]: this Docker version is not on the list of validated versions: 18.09.6. Latest validated version: 18.06 [preflight] Pulling images required for setting up a Kubernetes cluster [preflight] This might take a minute or two, depending on th e speed of[WARNING Ser your intevice-Kubelet]rnet connection : kubelet service is not enabled, please run 'systemctl enable kubelet.service' [preflight] You can also perform this action in beforehand using 'kubeadm config images pull' [kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env" [kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml" [kubelet-start] Activating the kubelet service [certs] Using certificateDir folder "/var/lib/minikube/certs/" [certs] Using existing ca certificate authority [certs] Generating "apiserver-kubelet-client" certificate and key [certs] Using existing apiserver certificate and key on disk [certs] Generating "front-proxy-ca" certificate and key [certs] Generating "front-proxy-client" certificate and key [certs] Generating "etcd/ca" certificate and key [certs] Generating "etcd/server" certificate and key [certs] etcd/server serving cert is signed for DNS names [minikube localhost] and IPs [192.168.99.101 127.0.0.1 ::1] [certs] Generating "etcd/peer" certificate and key [certs] etcd/peer serving cert is signed for DNS names [minikube localhost] and IPs [192.168.99.101 127.0.0.1 ::1] [certs] Generating "etcd/healthcheck-client" certificate and key [certs] Generating "apiserver-etcd-client" certificate and key [certs] Generating "sa" key and public key [kubeconfig] Using kubeconfig folder "/etc/kubernetes" [kubeconfig] Writing "admin.conf" kubeconfig file [kubeconfig] Writing "kubelet.conf" kubeconfig file [kubeconfig] Writing "controller-manager.conf" kubeconfig file [kubeconfig] Writing "scheduler.conf" kubeconfig file [control-plane] Using manifest folder "/etc/kubernetes/manifests" [control-plane] Creating static Pod manifest for "kube-apiserver" [control-plane] Creating static Pod manifest for "kube-controller-manager" [control-plane] Creating static Pod manifest for "kube-scheduler" [etcd] Creating static Pod manifest for local etcd in "/etc/kubernetes/manifests" [wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 4m0s [kubelet-check] Initial timeout of 40s passed. Unfortunately, an error has occurred: error execution phase wait-control-plane: couldn't initialize a Kubernetes timed out waiting for the condition cluster This error is likely caused by: - The kubelet is not running - The kubelet is unhealthy due to a misconfiguration of the node in some way (required cgroups disabled) If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands: - 'systemctl status kubelet' - 'journalctl -xeu kubelet' Additionally, a control plane component may have crashed or exited when started by the container runtime. To troubleshoot, list all containers using your preferred container runtimes CLI, e.g. docker. Here is one example how you may list all Kubernetes containers running in docker: - 'docker ps -a | grep kube | grep -v pause' Once you have found the failing container, you can inspect its logs with: - 'docker logs CONTAINERID' : Process exited with status 1 X Error starting cluster: cmd failed: sudo /usr/bin/kubeadm init --config /var/lib/kubeadm.yaml --ignore-preflight-errors=DirAvailable--etc-kubernetes-manifests,DirAvailable--data-minikube,FileAvailable--etc-kubernetes-manifests-kube-scheduler.yaml,FileAvailable--etc-kubernetes-manifests-kube-apiserver.yaml,FileAvailable--etc-kubernetes-manifests-kube-controller-manager.yaml,FileAvailable--etc-kubernetes-manifests-etcd.yaml,Port-10250,Swap [init] Using Kubernetes version: v1.13.0 [preflight] Running pre-flight checks [WARNING Service-Docker]: docker service is not enabled, please run 'systemctl enable docker.service' [WARNING SystemVerification]: this Docker version is not on the list of validated versions: 18.09.6. Latest validated version: 18.06 [preflight] Pulling images required for setting up a Kubernetes cluster [preflight] This might take a minute or two, depending on th e speed of[WARNING Ser your intevice-Kubelet]rnet connection : kubelet service is not enabled, please run 'systemctl enable kubelet.service' [preflight] You can also perform this action in beforehand using 'kubeadm config images pull' [kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env" [kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml" [kubelet-start] Activating the kubelet service [certs] Using certificateDir folder "/var/lib/minikube/certs/" [certs] Using existing ca certificate authority [certs] Generating "apiserver-kubelet-client" certificate and key [certs] Using existing apiserver certificate and key on disk [certs] Generating "front-proxy-ca" certificate and key [certs] Generating "front-proxy-client" certificate and key [certs] Generating "etcd/ca" certificate and key [certs] Generating "etcd/server" certificate and key [certs] etcd/server serving cert is signed for DNS names [minikube localhost] and IPs [192.168.99.101 127.0.0.1 ::1] [certs] Generating "etcd/peer" certificate and key [certs] etcd/peer serving cert is signed for DNS names [minikube localhost] and IPs [192.168.99.101 127.0.0.1 ::1] [certs] Generating "etcd/healthcheck-client" certificate and key [certs] Generating "apiserver-etcd-client" certificate and key [certs] Generating "sa" key and public key [kubeconfig] Using kubeconfig folder "/etc/kubernetes" [kubeconfig] Writing "admin.conf" kubeconfig file [kubeconfig] Writing "kubelet.conf" kubeconfig file [kubeconfig] Writing "controller-manager.conf" kubeconfig file [kubeconfig] Writing "scheduler.conf" kubeconfig file [control-plane] Using manifest folder "/etc/kubernetes/manifests" [control-plane] Creating static Pod manifest for "kube-apiserver" [control-plane] Creating static Pod manifest for "kube-controller-manager" [control-plane] Creating static Pod manifest for "kube-scheduler" [etcd] Creating static Pod manifest for local etcd in "/etc/kubernetes/manifests" [wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods from directory "/etc/kubernetes/manifests". This can take up to 4m0s [kubelet-check] Initial timeout of 40s passed. Unfortunately, an error has occurred: error execution phase wait-control-plane: couldn't initialize a Kubernetes timed out waiting for the condition cluster This error is likely caused by: - The kubelet is not running - The kubelet is unhealthy due to a misconfiguration of the node in some way (required cgroups disabled) If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands: - 'systemctl status kubelet' - 'journalctl -xeu kubelet' Additionally, a control plane component may have crashed or exited when started by the container runtime. To troubleshoot, list all containers using your preferred container runtimes CLI, e.g. docker. Here is one example how you may list all Kubernetes containers running in docker: - 'docker ps -a | grep kube | grep -v pause' Once you have found the failing container, you can inspect its logs with: - 'docker logs CONTAINERID' : Process exited with status 1 * Sorry that minikube crashed. If this was unexpected, we would love to hear from you: - https://github.com/kubernetes/minikube/issues/new * Problems detected in "kube-addon-manager": - error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused - error: unable to recognize "STDIN": Get https://localhost:8443/api?timeout=32s: dial tcp 127.0.0.1:8443: connect: connection refused - error: unabWRN: == Error getting default sele to recognize "STDIN": Grvice account, retry in 0.5 secoet https://nd == * Problems detected in "kube-apiserver": - error: invalid authentication config: open /Users/tasdikrahman/workspace/work/jaach/minikube/users.csv: no such file or directory ```

Extra details

Version 6.0.4 r128413 (Qt5.6.3)
``` $ docker version (minikube/default) Client: Docker Engine - Community Version: 19.03.5 API version: 1.40 Go version: go1.12.12 Git commit: 633a0ea Built: Wed Nov 13 07:22:34 2019 OS/Arch: darwin/amd64 Experimental: false Server: Docker Engine - Community Engine: Version: 19.03.5 API version: 1.40 (minimum version 1.12) Go version: go1.12.12 Git commit: 633a0ea Built: Wed Nov 13 07:29:19 2019 OS/Arch: linux/amd64 Experimental: false containerd: Version: v1.2.10 GitCommit: b34a5c8af56e510852c35414db4c1f4fa6172339 runc: Version: 1.0.0-rc8+dev GitCommit: 3e425f80a8c931f88e6d94a8c831b9d5aa481657 docker-init: Version: 0.18.0 GitCommit: fec3683 ```
$ minikube version
minikube version: v1.2.0

Let me know if you need any other details

medyagh commented 4 years ago

@tasdikrahman I noticed your minikube version is very very old, do you mind trying it with a newer minikube and maybe our docker-driver?

priyawadhwa commented 4 years ago

Hey @tasdikrahman are you still seeing this issue? If so, could you please upgrade to the latest version of minikube?

I also noticed that you're passing in /Users/tasdikrahman/workspace/work/jaach/minikube/users.csv as the path to the basic auth file -- this seems to be a path on your host machine (which won't be accessible to the apiserver in the minikube VM).

To make that file accessible, I would:

$ minikube start --extra-config=apiserver.basic-auth-file=/var/lib/minikube/certs/mini/users.csv # This command should fail
$ minikube ssh 
  mkdir -p /var/lib/minikube/certs/mini
  cat > /var/lib/minikube/certs/mini/users.csv
  <contents of /Users/tasdikrahman/workspace/work/jaach/minikube/users.csv>
  exit
$ minikube stop
$  minikube start --extra-config=apiserver.basic-auth-file=/var/lib/minikube/certs/mini/users.csv # This should pass
priyawadhwa commented 4 years ago

Hey @tasdikrahman -- I'm going to go ahead and close this issue as some time has passed without an update. If you're still seeing this error, please reopen at any time by including /reopen in your comment!