Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Unable to Dynamically Allocate Storage #1428

Closed
l3x opened this issue Apr 28, 2017 · 5 comments
Closed

Unable to Dynamically Allocate Storage #1428

l3x opened this issue Apr 28, 2017 · 5 comments
Labels
kind/bug Categorizes issue or PR as related to a bug. lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed.

Comments

@l3x
Copy link

l3x commented Apr 28, 2017

BUG REPORT

Minikube version

Minikube Version: v0.18.0
NAME=Buildroot
VERSION=2016.08
ID=buildroot
VERSION_ID=2016.08
PRETTY_NAME="Buildroot 2016.08"
Driver: "virtualbox"
Boot2DockerURL "file:///Users/lex/.minikube/cache/iso/minikube-v0.18.0.iso"

Environment:

Host System Software Overview:

      System Version: macOS 10.12.4 (16E195)
      Kernel Version: Darwin 16.5.0
      Boot Volume: sadie
      Boot Mode: Normal
      Secure Virtual Memory: Enabled
      System Integrity Protection: Enabled
      Time since boot: 21:37

What happened:

Minikube was unable to dynamically allocate storage for a pod using a PersistentVolume and a PersistentVolumeClaim.

What you expected to happen:

I expected the http-server in the pod to be able to access the index.html file that exists on the hostPath referenced in the volume (task-pv-volume).

After creating the PersistentVolume (task-pv-volume) I expected the subsequent PersistentVolumeClaim (task-pv-claim) to cause the Kubernetes control plane to match that PersistentVolume with that PersistentVolumeClaim based the claim’s requirements and cause the STATUS of the volume to be "Bound" to that claim.

How to reproduce it:

Install minikube:

~ $ minikube delete
~ $ rmrf ~/.minikube
~ $ minikube start --vm-driver=virtualbox
Starting local Kubernetes cluster...
Starting VM...
Downloading Minikube ISO
 89.51 MB / 89.51 MB [==============================================] 100.00% 0s
SSH-ing files into VM...
Setting up certs...
Starting cluster components...
Connecting to cluster...
Setting up kubeconfig...
Kubectl is now configured to use the cluster.

Set minikube docker-env

~ $ eval $(minikube docker-env)
~ $ env|grep DOCKER
DOCKER_CERT_PATH=/Users/lex/.minikube/certs
DOCKER_TLS_VERIFY=1
DOCKER_HOST=tcp://192.168.99.100:2376
DOCKER_API_VERSION=1.23

Creating an index.html file on your Node

~ $ minikube ssh
$ mkdir /tmp/data
$ echo 'Hello from Kubernetes storage' > /tmp/data/index.html
$ df -m
Filesystem     1M-blocks   Used Available Use% Mounted on
devtmpfs             958      0       958   0% /dev
tmpfs               1001      0      1001   0% /dev/shm
tmpfs               1001      9       992   1% /run
tmpfs               1001      0      1001   0% /sys/fs/cgroup
tmpfs               1001      1      1001   1% /tmp
/dev/sda1          18276    601     16710   4% /mnt/sda1
/Users            914896 356231    558666  39% /Users

Creating a PersistentVolume

~ $ cat task-pv-volume.yml
kind: PersistentVolume
apiVersion: v1
metadata:
  name: task-pv-volume
  labels:
    type: local
spec:
  capacity:
    storage: 10M
  accessModes:
    - ReadWriteOnce
  hostPath:
    path: "/tmp/data" 
    
    
~ $ kubectl create -f task-pv-volume.yml    

Creating a PersistentVolumeClaim

~ $ cat task-pv-claim.yml
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: task-pv-claim
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 3M
      
~ $ kubectl create -f task-pv-claim.yml      

Creating a Pod

~ $ cat task-pv-pod.yml
kind: Pod
apiVersion: v1
metadata:
  name: task-pv-pod
spec:

  volumes:
    - name: task-pv-storage
      persistentVolumeClaim:
       claimName: task-pv-claim

  containers:
    - name: task-pv-container
      image: nginx
      ports:
        - containerPort: 80
          name: "http-server"
      volumeMounts:
      - mountPath: "/usr/share/nginx/html"
        name: task-pv-storage
        
~ $ kubectl create -f task-pv-pod.yml

Install curl and run curl localhost:

kubectl exec -it task-pv-pod -- /bin/bash
root@task-pv-pod:/# apt-get update && apt-get -y install curl && curl localhost

Expected to see:

Hello from Kubernetes storage

But this is what the curl command returned:

<html>
<head><title>403 Forbidden</title></head>
<body bgcolor="white">
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx/1.13.0</center>
</body>
</html>

Anything else do we need to know:

The steps above came directly Configuring a Pod to Use a PersistentVolume for Storage documentation at https://kubernetes.io/docs/tasks/configure-pod-container/configure-persistent-volume-storage/

The only difference is that I reduced the storage sizes in task-pv-volume and task-pv-claim to ensure that the failure was not caused by lack of disk space.

~ $ kubectl get pv

NAME                                       CAPACITY   ACCESSMODES   RECLAIMPOLICY   STATUS      CLAIM                   STORAGECLASS   REASON    AGE
pvc-4fd180bb-2c3d-11e7-b41a-080027860de9   3M         RWO           Delete          Bound       default/task-pv-claim   standard                 17m
task-pv-volume                             10M        RWO           Retain          Available                                                    17m
~ $ minikube logs
-- Logs begin at Fri 2017-04-28 18:01:05 UTC, end at Fri 2017-04-28 18:20:25 UTC. --
Apr 28 18:03:16 minikube systemd[1]: Starting Localkube...
Apr 28 18:03:16 minikube localkube[3423]: name = kubeetcd
Apr 28 18:03:16 minikube localkube[3423]: data dir = /var/lib/localkube/etcd
Apr 28 18:03:16 minikube localkube[3423]: member dir = /var/lib/localkube/etcd/member
Apr 28 18:03:16 minikube localkube[3423]: heartbeat = 100ms
Apr 28 18:03:16 minikube localkube[3423]: election = 1000ms
Apr 28 18:03:16 minikube localkube[3423]: snapshot count = 10000
Apr 28 18:03:16 minikube localkube[3423]: advertise client URLs = http://0.0.0.0:2379
Apr 28 18:03:16 minikube localkube[3423]: initial advertise peer URLs = http://0.0.0.0:2380
Apr 28 18:03:16 minikube localkube[3423]: initial cluster = kubeetcd=http://0.0.0.0:2380
Apr 28 18:03:16 minikube localkube[3423]: starting member fcf2ad36debdd5bb in cluster 7f055ae3b0912328
Apr 28 18:03:16 minikube localkube[3423]: fcf2ad36debdd5bb became follower at term 0
Apr 28 18:03:16 minikube localkube[3423]: newRaft fcf2ad36debdd5bb [peers: [], term: 0, commit: 0, applied: 0, lastindex: 0, lastterm: 0]
Apr 28 18:03:16 minikube localkube[3423]: fcf2ad36debdd5bb became follower at term 1
Apr 28 18:03:16 minikube localkube[3423]: starting server... [version: 3.0.17, cluster version: to_be_decided]
Apr 28 18:03:16 minikube localkube[3423]: localkube host ip address: 10.0.2.15
Apr 28 18:03:16 minikube localkube[3423]: added member fcf2ad36debdd5bb [http://0.0.0.0:2380] to cluster 7f055ae3b0912328
Apr 28 18:03:16 minikube localkube[3423]: fatal error: unexpected signal during runtime execution
Apr 28 18:03:16 minikube localkube[3423]: [signal SIGSEGV: segmentation violation code=0x1 addr=0xe5 pc=0x7fdafc6ca070]
Apr 28 18:03:16 minikube localkube[3423]: runtime stack:
Apr 28 18:03:16 minikube localkube[3423]: runtime.throw(0x3edf4e2, 0x2a)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/panic.go:566 +0x95
Apr 28 18:03:16 minikube localkube[3423]: runtime.sigpanic()
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/sigpanic_unix.go:12 +0x2cc
Apr 28 18:03:16 minikube localkube[3423]: goroutine 1 [syscall, locked to thread]:
Apr 28 18:03:16 minikube localkube[3423]: runtime.cgocall(0x31e3000, 0xc4208ce8e0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/cgocall.go:131 +0x110 fp=0xc4208ce890 sp=0xc4208ce850
Apr 28 18:03:16 minikube localkube[3423]: os/user._Cfunc_mygetpwuid_r(0x0, 0xc420271d40, 0x7fd8740008c0, 0x400, 0xc4200205f0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         ??:0 +0x4d fp=0xc4208ce8e0 sp=0xc4208ce890
Apr 28 18:03:16 minikube localkube[3423]: os/user.lookupUnixUid.func1(0x42a153)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup_unix.go:103 +0x1f7 fp=0xc4208ce970 sp=0xc4208ce8e0
Apr 28 18:03:16 minikube localkube[3423]: os/user.retryWithBuffer(0xc420437cd0, 0xc4208cea68, 0xc420437cd0, 0xc4208cea87)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup_unix.go:253 +0x2b fp=0xc4208ce9d8 sp=0xc4208ce970
Apr 28 18:03:16 minikube localkube[3423]: os/user.lookupUnixUid(0x0, 0x0, 0x0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup_unix.go:105 +0x141 fp=0xc4208ceaa0 sp=0xc4208ce9d8
Apr 28 18:03:16 minikube localkube[3423]: os/user.current(0xc4208ceb00, 0xc4208ceb10, 0x472eb5)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup_unix.go:49 +0x2f fp=0xc4208cead0 sp=0xc4208ceaa0
Apr 28 18:03:16 minikube localkube[3423]: os/user.Current(0x0, 0x0, 0xc4208ceb00)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup.go:9 +0x22 fp=0xc4208ceaf8 sp=0xc4208cead0
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/godbus/dbus.lookupHomeDir(0x3e40b99, 0x4)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/godbus/dbus/homedir_dynamic.go:10 +0x22 fp=0xc4208ceb20 sp=0xc4208ceaf8
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/godbus/dbus.getHomeDir(0x0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/godbus/dbus/homedir.go:26 +0x10d fp=0xc4208ceb50 sp=0xc4208ceb20
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/godbus/dbus.(*Conn).Auth(0xc420767c20, 0x0, 0x0, 0x0, 0x40fc7e, 0xc420437c80)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/godbus/dbus/auth.go:57 +0xefb fp=0xc4208cee88 sp=0xc4208ceb50
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/godbus/dbus.SystemBus(0xc420767c20, 0x0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/godbus/dbus/conn.go:119 +0x13e fp=0xc4208ceec8 sp=0xc4208cee88
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/dbus.(*dbusImpl).SystemBus(0xc420437b00, 0xc420022800, 0xa, 0x0, 0xd)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/dbus/dbus.go:87 +0x63 fp=0xc4208cef00 sp=0xc4208ceec8
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/iptables.(*runner).connectToFirewallD(0xc42037de30)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/iptables/iptables.go:173 +0x4c fp=0xc4208cf060 sp=0xc4208cef00
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/iptables.New(0x68b8c00, 0x6b29c00, 0x68b8bc0, 0xc420437b00, 0x1, 0x4, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/iptables/iptables.go:152 +0x1ae fp=0xc4208cf118 sp=0xc4208cf060
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/cmd/kube-proxy/app.NewProxyServerDefault(0xc420628900, 0x3, 0x4, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/cmd/kube-proxy/app/server.go:157 +0x1ab fp=0xc4208cf460 sp=0xc4208cf118
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/pkg/localkube.StartProxyServer(0xc42042ce80, 0x3, 0x4, 0x0, 0x3e55758, 0xd, 0xc420412090, 0x10, 0x10, 0x3e672ef, ...)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/pkg/localkube/proxy.go:49 +0x19f fp=0xc4208cf5f8 sp=0xc4208cf460
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/pkg/localkube.LocalkubeServer.NewProxyServer(0xc42042ce80, 0x3, 0x4, 0x0, 0x3e55758, 0xd, 0xc420412090, 0x10, 0x10, 0x3e672ef, ...)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/pkg/localkube/proxy.go:32 +0x63 fp=0xc4208cf770 sp=0xc4208cf5f8
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/cmd/localkube/cmd.SetupServer(0xc4206c8c60)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/cmd/localkube/cmd/start.go:126 +0x5dc fp=0xc4208cfa70 sp=0xc4208cf770
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/cmd/localkube/cmd.StartLocalkube()
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/cmd/localkube/cmd/start.go:56 +0xbd fp=0xc4208cfca8 sp=0xc4208cfa70
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/cmd/localkube/cmd.glob..func1(0x688de60, 0xc4201db480, 0x0, 0x4)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/cmd/localkube/cmd/root.go:31 +0x14 fp=0xc4208cfcb0 sp=0xc4208cfca8
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/spf13/cobra.(*Command).execute(0x688de60, 0xc42000c0b0, 0x4, 0x4, 0x688de60, 0xc42000c0b0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/spf13/cobra/command.go:603 +0x439 fp=0xc4208cfd68 sp=0xc4208cfcb0
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/spf13/cobra.(*Command).ExecuteC(0x688de60, 0x4, 0x3eee4bb, 0x2e)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/spf13/cobra/command.go:689 +0x367 fp=0xc4208cfeb8 sp=0xc4208cfd68
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/spf13/cobra.(*Command).Execute(0x688de60, 0x0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/spf13/cobra/command.go:648 +0x2b fp=0xc4208cfee8 sp=0xc4208cfeb8
Apr 28 18:03:16 minikube localkube[3423]: main.main()
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/cmd/localkube/main.go:32 +0x5f fp=0xc4208cff38 sp=0xc4208cfee8
Apr 28 18:03:16 minikube localkube[3423]: runtime.main()
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/proc.go:183 +0x1f4 fp=0xc4208cff90 sp=0xc4208cff38
Apr 28 18:03:16 minikube localkube[3423]: runtime.goexit()
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/asm_amd64.s:2086 +0x1 fp=0xc4208cff98 sp=0xc4208cff90
Apr 28 18:03:16 minikube localkube[3423]: goroutine 17 [syscall, locked to thread]:
Apr 28 18:03:16 minikube localkube[3423]: runtime.goexit()
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/asm_amd64.s:2086 +0x1
Apr 28 18:03:16 minikube localkube[3423]: goroutine 18 [chan receive]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/golang/glog.(*loggingT).flushDaemon(0x6b025a0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/golang/glog/glog.go:879 +0x7a
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/golang/glog.init.1
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/golang/glog/glog.go:410 +0x21d
Apr 28 18:03:16 minikube localkube[3423]: goroutine 31 [select]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc.(*watchableStore).syncWatchersLoop(0xc42062a3f0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc/watchable_store.go:280 +0x201
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc.newWatchableStore
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc/watchable_store.go:84 +0x2cf
Apr 28 18:03:16 minikube localkube[3423]: goroutine 30 [select]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/schedule.(*fifo).run(0xc4205bede0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/schedule/schedule.go:146 +0x327
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/schedule.NewFIFOScheduler
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/schedule/schedule.go:71 +0x1e8
Apr 28 18:03:16 minikube localkube[3423]: goroutine 29 [select]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/lease.(*lessor).runLoop(0xc4205bec60)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/lease/lessor.go:386 +0x193
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/lease.newLessor
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/lease/lessor.go:171 +0x1b6
Apr 28 18:03:16 minikube localkube[3423]: goroutine 28 [select]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/raft.(*node).run(0xc4205be120, 0xc4207ac000)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/raft/node.go:307 +0x1025
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/raft.StartNode
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/raft/node.go:204 +0x6bb
Apr 28 18:03:16 minikube localkube[3423]: goroutine 64 [chan receive]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/logutil.(*MergeLogger).outputLoop(0xc4207afb40)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/logutil/merge_logger.go:174 +0x94
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/logutil.NewMergeLogger
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/logutil/merge_logger.go:92 +0xd2
Apr 28 18:03:16 minikube localkube[3423]: goroutine 75 [chan receive]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/logutil.(*MergeLogger).outputLoop(0xc4208181e0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/logutil/merge_logger.go:174 +0x94
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/logutil.NewMergeLogger
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/logutil/merge_logger.go:92 +0xd2
Apr 28 18:03:16 minikube localkube[3423]: goroutine 79 [syscall]:
Apr 28 18:03:16 minikube localkube[3423]: os/signal.signal_recv(0x10347d9)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/sigqueue.go:116 +0x157
Apr 28 18:03:16 minikube localkube[3423]: os/signal.loop()
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/signal/signal_unix.go:22 +0x22
Apr 28 18:03:16 minikube localkube[3423]: created by os/signal.init.1
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/signal/signal_unix.go:28 +0x41
Apr 28 18:03:16 minikube localkube[3423]: goroutine 81 [select]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc/backend.(*backend).run(0xc42030ae40)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc/backend/backend.go:193 +0x1c2
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc/backend.newBackend
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc/backend/backend.go:119 +0x1c4
Apr 28 18:03:16 minikube localkube[3423]: goroutine 82 [select]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/wal.(*filePipeline).run(0xc4201db740)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/wal/file_pipeline.go:89 +0x197
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/wal.newFilePipeline
Apr 28 18:03:16 minikube systemd[1]: localkube.service: Main process exited, code=exited, status=2/INVALIDARGUMENT
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/wal/file_pipeline.go:47 +0x157
Apr 28 18:03:16 minikube localkube[3423]: goroutine 32 [select]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc.(*watchableStore).syncVictimsLoop(0xc42062a3f0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc/watchable_store.go:306 +0x1cf
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc.newWatchableStore
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/mvcc/watchable_store.go:85 +0x2f1
Apr 28 18:03:16 minikube localkube[3423]: goroutine 33 [select]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).run(0xc4204838c0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/server.go:594 +0x6dd
Apr 28 18:03:16 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).start
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/server.go:490 +0x2f8
Apr 28 18:03:16 minikube localkube[3423]: goroutine 98 [select]:
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/raft.(*node).step(0xc4205be120, 0x7fdafcab3008, 0xc42030a540, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4207abf90, ...)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/raft/node.go:427 +0x1f7
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/raft.(*node).Propose(0xc4205be120, 0x7fdafcab3008, 0xc42030a540, 0xc420286090, 0x89, 0x89, 0x36, 0xc420ae5a28)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/raft/node.go:399 +0x119
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*v2apiStore).processRaftRequest(0xc4202f2268, 0x7fdafcab3008, 0xc42030a540, 0xc4200926e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/v2_server.go:59 +0x17a
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*v2apiStore).Put(0xc4202f2268, 0x7fdafcab3008, 0xc42030a540, 0xc4200926e0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/v2_server.go:40 +0xa3
Apr 28 18:03:16 minikube systemd[1]: Failed to start Localkube.
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).Do(0xc4204838c0, 0x7fdafcab3008, 0xc42030a540, 0x0, 0x3e40230, 0x3, 0xc420623320, 0x26, 0xc420136b80, 0x38, ...)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/v2_server.go:114 +0x32f
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).publish(0xc4204838c0, 0x1a13b8600)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/server.go:941 +0x222
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).Start
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/server.go:466 +0x6d
Apr 28 18:03:17 minikube localkube[3423]: goroutine 99 [select]:
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).purgeFile(0xc4204838c0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/server.go:501 +0x2ca
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).Start
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/server.go:467 +0x8f
Apr 28 18:03:17 minikube localkube[3423]: goroutine 100 [select]:
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.monitorFileDescriptor(0xc4205bf0e0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/metrics.go:89 +0x1ba
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).Start
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/server.go:468 +0xb8
Apr 28 18:03:17 minikube localkube[3423]: goroutine 101 [select]:
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).monitorVersions(0xc4204838c0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/server.go:1233 +0x3c9
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*EtcdServer).Start
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/server.go:469 +0xda
Apr 28 18:03:17 minikube localkube[3423]: goroutine 106 [IO wait]:
Apr 28 18:03:17 minikube localkube[3423]: net.runtime_pollWait(0x7fdafcaad040, 0x72, 0x0)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/runtime/netpoll.go:160 +0x59
Apr 28 18:03:17 minikube localkube[3423]: net.(*pollDesc).wait(0xc42037ced0, 0x72, 0xc42001f558, 0xc420016130)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/net/fd_poll_runtime.go:73 +0x38
Apr 28 18:03:16 minikube systemd[1]: localkube.service: Unit entered failed state.
Apr 28 18:03:17 minikube localkube[3423]: net.(*pollDesc).waitRead(0xc42037ced0, 0x68b1880, 0xc420016130)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/net/fd_poll_runtime.go:78 +0x34
Apr 28 18:03:17 minikube localkube[3423]: net.(*netFD).accept(0xc42037ce70, 0x0, 0x68ab980, 0xc42079a9e0)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/net/fd_unix.go:419 +0x238
Apr 28 18:03:17 minikube localkube[3423]: net.(*TCPListener).accept(0xc420020140, 0x4af069, 0xc42001f628, 0x4104a8)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/net/tcpsock_posix.go:132 +0x2e
Apr 28 18:03:17 minikube localkube[3423]: net.(*TCPListener).Accept(0xc420020140, 0xc400000001, 0xc4203de864, 0xc400000001, 0xc4205f10b0)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/net/tcpsock.go:222 +0x49
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/transport.(*keepaliveListener).Accept(0xc420436d20, 0xc4205f1080, 0x37590a0, 0x687d990, 0x3a4dc80)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/transport/keepalive_listener.go:49 +0x37
Apr 28 18:03:17 minikube localkube[3423]: net/http.(*Server).Serve(0xc4203de800, 0x68bffc0, 0xc420436d20, 0x0, 0x0)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/net/http/server.go:2273 +0x1ce
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/pkg/localkube.(*EtcdServer).Start.func1(0x68b0cc0, 0xc420764080, 0x68bffc0, 0xc420436d20)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/pkg/localkube/etcd.go:113 +0xa7
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/pkg/localkube.(*EtcdServer).Start
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/pkg/localkube/etcd.go:114 +0x196
Apr 28 18:03:17 minikube localkube[3423]: goroutine 83 [select]:
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/fileutil.purgeFile.func1(0xc4206223f0, 0x23, 0xc42030a0c0, 0x3e41535, 0x4, 0x5, 0x0, 0x6fc23ac00, 0xc4205bf0e0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/fileutil/purge.go:70 +0x854
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/fileutil.purgeFile
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/fileutil/purge.go:76 +0xc3
Apr 28 18:03:17 minikube localkube[3423]: goroutine 84 [select]:
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/fileutil.purgeFile.func1(0xc4206224e0, 0x22, 0xc42030a120, 0x3e40695, 0x3, 0x5, 0x0, 0x6fc23ac00, 0xc4205bf0e0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/fileutil/purge.go:70 +0x854
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/fileutil.purgeFile
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/fileutil/purge.go:76 +0xc3
Apr 28 18:03:17 minikube localkube[3423]: goroutine 85 [select]:
Apr 28 18:03:16 minikube systemd[1]: localkube.service: Failed with result 'exit-code'.
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*raftNode).start.func1(0xc4204838e8)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/raft.go:151 +0xd52
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver.(*raftNode).start
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/etcdserver/raft.go:254 +0x1da
Apr 28 18:03:17 minikube localkube[3423]: goroutine 86 [select]:
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/schedule.(*fifo).run(0xc42030a420)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/schedule/schedule.go:146 +0x327
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/schedule.NewFIFOScheduler
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/coreos/etcd/pkg/schedule/schedule.go:71 +0x1e8
Apr 28 18:03:17 minikube localkube[3423]: goroutine 107 [runnable]:
Apr 28 18:03:17 minikube localkube[3423]: syscall.ParseNetlinkRouteAttr(0xc420ae0928, 0x1a00, 0x2000, 0xc4202ae000, 0x6, 0x8)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/syscall/netlink_linux.go:147
Apr 28 18:03:17 minikube localkube[3423]: net.interfaceTable(0x0, 0x0, 0x0, 0xc4200160d0, 0xc420ae0a68, 0x0)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/net/interface_linux.go:34 +0x1cf
Apr 28 18:03:17 minikube localkube[3423]: net.InterfaceByName(0xc4203df280, 0x4, 0x1, 0x0, 0x0)
Apr 28 18:03:17 minikube localkube[3423]:         /usr/local/go/src/net/interface.go:143 +0x4d
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net.networkInterface.InterfaceByName(0xc4203df280, 0x4, 0xc420ae0c38, 0x6ad3ca, 0x68973c0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net/interface.go:223 +0x35
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net.(*networkInterface).InterfaceByName(0x6b29c00, 0xc4203df280, 0x4, 0x8, 0x0, 0xc41ffdda53)
Apr 28 18:03:17 minikube localkube[3423]:         <autogenerated>:6 +0x60
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net.getIPFromInterface(0xc4203df280, 0x4, 0x68bb140, 0x6b29c00, 0x1, 0x1, 0x1, 0xf, 0xc4202f22c0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net/interface.go:129 +0x66
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net.chooseHostInterfaceFromRoute(0x68ab880, 0xc4202f22c0, 0x68bb140, 0x6b29c00, 0x6b29c00, 0xc4204120a0, 0x10, 0x10, 0xc420016460)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net/interface.go:249 +0x2c3
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net.ChooseHostInterface(0x0, 0x0, 0x0, 0x0, 0x0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net/interface.go:212 +0x1bb
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net.ChooseBindAddress(0xc4204120a0, 0x10, 0x10, 0x737765697665722f, 0x737470697263732f, 0x7461746f6e6e612f, 0x6f6f625f736e6f69, 0x6a2e706172747374)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/apimachinery/pkg/util/net/interface.go:271 +0x30
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/apiserver/pkg/server/options.(*ServingOptions).DefaultExternalAddress(0xc42062aa20, 0x6b223a22676e6972, 0x6576222c7d227965, 0x7b3a226e6f697372, 0x22676e6972747322, 0x64222c7d2276223a)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/apiserver/pkg/server/options/serving.go:257 +0x40
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/apiserver/pkg/server/options.(*ServerRunOptions).DefaultAdvertiseAddress(0xc4202ce280, 0xc42062aa20, 0xc420764840, 0x756f63222c7d226c, 0x227b3a227972746e)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/apiserver/pkg/server/options/server_run_options.go:81 +0x175
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/cmd/kube-apiserver/app.BuildMasterConfig(0xc42041e000, 0x0, 0x0, 0x0, 0xc42001fea8, 0x4057b4)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/cmd/kube-apiserver/app/server.go:117 +0x93
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/cmd/kube-apiserver/app.Run(0xc42041e000, 0x0, 0x0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/cmd/kube-apiserver/app/server.go:95 +0x2f
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/pkg/localkube.StartAPIServer.func1(0x35b1400, 0x0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/pkg/localkube/apiserver.go:71 +0x2d
Apr 28 18:03:17 minikube localkube[3423]: k8s.io/minikube/pkg/util.Until(0xc420437790, 0x68ab8c0, 0xc420020010, 0x3e4a4f1, 0x9, 0xbebc200, 0xc4205bf3e0)
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/pkg/util/utils.go:51 +0x87
Apr 28 18:03:17 minikube localkube[3423]: created by k8s.io/minikube/pkg/localkube.(*SimpleServer).Start
Apr 28 18:03:17 minikube localkube[3423]:         /go/src/k8s.io/minikube/pkg/localkube/server.go:60 +0x7e
Apr 28 18:03:19 minikube systemd[1]: localkube.service: Service hold-off time over, scheduling restart.
Apr 28 18:03:19 minikube systemd[1]: Stopped Localkube.
Apr 28 18:03:19 minikube systemd[1]: Starting Localkube...
Apr 28 18:03:20 minikube localkube[3512]: name = kubeetcd
Apr 28 18:03:20 minikube localkube[3512]: data dir = /var/lib/localkube/etcd
Apr 28 18:03:20 minikube localkube[3512]: member dir = /var/lib/localkube/etcd/member
Apr 28 18:03:20 minikube localkube[3512]: heartbeat = 100ms
Apr 28 18:03:20 minikube localkube[3512]: election = 1000ms
Apr 28 18:03:20 minikube localkube[3512]: snapshot count = 10000
Apr 28 18:03:20 minikube localkube[3512]: advertise client URLs = http://0.0.0.0:2379
Apr 28 18:03:20 minikube localkube[3512]: restarting member fcf2ad36debdd5bb in cluster 7f055ae3b0912328 at commit index 1
Apr 28 18:03:20 minikube localkube[3512]: fcf2ad36debdd5bb became follower at term 1
Apr 28 18:03:20 minikube localkube[3512]: newRaft fcf2ad36debdd5bb [peers: [], term: 1, commit: 1, applied: 0, lastindex: 1, lastterm: 1]
Apr 28 18:03:20 minikube localkube[3512]: starting server... [version: 3.0.17, cluster version: to_be_decided]
Apr 28 18:03:20 minikube localkube[3512]: localkube host ip address: 10.0.2.15
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.142294    3512 authentication.go:362] AnonymousAuth is not allowed with the AllowAll authorizer.  Resetting AnonymousAuth to false. You should use a different authorizer
Apr 28 18:03:20 minikube localkube[3512]: added member fcf2ad36debdd5bb [http://0.0.0.0:2380] to cluster 7f055ae3b0912328
Apr 28 18:03:20 minikube localkube[3512]: I0428 18:03:20.153860    3512 server.go:225] Using iptables Proxier.
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.154464    3512 server.go:469] Failed to retrieve node info: Get http://127.0.0.1:8080/api/v1/nodes/minikube: dial tcp 127.0.0.1:8080: getsockopt: connection refused
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.154662    3512 proxier.go:304] invalid nodeIP, initializing kube-proxy with 127.0.0.1 as nodeIP
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.154782    3512 proxier.go:309] clusterCIDR not specified, unable to distinguish between internal and external traffic
Apr 28 18:03:20 minikube localkube[3512]: I0428 18:03:20.154909    3512 server.go:249] Tearing down userspace rules.
Apr 28 18:03:20 minikube localkube[3512]: E0428 18:03:20.177970    3512 reflector.go:201] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/proxy/config/api.go:49: Failed to list *api.Endpoints: Get http://127.0.0.1:8080/api/v1/endpoints?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
Apr 28 18:03:20 minikube localkube[3512]: E0428 18:03:20.178254    3512 reflector.go:201] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/proxy/config/api.go:46: Failed to list *api.Service: Get http://127.0.0.1:8080/api/v1/services?resourceVersion=0: dial tcp 127.0.0.1:8080: getsockopt: connection refused
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.404063    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.406415    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.406527    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.406719    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.406926    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.407172    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.407585    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.408156    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.408740    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.408914    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.409250    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.410017    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.413700    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.414423    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.415645    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.415786    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.442826    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.443125    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.443576    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.443788    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.444220    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.444613    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.444998    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.445201    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.445362    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.445772    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.446515    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.449687    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.451412    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.452440    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.453498    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.454211    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.454831    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.456470    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.456904    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.457496    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.457718    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.457995    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.458203    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.458541    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.459095    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.459559    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.459839    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: W0428 18:03:20.460086    3512 storage_codec.go:52] storage type "etcd2" does not support media type "application/vnd.kubernetes.protobuf", using "application/json"
Apr 28 18:03:20 minikube localkube[3512]: E0428 18:03:20.505822    3512 reflector.go:201] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: Failed to list *api.ResourceQuota: Get https://localhost:8443/api/v1/resourcequotas?resourceVersion=0: dial tcp 127.0.0.1:8443: getsockopt: connection refused
Apr 28 18:03:20 minikube localkube[3512]: E0428 18:03:20.505931    3512 reflector.go:201] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: Failed to list *storage.StorageClass: Get https://localhost:8443/apis/storage.k8s.io/v1beta1/storageclasses?resourceVersion=0: dial tcp 127.0.0.1:8443: getsockopt: connection refused
Apr 28 18:03:20 minikube localkube[3512]: E0428 18:03:20.505991    3512 reflector.go:201] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: Failed to list *api.ServiceAccount: Get https://localhost:8443/api/v1/serviceaccounts?resourceVersion=0: dial tcp 127.0.0.1:8443: getsockopt: connection refused
Apr 28 18:03:20 minikube localkube[3512]: E0428 18:03:20.506276    3512 reflector.go:201] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: Failed to list *api.Secret: Get https://localhost:8443/api/v1/secrets?resourceVersion=0: dial tcp 127.0.0.1:8443: getsockopt: connection refused
Apr 28 18:03:20 minikube localkube[3512]: E0428 18:03:20.506681    3512 reflector.go:201] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: Failed to list *api.Namespace: Get https://localhost:8443/api/v1/namespaces?resourceVersion=0: dial tcp 127.0.0.1:8443: getsockopt: connection refused
Apr 28 18:03:20 minikube localkube[3512]: E0428 18:03:20.507375    3512 reflector.go:201] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: Failed to list *api.LimitRange: Get https://localhost:8443/api/v1/limitranges?resourceVersion=0: dial tcp 127.0.0.1:8443: getsockopt: connection refused
Apr 28 18:03:20 minikube localkube[3512]: [restful] 2017/04/28 18:03:20 log.go:30: [restful/swagger] listing is available at https://10.0.2.15:8443/swaggerapi/
Apr 28 18:03:20 minikube localkube[3512]: [restful] 2017/04/28 18:03:20 log.go:30: [restful/swagger] https://10.0.2.15:8443/swaggerui/ is mapped to folder /swagger-ui/
Apr 28 18:03:20 minikube localkube[3512]: I0428 18:03:20.651276    3512 serve.go:79] Serving securely on 0.0.0.0:8443
Apr 28 18:03:20 minikube localkube[3512]: I0428 18:03:20.651666    3512 serve.go:94] Serving insecurely on 127.0.0.1:8080
Apr 28 18:03:20 minikube systemd[1]: Started Localkube.
Apr 28 18:03:20 minikube localkube[3512]: fcf2ad36debdd5bb is starting a new election at term 1
Apr 28 18:03:20 minikube localkube[3512]: fcf2ad36debdd5bb became candidate at term 2
Apr 28 18:03:20 minikube localkube[3512]: fcf2ad36debdd5bb received vote from fcf2ad36debdd5bb at term 2
Apr 28 18:03:20 minikube localkube[3512]: fcf2ad36debdd5bb became leader at term 2
Apr 28 18:03:20 minikube localkube[3512]: raft.node: fcf2ad36debdd5bb elected leader fcf2ad36debdd5bb at term 2
Apr 28 18:03:20 minikube localkube[3512]: published {Name:kubeetcd ClientURLs:[http://0.0.0.0:2379]} to cluster 7f055ae3b0912328
Apr 28 18:03:20 minikube localkube[3512]: setting up the initial cluster version to 3.0
Apr 28 18:03:20 minikube localkube[3512]: set the initial cluster version to 3.0
Apr 28 18:03:20 minikube localkube[3512]: enabled capabilities for version 3.0
Apr 28 18:03:21 minikube localkube[3512]: Starting controller-manager...
Apr 28 18:03:21 minikube localkube[3512]: Starting scheduler...
Apr 28 18:03:21 minikube localkube[3512]: Starting kubelet...
Apr 28 18:03:21 minikube localkube[3512]: Starting proxy...
Apr 28 18:03:21 minikube localkube[3512]: Starting storage-provisioner...
Apr 28 18:03:21 minikube localkube[3512]: E0428 18:03:21.278437    3512 controllermanager.go:120] unable to register configz: register config "componentconfig" twice
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.278992    3512 leaderelection.go:179] attempting to acquire leader lease...
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.279550    3512 feature_gate.go:144] feature gates: map[]
Apr 28 18:03:21 minikube localkube[3512]: E0428 18:03:21.279668    3512 server.go:312] unable to register configz: register config "componentconfig" twice
Apr 28 18:03:21 minikube localkube[3512]: W0428 18:03:21.279723    3512 server.go:715] Could not load kubeconfig file /var/lib/kubelet/kubeconfig: stat /var/lib/kubelet/kubeconfig: no such file or directory. Using default client config instead.
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.279835    3512 conntrack.go:81] Set sysctl 'net/netfilter/nf_conntrack_max' to 131072
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.280141    3512 conntrack.go:66] Setting conntrack hashsize to 32768
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.284450    3512 conntrack.go:81] Set sysctl 'net/netfilter/nf_conntrack_tcp_timeout_established' to 86400
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.284975    3512 conntrack.go:81] Set sysctl 'net/netfilter/nf_conntrack_tcp_timeout_close_wait' to 3600
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.297762    3512 leaderelection.go:179] attempting to acquire leader lease...
Apr 28 18:03:21 minikube localkube[3512]: E0428 18:03:21.304425    3512 server.go:157] unable to register configz: register config "componentconfig" twice
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.307412    3512 controller.go:249] Starting provisioner controller f710d191-2c3c-11e7-b41a-080027860de9!
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.523630    3512 leaderelection.go:189] successfully acquired lease kube-system/kube-scheduler
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.523858    3512 event.go:217] Event(v1.ObjectReference{Kind:"Endpoints", Namespace:"kube-system", Name:"kube-scheduler", UID:"f73558b0-2c3c-11e7-b41a-080027860de9", APIVersion:"v1", ResourceVersion:"8", FieldPath:""}): type: 'Normal' reason: 'LeaderElection' minikube became leader
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.560350    3512 trace.go:61] Trace "Create /api/v1/namespaces/kube-system/configmaps" (started 2017-04-28 18:03:20.751704153 +0000 UTC):
Apr 28 18:03:21 minikube localkube[3512]: [52.529µs] [52.529µs] About to convert to expected version
Apr 28 18:03:21 minikube localkube[3512]: [157.603µs] [105.074µs] Conversion done
Apr 28 18:03:21 minikube localkube[3512]: [805.112786ms] [804.955183ms] About to store object in database
Apr 28 18:03:21 minikube localkube[3512]: [808.553772ms] [3.440986ms] Object stored in database
Apr 28 18:03:21 minikube localkube[3512]: [808.562047ms] [8.275µs] Self-link added
Apr 28 18:03:21 minikube localkube[3512]: "Create /api/v1/namespaces/kube-system/configmaps" [808.605675ms] [43.628µs] END
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.564140    3512 trace.go:61] Trace "Create /api/v1/namespaces/default/services" (started 2017-04-28 18:03:20.754960213 +0000 UTC):
Apr 28 18:03:21 minikube localkube[3512]: [25.394µs] [25.394µs] About to convert to expected version
Apr 28 18:03:21 minikube localkube[3512]: [97.042µs] [71.648µs] Conversion done
Apr 28 18:03:21 minikube localkube[3512]: [806.609636ms] [806.512594ms] About to store object in database
Apr 28 18:03:21 minikube localkube[3512]: [809.121913ms] [2.512277ms] Object stored in database
Apr 28 18:03:21 minikube localkube[3512]: [809.124081ms] [2.168µs] Self-link added
Apr 28 18:03:21 minikube localkube[3512]: "Create /api/v1/namespaces/default/services" [809.155864ms] [31.783µs] END
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.641447    3512 leaderelection.go:189] successfully acquired lease kube-system/kube-controller-manager
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.643935    3512 event.go:217] Event(v1.ObjectReference{Kind:"Endpoints", Namespace:"kube-system", Name:"kube-controller-manager", UID:"f74438a6-2c3c-11e7-b41a-080027860de9", APIVersion:"v1", ResourceVersion:"14", FieldPath:""}): type: 'Normal' reason: 'LeaderElection' minikube became leader
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.699985    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/cluster-admin
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.703937    3512 controllermanager.go:437] Started "daemonset"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.704354    3512 controllermanager.go:437] Started "deployment"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.705100    3512 controllermanager.go:437] Started "horizontalpodautoscaling"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.705449    3512 controllermanager.go:437] Started "ttl"
Apr 28 18:03:21 minikube localkube[3512]: W0428 18:03:21.705482    3512 controllermanager.go:421] "bootstrapsigner" is disabled
Apr 28 18:03:21 minikube localkube[3512]: W0428 18:03:21.705494    3512 controllermanager.go:421] "tokencleaner" is disabled
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.706686    3512 daemoncontroller.go:199] Starting Daemon Sets controller manager
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.706781    3512 deployment_controller.go:147] Starting deployment controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.706807    3512 horizontal.go:139] Starting HPA Controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.706826    3512 ttlcontroller.go:117] Starting TTL controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.713133    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:discovery
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.717120    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:basic-user
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.737497    3512 controllermanager.go:437] Started "garbagecollector"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.738022    3512 controllermanager.go:437] Started "replicaset"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.738335    3512 controllermanager.go:437] Started "statefuleset"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.738756    3512 controllermanager.go:437] Started "endpoint"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.739052    3512 controllermanager.go:437] Started "podgc"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.739593    3512 controllermanager.go:437] Started "resourcequota"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.741311    3512 garbagecollector.go:111] Garbage Collector: Initializing
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.741442    3512 replica_set.go:155] Starting ReplicaSet controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.741467    3512 stateful_set.go:144] Starting statefulset controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.742065    3512 resource_quota_controller.go:240] Starting resource quota controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.763711    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/admin
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.817457    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/edit
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.837795    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/view
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.845791    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:heapster
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.849070    3512 garbagecollector.go:116] Garbage Collector: All resource monitors have synced. Proceeding to collect garbage
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.870888    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:node
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.877650    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:node-problem-detector
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.882063    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:node-proxier
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.886115    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:node-bootstrapper
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.889482    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:auth-delegator
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.893328    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:kube-aggregator
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.897149    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:kube-controller-manager
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.901293    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:kube-scheduler
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.904713    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:kube-dns
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.908332    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:persistent-volume-provisioner
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.911852    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:attachdetach-controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.915797    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:cronjob-controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.917833    3512 docker.go:364] Connecting to docker on unix:///var/run/docker.sock
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.917871    3512 docker.go:384] Start docker client with request timeout=2m0s
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.926214    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:daemon-set-controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.931879    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:deployment-controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.937222    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:disruption-controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.937721    3512 manager.go:143] cAdvisor running in container: "/system.slice/localkube.service"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.941452    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:endpoint-controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.947576    3512 fs.go:117] Filesystem partitions: map[/dev/sda1:{mountpoint:/mnt/sda1 major:8 minor:1 fsType:ext4 blockSize:0}]
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.948417    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:generic-garbage-collector
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.949245    3512 manager.go:198] Machine: {NumCores:2 CpuFrequency:2294770 MemoryCapacity:2097647616 MachineID:4636eaec553440729fdb455dbb31af00 SystemUUID:F54E0546-0EB8-4A5F-82FD-350D1BDE55DE BootID:5e43b7e2-f2fb-4052-8529-7dfe64bd8b9c Filesystems:[{Device:/dev/sda1 Capacity:19163156480 Type:vfs Inodes:2434064 HasInodes:true} {Device:rootfs Capacity:0 Type:vfs Inodes:0 HasInodes:true}] DiskMap:map[8:0:{Name:sda Major:8 Minor:0 Size:20971520000 Scheduler:cfq}] NetworkDevices:[{Name:eth0 MacAddress:08:00:27:86:0d:e9 Speed:1000 Mtu:1500} {Name:eth1 MacAddress:08:00:27:d2:a8:15 Speed:1000 Mtu:1500} {Name:sit0 MacAddress:00:00:00:00 Speed:0 Mtu:1480}] Topology:[{Id:0 Memory:2097647616 Cores:[{Id:0 Threads:[0] Caches:[{Size:32768 Type:Data Level:1} {Size:32768 Type:Instruction Level:1} {Size:262144 Type:Unified Level:2} {Size:6291456 Type:Unified Level:3}]} {Id:1 Threads:[1] Caches:[{Size:32768 Type:Data Level:1} {Size:32768 Type:Instruction Level:1} {Size:262144 Type:Unified Level:2} {Size:6291456 Type:Unified Level:3}]}] Caches:[]}] CloudProvider:Unknown InstanceType:Unknown InstanceID:None}
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.951636    3512 manager.go:204] Version: {KernelVersion:4.7.2 ContainerOsVersion:Buildroot 2016.08 DockerVersion:1.11.1 CadvisorVersion: CadvisorRevision:}
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.952525    3512 server.go:509] --cgroups-per-qos enabled, but --cgroup-root was not specified.  defaulting to /
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.952613    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:horizontal-pod-autoscaler
Apr 28 18:03:21 minikube localkube[3512]: W0428 18:03:21.956605    3512 container_manager_linux.go:218] Running with swap on is not supported, please disable swap! This will be a fatal error by default starting in K8s v1.6! In the meantime, you can opt-in to making this a fatal error by enabling --experimental-fail-swap-on.
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.956920    3512 container_manager_linux.go:245] container manager verified user specified cgroup-root exists: /
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.957128    3512 container_manager_linux.go:250] Creating Container Manager object based on Node Config: {RuntimeCgroupsName: SystemCgroupsName: KubeletCgroupsName: ContainerRuntime:docker CgroupsPerQOS:true CgroupRoot:/ CgroupDriver:cgroupfs ProtectKernelDefaults:false EnableCRI:true NodeAllocatableConfig:{KubeReservedCgroupName: SystemReservedCgroupName: EnforceNodeAllocatable:map[pods:{}] KubeReserved:map[] SystemReserved:map[] HardEvictionThresholds:[{Signal:memory.available Operator:LessThan Value:{Quantity:100Mi Percentage:0} GracePeriod:0s MinReclaim:<nil>}]} ExperimentalQOSReserved:map[]}
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.958212    3512 kubelet.go:255] Adding manifest file: /etc/kubernetes/manifests
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.958374    3512 kubelet.go:265] Watching apiserver
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.960265    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:job-controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.965542    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:namespace-controller
Apr 28 18:03:21 minikube localkube[3512]: W0428 18:03:21.967994    3512 kubelet_network.go:70] Hairpin mode set to "promiscuous-bridge" but kubenet is not enabled, falling back to "hairpin-veth"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.968036    3512 kubelet.go:494] Hairpin mode set to "hairpin-veth"
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.983449    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:node-controller
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.988172    3512 docker_service.go:187] Docker cri networking managed by kubernetes.io/no-op
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.990153    3512 docker_service.go:204] Setting cgroupDriver to cgroupfs
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.991447    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:persistent-volume-binder
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.996183    3512 remote_runtime.go:41] Connecting to runtime service /var/run/dockershim.sock
Apr 28 18:03:21 minikube localkube[3512]: I0428 18:03:21.997063    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:pod-garbage-collector
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.000816    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:replicaset-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.001319    3512 kuberuntime_manager.go:171] Container runtime docker initialized, version: 1.11.1, apiVersion: 1.23.0
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.001454    3512 kuberuntime_manager.go:902] updating runtime config through cri with podcidr 10.180.1.0/24
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.001710    3512 docker_service.go:277] docker cri received runtime config &RuntimeConfig{NetworkConfig:&NetworkConfig{PodCidr:10.180.1.0/24,},}
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.002071    3512 kubelet_network.go:326] Setting Pod CIDR:  -> 10.180.1.0/24
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.003264    3512 server.go:869] Started kubelet v1.6.0
Apr 28 18:03:22 minikube localkube[3512]: E0428 18:03:22.003918    3512 kubelet.go:1165] Image garbage collection failed: unable to find data for container /
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.004850    3512 kubelet_node_status.go:230] Setting node annotation to enable volume controller attach/detach
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.005636    3512 server.go:127] Starting to listen on 0.0.0.0:10250
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.006627    3512 server.go:294] Adding debug handlers to kubelet server.
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.011359    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:replication-controller
Apr 28 18:03:22 minikube localkube[3512]: E0428 18:03:22.011946    3512 kubelet.go:1661] Failed to check if disk space is available for the runtime: failed to get fs info for "runtime": unable to find data for container /
Apr 28 18:03:22 minikube localkube[3512]: E0428 18:03:22.012002    3512 kubelet.go:1669] Failed to check if disk space is available on the root partition: failed to get fs info for "root": unable to find data for container /
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.021068    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:resourcequota-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.027985    3512 fs_resource_analyzer.go:66] Starting FS ResourceAnalyzer
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.028068    3512 status_manager.go:140] Starting to sync pod status with apiserver
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.028100    3512 kubelet.go:1741] Starting kubelet main sync loop.
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.028160    3512 kubelet.go:1752] skipping pod synchronization - [container runtime is down PLEG is not healthy: pleg was last seen active 2562047h47m16.854775807s ago; threshold is 3m0s]
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.028455    3512 volume_manager.go:248] Starting Kubelet Volume Manager
Apr 28 18:03:22 minikube localkube[3512]: E0428 18:03:22.027691    3512 event.go:259] Could not construct reference to: '&v1.Node{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"minikube", GenerateName:"", Namespace:"", SelfLink:"", UID:"", ResourceVersion:"", Generation:0, CreationTimestamp:v1.Time{Time:time.Time{sec:0, nsec:0, loc:(*time.Location)(nil)}}, DeletionTimestamp:(*v1.Time)(nil), DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"beta.kubernetes.io/os":"linux", "beta.kubernetes.io/arch":"amd64", "kubernetes.io/hostname":"minikube"}, Annotations:map[string]string{"volumes.kubernetes.io/controller-managed-attach-detach":"true"}, OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ClusterName:""}, Spec:v1.NodeSpec{PodCIDR:"", ExternalID:"minikube", ProviderID:"", Unschedulable:false, Taints:[]v1.Taint(nil)}, Status:v1.NodeStatus{Capacity:v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:2000, scale:-3}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:2097647616, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"", Format:"BinarySI"}, "pods":resource.Quantity{i:resource.int64Amount{value:110, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"", Format:"DecimalSI"}}, Allocatable:v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:2000, scale:-3}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"", Format:"DecimalSI"}, "memory":resource.Quantity{i:resource.int64Amount{value:1992790016, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"", Format:"BinarySI"}, "pods":resource.Quantity{i:resource.int64Amount{value:110, scale:0}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"", Format:"DecimalSI"}}, Phase:"", Conditions:[]v1.NodeCondition{v1.NodeCondition{Type:"OutOfDisk", Status:"False", LastHeartbeatTime:v1.Time{Time:time.Time{sec:63628999402, nsec:11932951, loc:(*time.Location)(0x6b01080)}}, LastTransitionTime:v1.Time{Time:time.Time{sec:63628999
Apr 28 18:03:22 minikube localkube[3512]: 402, nsec:11932951, loc:(*time.Location)(0x6b01080)}}, Reason:"KubeletHasSufficientDisk", Message:"kubelet has sufficient disk space available"}, v1.NodeCondition{Type:"MemoryPressure", Status:"False", LastHeartbeatTime:v1.Time{Time:time.Time{sec:63628999402, nsec:12016708, loc:(*time.Location)(0x6b01080)}}, LastTransitionTime:v1.Time{Time:time.Time{sec:63628999402, nsec:12016708, loc:(*time.Location)(0x6b01080)}}, Reason:"KubeletHasSufficientMemory", Message:"kubelet has sufficient memory available"}, v1.NodeCondition{Type:"DiskPressure", Status:"False", LastHeartbeatTime:v1.Time{Time:time.Time{sec:63628999402, nsec:12022498, loc:(*time.Location)(0x6b01080)}}, LastTransitionTime:v1.Time{Time:time.Time{sec:63628999402, nsec:12022498, loc:(*time.Location)(0x6b01080)}}, Reason:"KubeletHasNoDiskPressure", Message:"kubelet has no disk pressure"}, v1.NodeCondition{Type:"Ready", Status:"False", LastHeartbeatTime:v1.Time{Time:time.Time{sec:63628999402, nsec:12027588, loc:(*time.Location)(0x6b01080)}}, LastTransitionTime:v1.Time{Time:time.Time{sec:63628999402, nsec:12027588, loc:(*time.Location)(0x6b01080)}}, Reason:"KubeletNotReady", Message:"container runtime is down,PLEG is not healthy: pleg was last seen active 2562047h47m16.854775807s ago; threshold is 3m0s,network state unknown"}}, Addresses:[]v1.NodeAddress{v1.NodeAddress{Type:"LegacyHostIP", Address:"192.168.99.100"}, v1.NodeAddress{Type:"InternalIP", Address:"192.168.99.100"}, v1.NodeAddress{Type:"Hostname", Address:"minikube"}}, DaemonEndpoints:v1.NodeDaemonEndpoints{KubeletEndpoint:v1.DaemonEndpoint{Port:10250}}, NodeInfo:v1.NodeSystemInfo{MachineID:"4636eaec553440729fdb455dbb31af00", SystemUUID:"F54E0546-0EB8-4A5F-82FD-350D1BDE55DE", BootID:"5e43b7e2-f2fb-4052-8529-7dfe64bd8b9c", KernelVersion:"4.7.2", OSImage:"Buildroot 2016.08", ContainerRuntimeVersion:"docker://1.11.1", KubeletVersion:"v1.6.0", KubeProxyVersion:"v1.6.0", OperatingSystem:"linux", Architecture:"amd64"}, Images:[]v1.ContainerImage(nil), VolumesInUse:[]v1.UniqueVolumeName(nil), VolumesAttached
Apr 28 18:03:22 minikube localkube[3512]: :[]v1.AttachedVolume(nil)}}' due to: 'selfLink was empty, can't make reference'. Will not report event: 'Normal' 'NodeAllocatableEnforced' 'Updated Node Allocatable limit across pods'
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.041546    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:route-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.042235    3512 factory.go:309] Registering Docker factory
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.045269    3512 factory.go:89] Registering Rkt factory
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.045461    3512 factory.go:54] Registering systemd factory
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.045881    3512 factory.go:86] Registering Raw factory
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.046340    3512 manager.go:1106] Started watching for new ooms in manager
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.058735    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:service-account-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.058783    3512 oomparser.go:185] oomparser using systemd
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.060845    3512 manager.go:288] Starting recovery of all containers
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.068424    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:service-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.073528    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:statefulset-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.085161    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:ttl-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.099350    3512 storage_rbac.go:166] created clusterrole.rbac.authorization.k8s.io/system:controller:certificate-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.122078    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/cluster-admin
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.148533    3512 manager.go:293] Recovery completed
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.155539    3512 rkt.go:56] starting detectRktContainers thread
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.155878    3512 kubelet_node_status.go:230] Setting node annotation to enable volume controller attach/detach
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.177782    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:discovery
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.178474    3512 kubelet_node_status.go:77] Attempting to register node minikube
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.189955    3512 kubelet_node_status.go:80] Successfully registered node minikube
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.195763    3512 kuberuntime_manager.go:902] updating runtime config through cri with podcidr
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.197748    3512 docker_service.go:277] docker cri received runtime config &RuntimeConfig{NetworkConfig:&NetworkConfig{PodCidr:,},}
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.198915    3512 kubelet_network.go:326] Setting Pod CIDR: 10.180.1.0/24 ->
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.200037    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:basic-user
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.213803    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:node
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.227372    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:node-proxier
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.234042    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:kube-controller-manager
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.239023    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:kube-dns
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.249038    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:kube-scheduler
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.257937    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:attachdetach-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.259328    3512 controllermanager.go:437] Started "namespace"
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.263056    3512 namespace_controller.go:189] Starting the NamespaceController
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.266359    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:cronjob-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.271840    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:daemon-set-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.278940    3512 controllermanager.go:437] Started "job"
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.279739    3512 controllermanager.go:437] Started "disruption"
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.281104    3512 controllermanager.go:437] Started "replicationcontroller"
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.281755    3512 disruption.go:269] Starting disruption controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.282055    3512 replication_controller.go:150] Starting RC Manager
Apr 28 18:03:22 minikube localkube[3512]: E0428 18:03:22.283382    3512 util.go:45] Metric for serviceaccount_controller already registered
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.283558    3512 controllermanager.go:437] Started "serviceaccount"
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.283980    3512 controllermanager.go:437] Started "cronjob"
Apr 28 18:03:22 minikube localkube[3512]: E0428 18:03:22.284338    3512 certificates.go:38] Failed to start certificate controller: open /etc/kubernetes/ca/ca.pem: no such file or directory
Apr 28 18:03:22 minikube localkube[3512]: W0428 18:03:22.284499    3512 controllermanager.go:434] Skipping "certificatesigningrequests"
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.284626    3512 plugins.go:101] No cloud provider specified.
Apr 28 18:03:22 minikube localkube[3512]: W0428 18:03:22.284738    3512 controllermanager.go:449] Unsuccessful parsing of cluster CIDR : invalid CIDR address:
Apr 28 18:03:22 minikube localkube[3512]: W0428 18:03:22.284911    3512 controllermanager.go:453] Unsuccessful parsing of service CIDR : invalid CIDR address:
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.285192    3512 nodecontroller.go:219] Sending events to api server.
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.285434    3512 taint_controller.go:157] Sending events to api server.
Apr 28 18:03:22 minikube localkube[3512]: E0428 18:03:22.285891    3512 controllermanager.go:494] Failed to start service controller: WARNING: no cloud provider provided, services of type LoadBalancer will fail.
Apr 28 18:03:22 minikube localkube[3512]: W0428 18:03:22.286015    3512 controllermanager.go:506] Unsuccessful parsing of cluster CIDR : invalid CIDR address:
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.286126    3512 controllermanager.go:519] Will not configure cloud provider routes for allocate-node-cidrs: false, configure-cloud-routes: true.
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.287498    3512 serviceaccounts_controller.go:122] Starting ServiceAccount controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.287771    3512 cronjob_controller.go:95] Starting CronJob Manager
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.288028    3512 attach_detach_controller.go:223] Starting Attach Detach Controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.289612    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:deployment-controller
Apr 28 18:03:22 minikube localkube[3512]: E0428 18:03:22.296316    3512 actual_state_of_world.go:461] Failed to set statusUpdateNeeded to needed true because nodeName="minikube"  does not exist
Apr 28 18:03:22 minikube localkube[3512]: E0428 18:03:22.296349    3512 actual_state_of_world.go:475] Failed to update statusUpdateNeeded field in actual state of world: Failed to set statusUpdateNeeded to needed true because nodeName="minikube"  does not exist
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.304902    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:disruption-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.308758    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:endpoint-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.311864    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:generic-garbage-collector
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.315795    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:horizontal-pod-autoscaler
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.319309    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:job-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.322537    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:namespace-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.325634    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:node-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.328827    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:persistent-volume-binder
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.332073    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:pod-garbage-collector
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.335906    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:replicaset-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.338909    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:replication-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.342511    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:resourcequota-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.346132    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:route-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.349510    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:service-account-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.353162    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:service-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.382016    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:statefulset-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.382393    3512 disruption.go:277] Sending events to api server.
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.388546    3512 nodecontroller.go:633] Initializing eviction metric for zone:
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.388798    3512 event.go:217] Event(v1.ObjectReference{Kind:"Node", Namespace:"", Name:"minikube", UID:"f79a3fb2-2c3c-11e7-b41a-080027860de9", APIVersion:"", ResourceVersion:"", FieldPath:""}): type: 'Normal' reason: 'RegisteredNode' Node minikube event: Registered Node minikube in NodeController
Apr 28 18:03:22 minikube localkube[3512]: W0428 18:03:22.389025    3512 nodecontroller.go:956] Missing timestamp for Node minikube. Assuming now as a timestamp.
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.389169    3512 nodecontroller.go:872] NodeController detected that zone  is now in state Normal.
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.388546    3512 taint_controller.go:180] Starting NoExecuteTaintManager
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.422774    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:ttl-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.463786    3512 storage_rbac.go:194] created clusterrolebinding.rbac.authorization.k8s.io/system:controller:certificate-controller
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.502478    3512 storage_rbac.go:225] created role.rbac.authorization.k8s.io/system:controller:bootstrap-signer in kube-public
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.543877    3512 storage_rbac.go:225] created role.rbac.authorization.k8s.io/extension-apiserver-authentication-reader in kube-system
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.582807    3512 storage_rbac.go:225] created role.rbac.authorization.k8s.io/system:controller:bootstrap-signer in kube-system
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.622434    3512 storage_rbac.go:225] created role.rbac.authorization.k8s.io/system:controller:token-cleaner in kube-system
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.663634    3512 storage_rbac.go:255] created rolebinding.rbac.authorization.k8s.io/system:controller:bootstrap-signer in kube-system
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.702963    3512 storage_rbac.go:255] created rolebinding.rbac.authorization.k8s.io/system:controller:token-cleaner in kube-system
Apr 28 18:03:22 minikube localkube[3512]: I0428 18:03:22.742592    3512 storage_rbac.go:255] created rolebinding.rbac.authorization.k8s.io/system:controller:bootstrap-signer in kube-public
Apr 28 18:03:27 minikube localkube[3512]: I0428 18:03:27.090774    3512 reconciler.go:231] VerifyControllerAttachedVolume operation started for volume "kubernetes.io/host-path/4fb35b6f38517771d5bfb1cffb784d97-addons" (spec.Name: "addons") pod "4fb35b6f38517771d5bfb1cffb784d97" (UID: "4fb35b6f38517771d5bfb1cffb784d97")
Apr 28 18:03:27 minikube localkube[3512]: I0428 18:03:27.192175    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/host-path/4fb35b6f38517771d5bfb1cffb784d97-addons" (spec.Name: "addons") pod "4fb35b6f38517771d5bfb1cffb784d97" (UID: "4fb35b6f38517771d5bfb1cffb784d97").
Apr 28 18:03:27 minikube localkube[3512]: I0428 18:03:27.341414    3512 kuberuntime_manager.go:458] Container {Name:kube-addon-manager Image:gcr.io/google-containers/kube-addon-manager:v6.4-alpha.1 Command:[] Args:[] WorkingDir: Ports:[] EnvFrom:[] Env:[] Resources:{Limits:map[] Requests:map[memory:{i:{value:52428800 scale:0} d:{Dec:<nil>} s:50Mi Format:BinarySI} cpu:{i:{value:5 scale:-3} d:{Dec:<nil>} s:5m Format:DecimalSI}]} VolumeMounts:[{Name:addons ReadOnly:true MountPath:/etc/kubernetes/ SubPath:}] LivenessProbe:nil ReadinessProbe:nil Lifecycle:nil TerminationMessagePath:/dev/termination-log TerminationMessagePolicy:File ImagePullPolicy:IfNotPresent SecurityContext:nil Stdin:false StdinOnce:false TTY:false} is dead, but RestartPolicy says that we should restart it.
Apr 28 18:03:34 minikube localkube[3512]: I0428 18:03:34.864914    3512 event.go:217] Event(v1.ObjectReference{Kind:"ReplicationController", Namespace:"kube-system", Name:"kubernetes-dashboard", UID:"ff27fc3c-2c3c-11e7-b41a-080027860de9", APIVersion:"v1", ResourceVersion:"137", FieldPath:""}): type: 'Normal' reason: 'SuccessfulCreate' Created pod: kubernetes-dashboard-dsw19
Apr 28 18:03:34 minikube localkube[3512]: I0428 18:03:34.875110    3512 event.go:217] Event(v1.ObjectReference{Kind:"Pod", Namespace:"kube-system", Name:"kubernetes-dashboard-dsw19", UID:"ff28d540-2c3c-11e7-b41a-080027860de9", APIVersion:"v1", ResourceVersion:"138", FieldPath:""}): type: 'Normal' reason: 'Scheduled' Successfully assigned kubernetes-dashboard-dsw19 to minikube
Apr 28 18:03:34 minikube localkube[3512]: I0428 18:03:34.877302    3512 replication_controller.go:206] Observed updated replication controller kubernetes-dashboard. Desired pod count change: 1->1
Apr 28 18:03:34 minikube localkube[3512]: I0428 18:03:34.897900    3512 replication_controller.go:206] Observed updated replication controller kubernetes-dashboard. Desired pod count change: 1->1
Apr 28 18:03:34 minikube localkube[3512]: I0428 18:03:34.932084    3512 reconciler.go:231] VerifyControllerAttachedVolume operation started for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9")
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.055413    3512 event.go:217] Event(v1.ObjectReference{Kind:"ReplicationController", Namespace:"kube-system", Name:"kube-dns-v20", UID:"ff3dbbda-2c3c-11e7-b41a-080027860de9", APIVersion:"v1", ResourceVersion:"149", FieldPath:""}): type: 'Normal' reason: 'SuccessfulCreate' Created pod: kube-dns-v20-z6wbl
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.086467    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.106436    3512 replication_controller.go:206] Observed updated replication controller kube-dns-v20. Desired pod count change: 1->1
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.111441    3512 event.go:217] Event(v1.ObjectReference{Kind:"Pod", Namespace:"kube-system", Name:"kube-dns-v20-z6wbl", UID:"ff435d34-2c3c-11e7-b41a-080027860de9", APIVersion:"v1", ResourceVersion:"150", FieldPath:""}): type: 'Normal' reason: 'Scheduled' Successfully assigned kube-dns-v20-z6wbl to minikube
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.136713    3512 replication_controller.go:206] Observed updated replication controller kube-dns-v20. Desired pod count change: 1->1
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.142834    3512 reconciler.go:231] VerifyControllerAttachedVolume operation started for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9")
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.195006    3512 kuberuntime_manager.go:458] Container {Name:kubernetes-dashboard Image:gcr.io/google_containers/kubernetes-dashboard-amd64:v1.6.0 Command:[] Args:[] WorkingDir: Ports:[{Name: HostPort:0 ContainerPort:9090 Protocol:TCP HostIP:}] EnvFrom:[] Env:[] Resources:{Limits:map[] Requests:map[]} VolumeMounts:[{Name:default-token-2z3zd ReadOnly:true MountPath:/var/run/secrets/kubernetes.io/serviceaccount SubPath:}] LivenessProbe:&Probe{Handler:Handler{Exec:nil,HTTPGet:&HTTPGetAction{Path:/,Port:9090,Host:,Scheme:HTTP,HTTPHeaders:[],},TCPSocket:nil,},InitialDelaySeconds:30,TimeoutSeconds:30,PeriodSeconds:10,SuccessThreshold:1,FailureThreshold:3,} ReadinessProbe:nil Lifecycle:nil TerminationMessagePath:/dev/termination-log TerminationMessagePolicy:File ImagePullPolicy:IfNotPresent SecurityContext:nil Stdin:false StdinOnce:false TTY:false} is dead, but RestartPolicy says that we should restart it.
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.251180    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:03:35 minikube localkube[3512]: W0428 18:03:35.341569    3512 docker_sandbox.go:263] Couldn't find network status for kube-system/kubernetes-dashboard-dsw19 through plugin: invalid network status for
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.411615    3512 kuberuntime_manager.go:458] Container {Name:kubedns Image:gcr.io/google_containers/kubedns-amd64:1.9 Command:[] Args:[--domain=cluster.local. --dns-port=10053] WorkingDir: Ports:[{Name:dns-local HostPort:0 ContainerPort:10053 Protocol:UDP HostIP:} {Name:dns-tcp-local HostPort:0 ContainerPort:10053 Protocol:TCP HostIP:}] EnvFrom:[] Env:[] Resources:{Limits:map[memory:{i:{value:178257920 scale:0} d:{Dec:<nil>} s:170Mi Format:BinarySI}] Requests:map[cpu:{i:{value:100 scale:-3} d:{Dec:<nil>} s:100m Format:DecimalSI} memory:{i:{value:73400320 scale:0} d:{Dec:<nil>} s:70Mi Format:BinarySI}]} VolumeMounts:[{Name:default-token-2z3zd ReadOnly:true MountPath:/var/run/secrets/kubernetes.io/serviceaccount SubPath:}] LivenessProbe:&Probe{Handler:Handler{Exec:nil,HTTPGet:&HTTPGetAction{Path:/healthz-kubedns,Port:8080,Host:,Scheme:HTTP,HTTPHeaders:[],},TCPSocket:nil,},InitialDelaySeconds:60,TimeoutSeconds:5,PeriodSeconds:10,SuccessThreshold:1,FailureThreshold:5,} ReadinessProbe:&Probe{Handler:Handler{Exec:nil,HTTPGet:&HTTPGetAction{Path:/readiness,Port:8081,Host:,Scheme:HTTP,HTTPHeaders:[],},TCPSocket:nil,},InitialDelaySeconds:3,TimeoutSeconds:5,PeriodSeconds:10,SuccessThreshold:1,FailureThreshold:3,} Lifecycle:nil TerminationMessagePath:/dev/termination-log TerminationMessagePolicy:File ImagePullPolicy:IfNotPresent SecurityContext:nil Stdin:false StdinOnce:false TTY:false} is dead, but RestartPolicy says that we should restart it.
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.411702    3512 kuberuntime_manager.go:458] Container {Name:dnsmasq Image:gcr.io/google_containers/kube-dnsmasq-amd64:1.4 Command:[] Args:[--cache-size=1000 --no-resolv --server=127.0.0.1#10053 --log-facility=-] WorkingDir: Ports:[{Name:dns HostPort:0 ContainerPort:53 Protocol:UDP HostIP:} {Name:dns-tcp HostPort:0 ContainerPort:53 Protocol:TCP HostIP:}] EnvFrom:[] Env:[] Resources:{Limits:map[] Requests:map[]} VolumeMounts:[{Name:default-token-2z3zd ReadOnly:true MountPath:/var/run/secrets/kubernetes.io/serviceaccount SubPath:}] LivenessProbe:&Probe{Handler:Handler{Exec:nil,HTTPGet:&HTTPGetAction{Path:/healthz-dnsmasq,Port:8080,Host:,Scheme:HTTP,HTTPHeaders:[],},TCPSocket:nil,},InitialDelaySeconds:60,TimeoutSeconds:5,PeriodSeconds:10,SuccessThreshold:1,FailureThreshold:5,} ReadinessProbe:nil Lifecycle:nil TerminationMessagePath:/dev/termination-log TerminationMessagePolicy:File ImagePullPolicy:IfNotPresent SecurityContext:nil Stdin:false StdinOnce:false TTY:false} is dead, but RestartPolicy says that we should restart it.
Apr 28 18:03:35 minikube localkube[3512]: I0428 18:03:35.411753    3512 kuberuntime_manager.go:458] Container {Name:healthz Image:gcr.io/google_containers/exechealthz-amd64:1.2 Command:[] Args:[--cmd=nslookup kubernetes.default.svc.cluster.local 127.0.0.1 >/dev/null --url=/healthz-dnsmasq --cmd=nslookup kubernetes.default.svc.cluster.local 127.0.0.1:10053 >/dev/null --url=/healthz-kubedns --port=8080 --quiet] WorkingDir: Ports:[{Name: HostPort:0 ContainerPort:8080 Protocol:TCP HostIP:}] EnvFrom:[] Env:[] Resources:{Limits:map[memory:{i:{value:52428800 scale:0} d:{Dec:<nil>} s:50Mi Format:BinarySI}] Requests:map[memory:{i:{value:52428800 scale:0} d:{Dec:<nil>} s:50Mi Format:BinarySI} cpu:{i:{value:10 scale:-3} d:{Dec:<nil>} s:10m Format:DecimalSI}]} VolumeMounts:[{Name:default-token-2z3zd ReadOnly:true MountPath:/var/run/secrets/kubernetes.io/serviceaccount SubPath:}] LivenessProbe:nil ReadinessProbe:nil Lifecycle:nil TerminationMessagePath:/dev/termination-log TerminationMessagePolicy:File ImagePullPolicy:IfNotPresent SecurityContext:nil Stdin:false StdinOnce:false TTY:false} is dead, but RestartPolicy says that we should restart it.
Apr 28 18:03:35 minikube localkube[3512]: W0428 18:03:35.548291    3512 docker_sandbox.go:263] Couldn't find network status for kube-system/kube-dns-v20-z6wbl through plugin: invalid network status for
Apr 28 18:03:36 minikube localkube[3512]: W0428 18:03:36.112921    3512 docker_sandbox.go:263] Couldn't find network status for kube-system/kubernetes-dashboard-dsw19 through plugin: invalid network status for
Apr 28 18:03:36 minikube localkube[3512]: W0428 18:03:36.115676    3512 docker_sandbox.go:263] Couldn't find network status for kube-system/kube-dns-v20-z6wbl through plugin: invalid network status for
Apr 28 18:03:44 minikube localkube[3512]: W0428 18:03:44.144668    3512 docker_sandbox.go:263] Couldn't find network status for kube-system/kubernetes-dashboard-dsw19 through plugin: invalid network status for
Apr 28 18:03:44 minikube localkube[3512]: I0428 18:03:44.165369    3512 replication_controller.go:206] Observed updated replication controller kubernetes-dashboard. Desired pod count change: 1->1
Apr 28 18:03:44 minikube localkube[3512]: I0428 18:03:44.182447    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:03:45 minikube localkube[3512]: I0428 18:03:45.183684    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:03:47 minikube localkube[3512]: W0428 18:03:47.164350    3512 docker_sandbox.go:263] Couldn't find network status for kube-system/kube-dns-v20-z6wbl through plugin: invalid network status for
Apr 28 18:03:49 minikube localkube[3512]: W0428 18:03:49.186210    3512 docker_sandbox.go:263] Couldn't find network status for kube-system/kube-dns-v20-z6wbl through plugin: invalid network status for
Apr 28 18:03:51 minikube localkube[3512]: W0428 18:03:51.203314    3512 docker_sandbox.go:263] Couldn't find network status for kube-system/kube-dns-v20-z6wbl through plugin: invalid network status for
Apr 28 18:03:51 minikube localkube[3512]: I0428 18:03:51.220007    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:03:52 minikube localkube[3512]: I0428 18:03:52.226270    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:03:52 minikube localkube[3512]: W0428 18:03:52.380619    3512 conversion.go:110] Could not get instant cpu stats: different number of cpus
Apr 28 18:03:55 minikube localkube[3512]: I0428 18:03:55.130178    3512 replication_controller.go:206] Observed updated replication controller kube-dns-v20. Desired pod count change: 1->1
Apr 28 18:05:05 minikube localkube[3512]: I0428 18:05:05.127339    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:05:16 minikube localkube[3512]: I0428 18:05:16.113123    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:05:50 minikube localkube[3512]: I0428 18:05:50.186767    3512 controller.go:832] scheduleOperation[lock-provision-default/task-pv-claim[4fd180bb-2c3d-11e7-b41a-080027860de9]]
Apr 28 18:05:50 minikube localkube[3512]: I0428 18:05:50.190834    3512 controller.go:832] scheduleOperation[lock-provision-default/task-pv-claim[4fd180bb-2c3d-11e7-b41a-080027860de9]]
Apr 28 18:05:50 minikube localkube[3512]: I0428 18:05:50.199007    3512 leaderelection.go:157] attempting to acquire leader lease...
Apr 28 18:05:50 minikube localkube[3512]: I0428 18:05:50.204228    3512 leaderelection.go:179] sucessfully acquired lease to provision for pvc default/task-pv-claim
Apr 28 18:05:50 minikube localkube[3512]: I0428 18:05:50.206314    3512 controller.go:832] scheduleOperation[provision-default/task-pv-claim[4fd180bb-2c3d-11e7-b41a-080027860de9]]
Apr 28 18:05:50 minikube localkube[3512]: I0428 18:05:50.210978    3512 controller.go:570] volume "pvc-4fd180bb-2c3d-11e7-b41a-080027860de9" for claim "default/task-pv-claim" created
Apr 28 18:05:50 minikube localkube[3512]: I0428 18:05:50.215714    3512 controller.go:583] volume "pvc-4fd180bb-2c3d-11e7-b41a-080027860de9" for claim "default/task-pv-claim" saved
Apr 28 18:05:50 minikube localkube[3512]: I0428 18:05:50.215755    3512 controller.go:619] volume "pvc-4fd180bb-2c3d-11e7-b41a-080027860de9" provisioned for claim "default/task-pv-claim"
Apr 28 18:05:52 minikube localkube[3512]: I0428 18:05:52.212611    3512 leaderelection.go:199] stopped trying to renew lease to provision for pvc default/task-pv-claim, task succeeded
Apr 28 18:05:52 minikube localkube[3512]: I0428 18:05:52.981426    3512 event.go:217] Event(v1.ObjectReference{Kind:"Pod", Namespace:"default", Name:"task-pv-pod", UID:"517a7f10-2c3d-11e7-b41a-080027860de9", APIVersion:"v1", ResourceVersion:"352", FieldPath:""}): type: 'Normal' reason: 'Scheduled' Successfully assigned task-pv-pod to minikube
Apr 28 18:05:53 minikube localkube[3512]: I0428 18:05:53.115995    3512 reconciler.go:231] VerifyControllerAttachedVolume operation started for volume "kubernetes.io/host-path/517a7f10-2c3d-11e7-b41a-080027860de9-pvc-4fd180bb-2c3d-11e7-b41a-080027860de9" (spec.Name: "pvc-4fd180bb-2c3d-11e7-b41a-080027860de9") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9")
Apr 28 18:05:53 minikube localkube[3512]: I0428 18:05:53.116162    3512 reconciler.go:231] VerifyControllerAttachedVolume operation started for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9")
Apr 28 18:05:53 minikube localkube[3512]: I0428 18:05:53.220850    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/host-path/517a7f10-2c3d-11e7-b41a-080027860de9-pvc-4fd180bb-2c3d-11e7-b41a-080027860de9" (spec.Name: "pvc-4fd180bb-2c3d-11e7-b41a-080027860de9") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:05:53 minikube localkube[3512]: I0428 18:05:53.230101    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:05:53 minikube localkube[3512]: I0428 18:05:53.284671    3512 kuberuntime_manager.go:458] Container {Name:task-pv-container Image:nginx Command:[] Args:[] WorkingDir: Ports:[{Name:http-server HostPort:0 ContainerPort:80 Protocol:TCP HostIP:}] EnvFrom:[] Env:[] Resources:{Limits:map[] Requests:map[]} VolumeMounts:[{Name:task-pv-storage ReadOnly:false MountPath:/usr/share/nginx/html SubPath:} {Name:default-token-6gt49 ReadOnly:true MountPath:/var/run/secrets/kubernetes.io/serviceaccount SubPath:}] LivenessProbe:nil ReadinessProbe:nil Lifecycle:nil TerminationMessagePath:/dev/termination-log TerminationMessagePolicy:File ImagePullPolicy:Always SecurityContext:nil Stdin:false StdinOnce:false TTY:false} is dead, but RestartPolicy says that we should restart it.
Apr 28 18:05:53 minikube localkube[3512]: W0428 18:05:53.452917    3512 docker_sandbox.go:263] Couldn't find network status for default/task-pv-pod through plugin: invalid network status for
Apr 28 18:05:53 minikube localkube[3512]: W0428 18:05:53.829875    3512 docker_sandbox.go:263] Couldn't find network status for default/task-pv-pod through plugin: invalid network status for
Apr 28 18:06:06 minikube localkube[3512]: W0428 18:06:06.943964    3512 docker_sandbox.go:263] Couldn't find network status for default/task-pv-pod through plugin: invalid network status for
Apr 28 18:06:07 minikube localkube[3512]: I0428 18:06:07.025651    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:06:08 minikube localkube[3512]: I0428 18:06:08.035677    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:06:08 minikube localkube[3512]: I0428 18:06:08.036332    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:06:12 minikube localkube[3512]: W0428 18:06:12.933053    3512 conversion.go:110] Could not get instant cpu stats: different number of cpus
Apr 28 18:06:22 minikube localkube[3512]: I0428 18:06:22.038969    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:06:22 minikube localkube[3512]: W0428 18:06:22.979253    3512 conversion.go:110] Could not get instant cpu stats: different number of cpus
Apr 28 18:06:35 minikube localkube[3512]: E0428 18:06:35.642049    3512 proxy.go:208] Error proxying data from backend to client: write tcp 192.168.99.100:8443->192.168.99.1:57720: write: broken pipe
Apr 28 18:07:10 minikube localkube[3512]: I0428 18:07:10.042174    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:07:29 minikube localkube[3512]: I0428 18:07:29.054806    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:07:46 minikube localkube[3512]: I0428 18:07:46.086048    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:08:22 minikube localkube[3512]: I0428 18:08:22.066545    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:08:40 minikube localkube[3512]: I0428 18:08:40.111033    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:09:16 minikube localkube[3512]: I0428 18:09:16.102089    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:09:25 minikube localkube[3512]: I0428 18:09:25.082816    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:10:10 minikube localkube[3512]: I0428 18:10:10.045509    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:10:19 minikube localkube[3512]: I0428 18:10:19.115270    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:10:31 minikube localkube[3512]: I0428 18:10:31.112217    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:11:13 minikube localkube[3512]: I0428 18:11:13.043465    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:11:23 minikube localkube[3512]: I0428 18:11:23.123107    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:11:50 minikube localkube[3512]: I0428 18:11:50.037511    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:12:28 minikube localkube[3512]: I0428 18:12:28.062320    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:12:30 minikube localkube[3512]: I0428 18:12:30.080503    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:13:07 minikube localkube[3512]: I0428 18:13:07.074186    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:13:34 minikube localkube[3512]: I0428 18:13:34.084884    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:13:56 minikube localkube[3512]: I0428 18:13:56.050869    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:14:18 minikube localkube[3512]: I0428 18:14:18.131119    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:14:49 minikube localkube[3512]: I0428 18:14:49.065007    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:14:58 minikube localkube[3512]: I0428 18:14:58.037847    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:15:32 minikube localkube[3512]: I0428 18:15:32.126018    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:15:50 minikube localkube[3512]: W0428 18:15:50.186695    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *api.LimitRange ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [18/2]) [1017]
Apr 28 18:15:51 minikube localkube[3512]: W0428 18:15:51.188075    3512 cacher.go:125] Terminating all watchers from cacher *api.LimitRange
Apr 28 18:15:51 minikube localkube[3512]: W0428 18:15:51.190758    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: watch of *api.LimitRange ended with: too old resource version: 1 (1016)
Apr 28 18:15:51 minikube localkube[3512]: W0428 18:15:51.191102    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1016)
Apr 28 18:16:00 minikube localkube[3512]: W0428 18:16:00.815161    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [29/22]) [1028]
Apr 28 18:16:08 minikube localkube[3512]: I0428 18:16:08.104000    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:16:15 minikube localkube[3512]: I0428 18:16:15.064251    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:17:00 minikube localkube[3512]: I0428 18:17:00.033254    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:17:27 minikube localkube[3512]: I0428 18:17:27.043066    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:17:35 minikube localkube[3512]: I0428 18:17:35.111829    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:17:35 minikube localkube[3512]: W0428 18:17:35.230076    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *api.ResourceQuota ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [133/2]) [1132]
Apr 28 18:17:36 minikube localkube[3512]: W0428 18:17:36.231420    3512 cacher.go:125] Terminating all watchers from cacher *api.ResourceQuota
Apr 28 18:17:36 minikube localkube[3512]: W0428 18:17:36.235206    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: watch of *api.ResourceQuota ended with: too old resource version: 1 (1133)
Apr 28 18:17:36 minikube localkube[3512]: W0428 18:17:36.235553    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1.ResourceQuota ended with: too old resource version: 1 (1133)
Apr 28 18:17:36 minikube localkube[3512]: W0428 18:17:36.235935    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1133)
Apr 28 18:18:02 minikube localkube[3512]: W0428 18:18:02.492309    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *batch.CronJob ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [163/2]) [1162]
Apr 28 18:18:02 minikube localkube[3512]: W0428 18:18:02.493254    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *batch.Job ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [163/2]) [1162]
Apr 28 18:18:03 minikube localkube[3512]: W0428 18:18:03.493104    3512 cacher.go:125] Terminating all watchers from cacher *batch.CronJob
Apr 28 18:18:03 minikube localkube[3512]: W0428 18:18:03.495697    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1162)
Apr 28 18:18:03 minikube localkube[3512]: W0428 18:18:03.495824    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1162)
Apr 28 18:18:03 minikube localkube[3512]: W0428 18:18:03.496836    3512 cacher.go:125] Terminating all watchers from cacher *batch.Job
Apr 28 18:18:03 minikube localkube[3512]: W0428 18:18:03.498463    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1.Job ended with: too old resource version: 1 (1162)
Apr 28 18:18:03 minikube localkube[3512]: W0428 18:18:03.498527    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1162)
Apr 28 18:18:17 minikube localkube[3512]: I0428 18:18:17.034442    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.416144    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *api.PodTemplate ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.447758    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *autoscaling.HorizontalPodAutoscaler ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.448738    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *autoscaling.HorizontalPodAutoscaler ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.449473    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *certificates.CertificateSigningRequest ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.456087    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *extensions.DaemonSet ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.457960    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *extensions.PodSecurityPolicy ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.458208    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *extensions.Ingress ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.459082    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *extensions.ReplicaSet ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.459803    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *policy.PodDisruptionBudget ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.461289    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *extensions.NetworkPolicy ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.472399    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *settings.PodPreset ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.476730    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *apps.StatefulSet ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:20 minikube localkube[3512]: W0428 18:18:20.476730    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *extensions.Deployment ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/2]) [1182]
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.417429    3512 cacher.go:125] Terminating all watchers from cacher *api.PodTemplate
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.418939    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.448567    3512 cacher.go:125] Terminating all watchers from cacher *autoscaling.HorizontalPodAutoscaler
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.450192    3512 cacher.go:125] Terminating all watchers from cacher *certificates.CertificateSigningRequest
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.450376    3512 cacher.go:125] Terminating all watchers from cacher *autoscaling.HorizontalPodAutoscaler
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.450651    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1.HorizontalPodAutoscaler ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.451729    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.451889    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.456794    3512 cacher.go:125] Terminating all watchers from cacher *extensions.DaemonSet
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.458342    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.458580    3512 cacher.go:125] Terminating all watchers from cacher *extensions.Ingress
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.458497    3512 cacher.go:125] Terminating all watchers from cacher *extensions.PodSecurityPolicy
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.458352    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1beta1.DaemonSet ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.459807    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.460071    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.460245    3512 cacher.go:125] Terminating all watchers from cacher *policy.PodDisruptionBudget
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.460353    3512 cacher.go:125] Terminating all watchers from cacher *extensions.ReplicaSet
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.463594    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.464006    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.464171    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1beta1.ReplicaSet ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.464314    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1beta1.ReplicaSet ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.464561    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.465203    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1beta1.PodDisruptionBudget ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.473078    3512 cacher.go:125] Terminating all watchers from cacher *settings.PodPreset
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.474439    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.477259    3512 cacher.go:125] Terminating all watchers from cacher *apps.StatefulSet
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.477676    3512 cacher.go:125] Terminating all watchers from cacher *extensions.Deployment
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.479035    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.479420    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1beta1.StatefulSet ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.479469    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1beta1.StatefulSet ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.479878    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1181)
Apr 28 18:18:21 minikube localkube[3512]: W0428 18:18:21.566100    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *api.ConfigMap ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/11]) [1182]
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.063072    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *api.Service ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [183/157]) [1182]
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.102151    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *rbac.ClusterRole ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [184/62]) [1183]
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.103155    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *rbac.ClusterRole ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [184/62]) [1183]
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.469885    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *rbac.ClusterRoleBinding ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [185/109]) [1184]
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.471033    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *rbac.ClusterRoleBinding ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [185/109]) [1184]
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.566463    3512 cacher.go:125] Terminating all watchers from cacher *api.ConfigMap
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.568652    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 10 (1183)
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.568679    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1.ConfigMap ended with: too old resource version: 10 (1183)
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.626981    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *rbac.Role ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [185/113]) [1184]
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.626980    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *rbac.Role ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [185/113]) [1184]
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.747455    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *rbac.RoleBinding ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [185/116]) [1184]
Apr 28 18:18:22 minikube localkube[3512]: W0428 18:18:22.747455    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *rbac.RoleBinding ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [185/116]) [1184]
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.063263    3512 cacher.go:125] Terminating all watchers from cacher *api.Service
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.068080    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 156 (1183)
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.069506    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1.Service ended with: too old resource version: 156 (1183)
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.069534    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/proxy/config/api.go:46: watch of *api.Service ended with: too old resource version: 156 (1183)
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.069594    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1.Service ended with: too old resource version: 156 (1183)
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.069868    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/kubelet/kubelet.go:382: watch of *v1.Service ended with: too old resource version: 156 (1183)
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.103934    3512 cacher.go:125] Terminating all watchers from cacher *rbac.ClusterRole
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.109236    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 61 (1183)
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.470869    3512 cacher.go:125] Terminating all watchers from cacher *rbac.ClusterRoleBinding
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.473510    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 108 (1184)
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.628443    3512 cacher.go:125] Terminating all watchers from cacher *rbac.Role
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.631004    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 112 (1184)
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.748379    3512 cacher.go:125] Terminating all watchers from cacher *rbac.RoleBinding
Apr 28 18:18:23 minikube localkube[3512]: W0428 18:18:23.750380    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 115 (1184)
Apr 28 18:18:27 minikube localkube[3512]: W0428 18:18:27.294856    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *api.Namespace ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [190/137]) [1189]
Apr 28 18:18:28 minikube localkube[3512]: W0428 18:18:28.295747    3512 cacher.go:125] Terminating all watchers from cacher *api.Namespace
Apr 28 18:18:28 minikube localkube[3512]: W0428 18:18:28.299110    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1.Namespace ended with: too old resource version: 136 (1190)
Apr 28 18:18:28 minikube localkube[3512]: W0428 18:18:28.299680    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 136 (1190)
Apr 28 18:18:28 minikube localkube[3512]: W0428 18:18:28.299958    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: watch of *api.Namespace ended with: too old resource version: 136 (1190)
Apr 28 18:18:34 minikube localkube[3512]: W0428 18:18:34.510867    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *api.ServiceAccount ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [199/108]) [1198]
Apr 28 18:18:34 minikube localkube[3512]: W0428 18:18:34.697817    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *extensions.Deployment ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [199/2]) [1198]
Apr 28 18:18:35 minikube localkube[3512]: W0428 18:18:35.134507    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *storage.StorageClass ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [199/159]) [1198]
Apr 28 18:18:35 minikube localkube[3512]: W0428 18:18:35.512331    3512 cacher.go:125] Terminating all watchers from cacher *api.ServiceAccount
Apr 28 18:18:35 minikube localkube[3512]: W0428 18:18:35.515083    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/serviceaccount/tokens_controller.go:172: watch of *v1.ServiceAccount ended with: too old resource version: 107 (1197)
Apr 28 18:18:35 minikube localkube[3512]: W0428 18:18:35.515413    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1.ServiceAccount ended with: too old resource version: 107 (1197)
Apr 28 18:18:35 minikube localkube[3512]: W0428 18:18:35.515760    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: watch of *api.ServiceAccount ended with: too old resource version: 107 (1197)
Apr 28 18:18:35 minikube localkube[3512]: W0428 18:18:35.516680    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 107 (1197)
Apr 28 18:18:35 minikube localkube[3512]: W0428 18:18:35.698703    3512 cacher.go:125] Terminating all watchers from cacher *extensions.Deployment
Apr 28 18:18:35 minikube localkube[3512]: W0428 18:18:35.700093    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1beta1.Deployment ended with: too old resource version: 1 (1197)
Apr 28 18:18:35 minikube localkube[3512]: W0428 18:18:35.700172    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/controller/garbagecollector/graph_builder.go:192: watch of <nil> ended with: too old resource version: 1 (1197)
Apr 28 18:18:36 minikube localkube[3512]: W0428 18:18:36.134923    3512 cacher.go:125] Terminating all watchers from cacher *storage.StorageClass
Apr 28 18:18:36 minikube localkube[3512]: W0428 18:18:36.136538    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions/factory.go:70: watch of *v1beta1.StorageClass ended with: too old resource version: 158 (1197)
Apr 28 18:18:36 minikube localkube[3512]: W0428 18:18:36.136830    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/client/informers/informers_generated/internalversion/factory.go:70: watch of *storage.StorageClass ended with: too old resource version: 158 (1197)
Apr 28 18:18:44 minikube localkube[3512]: I0428 18:18:44.130247    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:18:55 minikube localkube[3512]: I0428 18:18:55.113598    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
Apr 28 18:18:55 minikube localkube[3512]: W0428 18:18:55.134241    3512 reflector.go:323] k8s.io/minikube/vendor/k8s.io/apiserver/pkg/storage/cacher.go:215: watch of *api.ReplicationController ended with: 401: The event in requested index is outdated and cleared (the requested history has been cleared [221/207]) [1220]
Apr 28 18:19:30 minikube localkube[3512]: I0428 18:19:30.092755    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff28d540-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff28d540-2c3c-11e7-b41a-080027860de9" (UID: "ff28d540-2c3c-11e7-b41a-080027860de9").
Apr 28 18:20:07 minikube localkube[3512]: I0428 18:20:07.113389    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/517a7f10-2c3d-11e7-b41a-080027860de9-default-token-6gt49" (spec.Name: "default-token-6gt49") pod "517a7f10-2c3d-11e7-b41a-080027860de9" (UID: "517a7f10-2c3d-11e7-b41a-080027860de9").
Apr 28 18:20:19 minikube localkube[3512]: I0428 18:20:19.119179    3512 operation_generator.go:597] MountVolume.SetUp succeeded for volume "kubernetes.io/secret/ff435d34-2c3c-11e7-b41a-080027860de9-default-token-2z3zd" (spec.Name: "default-token-2z3zd") pod "ff435d34-2c3c-11e7-b41a-080027860de9" (UID: "ff435d34-2c3c-11e7-b41a-080027860de9").
@aaron-prindle aaron-prindle added the kind/bug Categorizes issue or PR as related to a bug. label May 1, 2017
@r2d4
Copy link
Contributor

r2d4 commented May 1, 2017

ref #1422 since the same panic is occuring here

Apr 28 18:03:16 minikube localkube[3423]: fatal error: unexpected signal during runtime execution
Apr 28 18:03:16 minikube localkube[3423]: [signal SIGSEGV: segmentation violation code=0x1 addr=0xe5 pc=0x7fdafc6ca070]
Apr 28 18:03:16 minikube localkube[3423]: runtime stack:
Apr 28 18:03:16 minikube localkube[3423]: runtime.throw(0x3edf4e2, 0x2a)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/panic.go:566 +0x95
Apr 28 18:03:16 minikube localkube[3423]: runtime.sigpanic()
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/sigpanic_unix.go:12 +0x2cc
Apr 28 18:03:16 minikube localkube[3423]: goroutine 1 [syscall, locked to thread]:
Apr 28 18:03:16 minikube localkube[3423]: runtime.cgocall(0x31e3000, 0xc4208ce8e0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/runtime/cgocall.go:131 +0x110 fp=0xc4208ce890 sp=0xc4208ce850
Apr 28 18:03:16 minikube localkube[3423]: os/user._Cfunc_mygetpwuid_r(0x0, 0xc420271d40, 0x7fd8740008c0, 0x400, 0xc4200205f0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         ??:0 +0x4d fp=0xc4208ce8e0 sp=0xc4208ce890
Apr 28 18:03:16 minikube localkube[3423]: os/user.lookupUnixUid.func1(0x42a153)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup_unix.go:103 +0x1f7 fp=0xc4208ce970 sp=0xc4208ce8e0
Apr 28 18:03:16 minikube localkube[3423]: os/user.retryWithBuffer(0xc420437cd0, 0xc4208cea68, 0xc420437cd0, 0xc4208cea87)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup_unix.go:253 +0x2b fp=0xc4208ce9d8 sp=0xc4208ce970
Apr 28 18:03:16 minikube localkube[3423]: os/user.lookupUnixUid(0x0, 0x0, 0x0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup_unix.go:105 +0x141 fp=0xc4208ceaa0 sp=0xc4208ce9d8
Apr 28 18:03:16 minikube localkube[3423]: os/user.current(0xc4208ceb00, 0xc4208ceb10, 0x472eb5)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup_unix.go:49 +0x2f fp=0xc4208cead0 sp=0xc4208ceaa0
Apr 28 18:03:16 minikube localkube[3423]: os/user.Current(0x0, 0x0, 0xc4208ceb00)
Apr 28 18:03:16 minikube localkube[3423]:         /usr/local/go/src/os/user/lookup.go:9 +0x22 fp=0xc4208ceaf8 sp=0xc4208cead0
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/godbus/dbus.lookupHomeDir(0x3e40b99, 0x4)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/godbus/dbus/homedir_dynamic.go:10 +0x22 fp=0xc4208ceb20 sp=0xc4208ceaf8
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/godbus/dbus.getHomeDir(0x0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/godbus/dbus/homedir.go:26 +0x10d fp=0xc4208ceb50 sp=0xc4208ceb20
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/godbus/dbus.(*Conn).Auth(0xc420767c20, 0x0, 0x0, 0x0, 0x40fc7e, 0xc420437c80)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/godbus/dbus/auth.go:57 +0xefb fp=0xc4208cee88 sp=0xc4208ceb50
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/github.com/godbus/dbus.SystemBus(0xc420767c20, 0x0, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/github.com/godbus/dbus/conn.go:119 +0x13e fp=0xc4208ceec8 sp=0xc4208cee88
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/dbus.(*dbusImpl).SystemBus(0xc420437b00, 0xc420022800, 0xa, 0x0, 0xd)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/dbus/dbus.go:87 +0x63 fp=0xc4208cef00 sp=0xc4208ceec8
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/iptables.(*runner).connectToFirewallD(0xc42037de30)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/iptables/iptables.go:173 +0x4c fp=0xc4208cf060 sp=0xc4208cef00
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/iptables.New(0x68b8c00, 0x6b29c00, 0x68b8bc0, 0xc420437b00, 0x1, 0x4, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/util/iptables/iptables.go:152 +0x1ae fp=0xc4208cf118 sp=0xc4208cf060
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/vendor/k8s.io/kubernetes/cmd/kube-proxy/app.NewProxyServerDefault(0xc420628900, 0x3, 0x4, 0x0)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/vendor/k8s.io/kubernetes/cmd/kube-proxy/app/server.go:157 +0x1ab fp=0xc4208cf460 sp=0xc4208cf118
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/pkg/localkube.StartProxyServer(0xc42042ce80, 0x3, 0x4, 0x0, 0x3e55758, 0xd, 0xc420412090, 0x10, 0x10, 0x3e672ef, ...)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/pkg/localkube/proxy.go:49 +0x19f fp=0xc4208cf5f8 sp=0xc4208cf460
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/pkg/localkube.LocalkubeServer.NewProxyServer(0xc42042ce80, 0x3, 0x4, 0x0, 0x3e55758, 0xd, 0xc420412090, 0x10, 0x10, 0x3e672ef, ...)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/pkg/localkube/proxy.go:32 +0x63 fp=0xc4208cf770 sp=0xc4208cf5f8
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/cmd/localkube/cmd.SetupServer(0xc4206c8c60)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/cmd/localkube/cmd/start.go:126 +0x5dc fp=0xc4208cfa70 sp=0xc4208cf770
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/cmd/localkube/cmd.StartLocalkube()
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/cmd/localkube/cmd/start.go:56 +0xbd fp=0xc4208cfca8 sp=0xc4208cfa70
Apr 28 18:03:16 minikube localkube[3423]: k8s.io/minikube/cmd/localkube/cmd.glob..func1(0x688de60, 0xc4201db480, 0x0, 0x4)
Apr 28 18:03:16 minikube localkube[3423]:         /go/src/k8s.io/minikube/cmd/localkube/cmd/root.go:31 +0x14 fp=0xc4208cfcb0 sp=0xc4208cfca8

cc @tgraf

@ezeev
Copy link

ezeev commented Jun 10, 2017

+1

I'm seeing the exact same issue on a similar setup. I've tested with both virtualbox and xhyve drivers. I can't seem to get minikube to see any files in a PV, whether using a manually created files on the host or through using the minikube mount feature.

In short, the steps at https://kubernetes.io/docs/tasks/configure-pod-container/configure-persistent-volume-storage/ aren't working on minikube.

I'm surprised more aren't reporting this given the popularity of minikube.

@fejta-bot
Copy link

Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually close.

Prevent issues from auto-closing with an /lifecycle frozen comment.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or @fejta.
/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Dec 27, 2017
@fejta-bot
Copy link

Stale issues rot after 30d of inactivity.
Mark the issue as fresh with /remove-lifecycle rotten.
Rotten issues close after an additional 30d of inactivity.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/lifecycle rotten
/remove-lifecycle stale

@k8s-ci-robot k8s-ci-robot added lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. and removed lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. labels Jan 26, 2018
@fejta-bot
Copy link

Rotten issues close after 30d of inactivity.
Reopen the issue with /reopen.
Mark the issue as fresh with /remove-lifecycle rotten.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/close

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Categorizes issue or PR as related to a bug. lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed.
Projects
None yet
Development

No branches or pull requests

6 participants