kubectl 어노테이션 붙였다 떼기

(Kubectl 애노테이션 붙였다 떼기에서 넘어옴)

1 개요[ | ]

kubectl 어노테이션 붙였다 떼기
$ kubectl annotate ns foo hello=world
namespace/foo annotated
$ kubectl get ns foo -ojson | jq '.metadata.annotations'
{
  "hello": "world"
}
$ kubectl annotate ns foo hello-
namespace/foo annotated
$ kubectl get ns foo -ojson | jq '.metadata.annotations'
null

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}