kubernetes 将pod运行在某些特定的节点上,给节点打标签
时间:2023-03-06 11:36 来源:linux.it.net.cn 作者:IT
给节点打上标签:
kubectl label node <node_name> GPU=true #打上标签 GPU=true
在创建pod的yaml文件时: 添加 nodeSelector
这样pod会在有标签 GPU=true 的node上面运行
(责任编辑:IT)
给节点打上标签: kubectl label node <node_name> GPU=true #打上标签 GPU=true 在创建pod的yaml文件时: 添加 nodeSelector 这样pod会在有标签 GPU=true 的node上面运行 (责任编辑:IT) |