我已经用rke(rke up
(初始化了一个Kubernetes集群。
但是当节点重新启动时,我必须再次执行rke up
才能启动 kubelet 和 co。
这些服务有没有办法在节点上自动启动?
感谢您的帮助。
我使用 rke v0.1.9。
操作系统是Coreos Container Linux 1855.4.0。
我的集群是:
nodes:
- address: 198.19.210.32
user: core
role:
- controlplane
- etcd
- address: 198.19.210.33
user: core
role:
- worker
- address: 198.19.210.34
user: core
role:
- worker
labels:
app: ingress
# If set to true, RKE will not fail when unsupported Docker version are found
ignore_docker_version: true
# Enable use of SSH agent to use SSH private keys with passphrase
# This requires the environment `SSH_AUTH_SOCK` configured pointing to your SSH agent which has the private key added
ssh_agent_auth: true
kubelet、kube-apiserver 等,以及 RKE 创建的其他非 k8s 容器,应该有 always 的重启策略。
如果没有,您可以使用以下命令对其进行更新。
docker update --restart=always kubelet
此外,rke v0.1.9 非常古老。请尝试使用 rke v1.1.4。