Kubernetes

Kubernetes namespace

ducku 2022. 1. 5. 13:28

*namespace
-클러스터하나를 여러개의 논리적인 단위로 나눠서 사용
-쿠버네티스 클러스터 하나를 여러 팀이나 사용자가 함께 공유
-용도에 따라 실행해야하는 앱을 구분할때 사용

*namespace 생성 command
kubectl create namespace blue
kubectl get namespaces
kubectl create namespace green --dry-run -o yaml > green.yaml
kubectl create -f green.yaml

*namespace 관리 command
kubectl get namespace
kubectl delete namespace

'Kubernetes' 카테고리의 다른 글

H/W resource 관리  (0) 2022.01.07
livenessProbe  (0) 2022.01.07
Kubernetes Component  (0) 2022.01.05
kubectl command  (0) 2021.12.03
kubernetes 구성  (0) 2021.12.03