應用高可用
應用高可用的一般原則
優雅關閉
restartPolicy: Always
terminationGracePeriodSeconds: 30
containers:
- image: nginx
lifecycle:
preStop:
exec:
command: [
"sh", "-c",
# Introduce a delay to the shutdown sequence to wait for the
# pod eviction event to propagate. Then, gracefully shutdown
# nginx.
"sleep 5 && /usr/sbin/nginx -s quit",
]參考文檔
Last updated