How to delete a node label by command and api?

后端 未结 11 2214
被撕碎了的回忆
被撕碎了的回忆 2021-02-01 00:31

Add label to nodes:

$ kubectl label nodes 10.xx.xx.xx key1=val1 

If I want to delete label(key1=val1) on node(10.xx.xx.xx), how

11条回答
  •  花落未央
    2021-02-01 01:14

    You can remove the label from a single node using the following kubectl command

    kubectl label node 10.xx.xx.xx Key1-

    If you want to remove the label for all the nodes, use the following command

    kubectl label nodes --all Key1-

提交回复
热议问题