在 Kubernetes 中删除注释是否有不同于 kubectl edit 的方法?
kubectl edit
我不喜欢kubectl edit的交互式的方法。我更喜欢能在脚本中能直接使用的方式。
在 kubectl annotate 的注释末尾使用减号 -。
kubectl annotate
-
例子:
kubectl annotate service shopping-cart prometheus.io/scrape-
从 shopping-cart 服务中删除注释 prometheus.io/scrape。
shopping-cart
prometheus.io/scrape
找不到想要的答案?提一个您自己的问题。
0 声望
这家伙太懒,什么都没留下
在
kubectl annotate
的注释末尾使用减号-
。例子:
kubectl annotate service shopping-cart prometheus.io/scrape-
从
shopping-cart
服务中删除注释prometheus.io/scrape
。你的答案