应用高可用的一般原则

  • 应用遵循 The Twelve-Factor App
  • 使用 Service 和多副本 Pod 部署应用
  • 多副本通过反亲和性避免单节点故障导致应用异常
  • 使用 PodDisruptionBudget 避免驱逐导致的应用不可用
  • 使用 preStopHook 和健康检查探针保证服务平滑更新

优雅关闭

为 Pod 配置 terminationGracePeriodSeconds,并通过 preStop 钩子延迟关闭容器应用以避免 kubectl drain 等事件发生时导致的应用中断:

  1. restartPolicy: Always
  2. terminationGracePeriodSeconds: 30
  3. containers:
  4. - image: nginx
  5. lifecycle:
  6. preStop:
  7. exec:
  8. command: [
  9. "sh", "-c",
  10. # Introduce a delay to the shutdown sequence to wait for the
  11. # pod eviction event to propagate. Then, gracefully shutdown
  12. # nginx.
  13. "sleep 5 && /usr/sbin/nginx -s quit",
  14. ]

详细的原理可以参考下面这个系列文章

参考文档