ReplicationController
ReplicationController(簡稱RC)是確保用戶定義的Pod副本數(shù)保持不變亚兄。
在用戶定義范圍內(nèi)虐拓,如果pod增多博敬,則ReplicationController會(huì)終止額外的pod,如果減少混坞,RC會(huì)創(chuàng)建新的pod磁奖,始終保持在定義范圍囊拜。例如,RC會(huì)在Pod維護(hù)(例如內(nèi)核升級)后在節(jié)點(diǎn)上重新創(chuàng)建新Pod比搭。
ReplicationController會(huì)替換由于某些原因而被刪除或終止的pod冠跷,例如在節(jié)點(diǎn)故障或中斷節(jié)點(diǎn)維護(hù)(例如內(nèi)核升級)的情況下。因此身诺,即使應(yīng)用只需要一個(gè)pod蜜托,我們也建議使用ReplicationController。
RC跨多個(gè)Node節(jié)點(diǎn)監(jiān)視多個(gè)pod霉赡。
[root@master RC]# 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@master RC]# kubectl create -f rc.yaml
replicationcontroller/nginx created
[root@master RC]# kubectl describe rc nginx rc.yaml
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? 63s? replication-controller? Created pod: nginx-sn5gp
? Normal? SuccessfulCreate? 63s? replication-controller? Created pod: nginx-bpkp6
? Normal? SuccessfulCreate? 63s? replication-controller? Created pod: nginx-dsnrf
[root@master RC]# kubectl get pod
NAME? ? ? ? ? READY? STATUS? ? RESTARTS? AGE
nginx-bpkp6? 1/1? ? Running? 0? ? ? ? ? 92s
nginx-dsnrf? 1/1? ? Running? 0? ? ? ? ? 92s
nginx-sn5gp? 1/1? ? Running? 0? ? ? ? ? 92s
通過template.metadata.labels字段為即將新建的Pod附加Label橄务。在上面的例子中,新建了一個(gè)名稱為nginx的Pod穴亏,它擁有一個(gè)鍵值對為app:nginx的Label蜂挪。
通過spec.selector字段來指定這個(gè)RC管理哪些Pod。在上面的例子中嗓化,新建的RC會(huì)管理所有擁有app:nginxLabel的Pod棠涮。這樣的spec.selector在Kubernetes中被稱作Label Selector。
ReplicaSet
ReplicaSet(RS)是Replication Controller(RC)的升級版本刺覆。ReplicaSet 和 Replication Controller之間的唯一區(qū)別是對選擇器的支持严肪。ReplicaSet支持labels user guide中描述的set-based選擇器要求, 而Replication Controller僅支持equality-based的選擇器要求。
[root@master RS]# cat rs.yaml
apiVersion: extensions/v1beta1
kind: ReplicaSet
metadata:
? name: frontend
spec:
? replicas: 3
? selector:
? ? matchLabels:
? ? ? tier: frontend
? ? matchExpressions:
? ? ? - {key: tier, operator: In, values: [frontend]}
? template:
? ? metadata:
? ? ? labels:
? ? ? ? app: guestbook
? ? ? ? tier: frontend
? ? spec:
? ? ? containers:
? ? ? - name: php-redis
? ? ? ? image: gcr.io/google_samples/gb-frontend:v3
? ? ? ? resources:
? ? ? ? ? requests:
? ? ? ? ? ? cpu: 100m
? ? ? ? ? ? memory: 100Mi
? ? ? ? env:
? ? ? ? - name: GET_HOSTS_FROM
? ? ? ? ? value: dns
? ? ? ? ports:
? ? ? ? - containerPort: 80
rs 的matchlables 是精確匹配诬垂,說rs支持更強(qiáng)表達(dá)能力的選擇器,是因?yàn)閞s還有matchExpressions選擇器伦仍。
selector:
? ? matchExpressions:
? ? ? ? - key: name
? ? ? ? ? operator: In
? ? ? ? ? values:
? ? ? ? ? ? ? - redis-master
? ? ? ? ? ? ? -? redis-slave
name in (redis-master, redis-slave) 選擇所有Label中key為name结窘,并且value為redis-master或redis-slave的對象。
env not in (dev) 選擇所有Label中key為env充蓝,并且value不為dev的對象隧枫。