본문 바로가기
IT Tech/Cloud Native

[CKA] Labels and Selectors

by _><- 2022. 3. 8.
반응형

 # 여러 조건의 리소스를 검색할 때, 공백없이 selector의 파라미터로 값을 입력

kubectl get all --selector bu=test,tier=frontend,env=dev

 

# Node에 라벨설정

kubectl label node node1 color=red

반응형