deployments2 [따배쿠CKA]6. Deployment & Pod Scale * 작업 클러스터 설정 kubectl config use-context kubernetes-admin@kubernetes * 사전 작업 k get ns k create ns devops Q. Pod Scale out 작업 클러스터: k8s Expand the number of running Pods in "eshop-order" to 5 - namespace: devops - deployment: eshop-order 1. 문제에 맞는 상황을 조회 : namespace 가 있는지, deployment 가 배포가 되어 있는지 확인 k get ns devops k get deployments -n devops k get deployments -n devops 2. rs 늘리기 * 샘플과 사전 조건이 달라 현.. 2022. 8. 8. [cka]kodekloud-Deployments 이번에는 Deployments 관련된 예제를 풀어보도록 하겠습니다. 1. How many PODs exist on the system? # k get pods A) 0 2. How many ReplicaSets exist on the system? # k get rs A) 0 3.How many Deployments exist on the system? # k get deployments.apps : deployments 의 약어는 ds A) 0 4. How many Deployments exist on the system now? # k get deployments.apps 5. How many ReplicaSets exist on the system now? # k get rs A) 1 6.How m.. 2022. 6. 7. 이전 1 다음