5、ReplicationController
ReplicationController 确保在任何时候都有特定数量的 Pod 正本处于运行状态。换句话说,ReplicationController 确保一个 Pod 或一组同类的 Pod 总是可用的。
ReplicationController 如何工作
当 Pod 数量过多时,ReplicationController 会终止多余的 Pod。当 Pod 数量太少时,ReplicationController 将会启动新的 Pod。与手动创立的 Pod 不同,由 ReplicationController 创立的 Pod 在失败、被删除或被终止时会被主动替换。例如,在中断性保护(如内核降级)之后,你的 Pod 会在节点上从新创立。因而,即便你的应用程序只须要一个 Pod,你也应该应用 ReplicationController 创立 Pod。ReplicationController 相似于过程管理器,然而 ReplicationController 不是监控单个节点上的单个过程,而是监控跨多个节点的多个 Pod。
在探讨中,ReplicationController 通常缩写为 “rc”,并作为 kubectl 命令的快捷方式。
一个简略的示例是创立一个 ReplicationController 对象来牢靠地无限期地运行 Pod 的一个实例。更简单的用例是运行一个多正本服务(如 web 服务器)的若干雷同正本。
示例:
[root@k8s-master-node1 ~/yaml/test]# vim rc.yaml
[root@k8s-master-node1 ~/yaml/test]# cat rc.yaml
apiVersion: v1
kind: ReplicationController
metadata:
name: nginx
spec:
replicas: 3
selector:
app: nginx
template:
metadata:
name: nginx
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx
ports:
- containerPort: 80
[root@k8s-master-node1 ~/yaml/test]#
创立
[root@k8s-master-node1 ~/yaml/test]# kubectl apply -f rc.yaml
replicationcontroller/nginx created
[root@k8s-master-node1 ~/yaml/test]#
查看 pod
[root@k8s-master-node1 ~/yaml/test]# kubectl get pod
NAME READY STATUS RESTARTS AGE
ingress-demo-app-694bf5d965-q4l7m 1/1 Running 0 23h
ingress-demo-app-694bf5d965-v652j 1/1 Running 0 23h
nfs-client-provisioner-dc5789f74-nnk77 1/1 Running 1 (8h ago) 22h
nginx-87sxg 1/1 Running 0 34s
nginx-kwrqn 1/1 Running 0 34s
nginx-xk2t6 1/1 Running 0 34s
[root@k8s-master-node1 ~/yaml/test]#
查看 rc
[root@k8s-master-node1 ~/yaml/test]# kubectl describe replicationcontrollers nginx
Name: nginx
Namespace: default
Selector: app=nginx
Labels: app=nginx
Annotations: <none>
Replicas: 3 current / 3 desired
Pods Status: 3 Running / 0 Waiting / 0 Succeeded / 0 Failed
Pod Template:
Labels: app=nginx
Containers:
nginx:
Image: nginx
Port: 80/TCP
Host Port: 0/TCP
Environment: <none>
Mounts: <none>
Volumes: <none>
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal SuccessfulCreate 102s replication-controller Created pod: nginx-xk2t6
Normal SuccessfulCreate 102s replication-controller Created pod: nginx-kwrqn
Normal SuccessfulCreate 102s replication-controller Created pod: nginx-87sxg
[root@k8s-master-node1 ~/yaml/test]#
Linux 运维交换社区
Linux 运维交换社区,互联网新闻以及技术交换。
59 篇原创内容
公众号
https://blog.csdn.net/qq_3392…
https://my.oschina.net/u/3981543
https://www.zhihu.com/people/…
https://segmentfault.com/u/hp…
https://juejin.cn/user/331578…
https://space.bilibili.com/35…
https://cloud.tencent.com/dev…
知乎、CSDN、开源中国、思否、掘金、哔哩哔哩、腾讯云
本文应用 文章同步助手 同步