摘要:
pdb 背景需求:虽然 deploy/sts 可以保证pod数量最终与期望一致,但是在更新过程的瞬间无法保证。 例如在运行一个3节点的zookeeper/etcd ,在更新过程中如果有两个节点不可用,将会直接导致zookeeper/etcd 服务不可用。 解决方案:k8s 1.4版本引入了pdb【P 阅读全文
摘要:
label label的作用:方便识别和选择,就像我们把一个商品打上标签一样。 label作用范围: node pod deployment service resources 常见标签规范: 版本标签:"release":"stable","release":"canary","release": 阅读全文
摘要:
【在yaml中的位置】 pod.spec.containers.readinessProbe pod.spec.containers.livenessProbe 【三种类型】 命令型 livenessProbe: exec: command: - curl - 127.0.0.1:8000 init 阅读全文
摘要:
容器重启策略 Pod 的 spec 中包含一个 restartPolicy 字段,其可能取值包括 Always、OnFailure 和 Never。默认值是 Always。 强制删除不听话的pod pod 中的 initcontainer 先用应用程序启动,Init 容器是一种特殊容器,在 Pod 阅读全文