How to delete a node label by command and api?

后端 未结 11 2427
被撕碎了的回忆
被撕碎了的回忆 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:02

    create labels for the nodes:

    kubectl label node =allow

    delete above labels from its respecitve nodes:

    kubectl label node -

提交回复
热议问题