我创建了一个带有以下标签的标签:
kubectl label pods <pod id> color=green
但使用以下方法将其删除:
kubectl label pods bar -color
给予:
unknown shorthand flag: 'c' in -color
有什么建议吗?
答案 0 :(得分:3)
每个kubectl help label
的标签名称末尾都带有破折号:
# Update pod 'foo' by removing a label named 'bar' if it exists.
# Does not require the --overwrite flag.
kubectl label pods foo bar-
所以尝试kubectl label pods bar color-
。