K8s内容器Back-off restarting failed container
由于启动容器没有运行任何指令,导致容器无限重启,因此解决问题的方法加上如下参数:
spec:
containers:
- command:
- /bin/bash
- -ce
- tail -f /dev/null
image: centos
记录一些技术资料等等
由于启动容器没有运行任何指令,导致容器无限重启,因此解决问题的方法加上如下参数:
spec:
containers:
- command:
- /bin/bash
- -ce
- tail -f /dev/null
image: centos