0
我正在使用ReplicationController來創建運行redis容器的容器。延遲容器重啓
Redis容器由Redis Sentinel監控。如果redis崩潰並且重啓速度過快,則可能會導致Redis Sentinel在進行投票時遇到麻煩。
{
"apiVersion": "v1",
"kind": "ReplicationController",
"metadata": {
"name": "redis",
"labels": { "name" : "redis" }
},
"spec": {
"replicas": 1,
"selector": {
"name":"redis"
},
"template": {
"metadata": {
"labels": {
"name":"redis"
}
},
"spec": {
"volumes": [
//...
],
"containers": [
//...
],
"restartPolicy": "Always"
}
}
}
}
是否有可能延遲重啓?即在上次崩潰後60秒後重新啓動容器