修改格式
parent
f8a04999a3
commit
5ea5d89a6c
|
@ -20,7 +20,7 @@ Gitbook在线浏览:https://www.gitbook.com/book/rootsongjc/kubernetes-handboo
|
||||||
|
|
||||||
访问 [gitbook](https://www.gitbook.com/book/rootsongjc/kubernetes-handbook/)
|
访问 [gitbook](https://www.gitbook.com/book/rootsongjc/kubernetes-handbook/)
|
||||||
|
|
||||||
文中涉及的配置文件和代码链接在gitbook中会无法打开,请下载github源码后,在MarkDown编辑器中打开,点击链接将跳转到你的本地目录,推荐使用[typora](www.typorai.o)。
|
**注意**:<u>文中涉及的配置文件和代码链接在 gitbook 中会无法打开,请下载 github 源码后,在 MarkDown 编辑器中打开,点击链接将跳转到你的本地目录,推荐使用[typora](www.typorai.o)</u>。
|
||||||
|
|
||||||
**本地查看**
|
**本地查看**
|
||||||
|
|
||||||
|
@ -93,4 +93,6 @@ pandoc --latex-engine=xelatex --template=pm-template input.md -o output.pdf
|
||||||
|
|
||||||
## 关于
|
## 关于
|
||||||
|
|
||||||
|
[贡献者列表](https://github.com/rootsongjc/kubernetes-handbook/graphs/contributors)
|
||||||
|
|
||||||
[Jimmy Song](http://rootsongjc.github.io/about)
|
[Jimmy Song](http://rootsongjc.github.io/about)
|
|
@ -141,7 +141,7 @@ nginx-deployment-2035384211-qqcnn 1/1 Running 0 18s app
|
||||||
|
|
||||||
### Pod-template-hash label
|
### Pod-template-hash label
|
||||||
|
|
||||||
**注意:**这个 label 不是用户指定的!
|
**注意**:这个 label 不是用户指定的!
|
||||||
|
|
||||||
注意上面示例输出中的 pod label 里的 pod-template-hash label。当 Deployment 创建或者接管 ReplicaSet 时,Deployment controller 会自动为 Pod 添加 pod-template-hash label。这样做的目的是防止 Deployment 的子ReplicaSet 的 pod 名字重复。通过将 ReplicaSet 的 PodTemplate 进行哈希散列,使用生成的哈希值作为 label 的值,并添加到 ReplicaSet selector 里、 pod template label 和 ReplicaSet 管理中的 Pod 上。
|
注意上面示例输出中的 pod label 里的 pod-template-hash label。当 Deployment 创建或者接管 ReplicaSet 时,Deployment controller 会自动为 Pod 添加 pod-template-hash label。这样做的目的是防止 Deployment 的子ReplicaSet 的 pod 名字重复。通过将 ReplicaSet 的 PodTemplate 进行哈希散列,使用生成的哈希值作为 label 的值,并添加到 ReplicaSet selector 里、 pod template label 和 ReplicaSet 管理中的 Pod 上。
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue