본문 바로가기

CKA &. CKAD/Scheduling

(13)
Practice Test - Node Selectors/Affinity kubectl label nodes = kubectl label nodes node-1 size=large Node Affinity Type은 - requiredDuringSchedulingIgnoredDuringExecution - preferredDuringSchedulingIgnoredDuringExecution 로 부르는 두 가지 종류의 노드 어피니티가 있다. 전자는 파드가 노드에 스케줄되도록 반드시 규칙을 만족해야 하는 것(nodeSelector 와 같으나 보다 표현적인 구문을 사용해서)을 지정하고, 후자는 스케줄러가 시도하려고는 하지만, 보증하지 않는 선호(preferences) 를 지정한다는 점에서 이를 각각 "엄격함(hard)" 과 "유연함(soft)" 으로 생각할 수 있다. 이름의 "Ig..
Practice Test - Taints and Tolerations ㅁ 기본 설명 Taints - Node (Taints 는 Node에 설정하여 Tolerant 설정이 되어 있지 않는 Pod의 스케줄을 막는다.) kubectl tain nodes node-name key=value:taint-effect 아래는 설정 예제 kubectl taint nodes node1 app=blue:NoSchedule NoSchedule이 필요한 이유는 아래와 같이 Master Node에 다른 서비스 Pod들이 스케줄 되는 것을 막는 것이 가장 적절한 예로 보임 [Practice Test] ㅁ How many Nodes exist on the system? kubectl get nodes ㅁ Do any taints exist on node01? kubectl describe node ..
Practice Test - Labels and Selectors ㅁ We have deployed a number of PODs. They are labelled with 'tier', 'env' and 'bu'. How many PODs exist in the 'dev' environmnet? Use selectors to filter the output kubectl get pods --show-labels kubectl get pods --selector env=dev or kubectl get pods -l env=dev or kbuectl get pods -l env=dev --no-headers | wc -l ㅁ How many PODs are in the "finance" business unit ("bu")" kubectl get pods --selec..
Labels and Selectors Pod-definition.yaml apiVersion: v1 kind: Pod metatdata: name: simple-webapp labels; app: App1 function: Front-end spec: containers: - name: simple-webapp image: simple-webapp ports: - containerPort: 8080 Select kubectl get pods --selector app=App1 Replicaset-definition.yaml apiVersion: apps/v1 kind: ReplicaSet metadata: name: simple-webapp labels: app: App1 function: Front-end annotations: build..
Manual Scheduling ㅁ A pod definition file nginx.yaml is given. Create pod using the file. kubectl apply -f nginx.yaml ㅁ What is the status of the created POD? kubectl get pods ㅁ Why is the POD in a pending state? kubectl -n kube-system get pods kubectl describe pod nginx ㅁ Manually schedule the pod on node01 apiVersion: v1 kind: Pod metadata: name: nginx spec: nodeName: node01 containers: - image: nginx name: ngi..