由于启动容器没有运行任何指令,导致容器无限重启,因此解决问题的方法加上如下参数:
spec:
containers:
- command:
- /bin/bash
- -ce
- tail -f /dev/null
image: centos
由于启动容器没有运行任何指令,导致容器无限重启,因此解决问题的方法加上如下参数:
spec:
containers:
- command:
- /bin/bash
- -ce
- tail -f /dev/null
image: centos