how can I start the kubernetes container when I reboot my server computer

5/27/2016

firstly,I success to deploy my kubernetes master node via docker, then reboot the server,the container is down,is there any idea to auto-run it.

-- D cc
kubernetes

1 Answer

5/27/2016

You need the kubelet to start when your computer reboots. Once it starts up, it will run all of the containers stored in manifest files (on your master node, this should include the master components like the apiserver) and will then register itself with the apiserver and be available to run any assigned pods.

-- Robert Bailey
Source: StackOverflow