I set up Kubernetes on CoreOS on bare metal using the generic install scripts. It\'s running the current stable release, 1298.6.0, with Kubernetes version 1.5.4.
We\
I don't know why the master node shows up as NotReady; it shouldn't. Try executing kubectl describe node mymasternode to find out.
The SchedulingDisabled is because the master node is tainted with dedicated=master:NoSchedule
Execute this command against all your masters to remove the taint:
kubectl taint nodes mymasternode dedicated-
To understand why that works read up on taints and tolerations.