k8s 1.2 deployed locally, single-node docker
Am I doing something wrong? Is this working for everyone else or is something broken in my k8s deployment?
Foll
Thanks to @Paul Morie for helping me diagnose and fix this (from github issue):
bingo, the mount propagation mode of /var/lib/kubelet is private. try changing the mount flag for the kubelet dir to
-v /var/lib/kubelet:/var/lib/kubelet:rw,shared
I also had to change MountFlags=slave
to MountFlags=shared
in my docker systemd file.