绑定完请刷新页面
取消
刷新

分享好友

×
取消 复制
K8S 将 pod 调度到指定 nodes 上运行
2023-04-19 17:55:53

K8S将pod调度到指定nodes上运行

两种方式

方式1:强制固定

  • 编写yaml,添加参数(node节点名)
vim text.yaml
nodeName: worker01  #添加节点名参数
  • 具体yaml
apiVersion: v1
kind: Pod
metadata:
  name: text
  namespace: text
spec:
  nodeName: worker01   #添加节点名参数
  containers:
  - name: hello
    image: centos:7
    imagePullPolicy: IfNotPresent
    command: ["bash","-c","--"]
    args: ["while true; do sleep 3;done;"]
  • 创建改pod
kubectl create -f text.yaml



  • 查看pod,运行成功



  • 查看是否在worker01上运行
kubectl describe pod text -n text



方式2:使用标签选择器(label-selector)

  • 给节点添加标签
kubectl label nodes worker03 type=node_type



  • 查看标签是否添加成功
kubectl get node --show-labels   #获取所有节点的标签,得到worker03设置的标签



  • 编写yaml创建pod,添加标签选择器参数
vim text1.yaml
  • 内容如下
apiVersion: v1
kind: Pod
metadata:
  name: text1
  namespace: text
spec:
  nodeSelector:    #标签选择器参数
    type: node_type #刚刚添加的类型
  containers:
  - name: hello1
    image: centos:7
    imagePullPolicy: IfNotPresent
    command: ["bash","-c","--"]
    args: ["while true; do sleep 3;done;"]



  • 查看是否运行
kubectl get pod -n text



  • 查看是否成功在worker03上运行
kubectl describe pod text1 -n text


分享好友

分享这个小栈给你的朋友们,一起进步吧。

K8s
创建时间:2020-05-14 13:51:19
K8s技术分享
展开
订阅须知

• 所有用户可根据关注领域订阅专区或所有专区

• 付费订阅:虚拟交易,一经交易不退款;若特殊情况,可3日内客服咨询

• 专区发布评论属默认订阅所评论专区(除付费小栈外)

栈主、嘉宾

查看更多
  • 飘絮絮絮丶
    栈主
  • gaokeke123
    嘉宾
  • LCR_
    嘉宾

小栈成员

查看更多
  • at_1
  • zhengchengming
  • chenglinjava0501
  • hansen_hello2019
戳我,来吐槽~