Kubernetes基础:Replication Controller之选择器
上篇文章介绍了RC和RS的基本使用方式,这篇文章来介绍一下RC选择器selector的使用方式。 RC的选择器使用示例 如下YAML示例中, RC选择器设定为busybox-prod [ root@host131 ReplicaSet ] # cat selecotr-busybox-rc.yaml --- apiVersion : v1 kind : ReplicationController metadata : name : test - rc spec : replicas : 1 selector : app : busybox - prod template : metadata : name : busybox labels : app : busybox - prod spec : containers : - name : busybox - host image : busybox : latest command : [ "sleep" ] args : [ "1000" ] ... [ root@host131 ReplicaSet ] # 结果确认 [root@host131 ReplicaSet]# kubectl create -f selecotr-busybox-rc.yaml replicationcontroller/test-rc