본문 바로가기

분류 전체보기73

[CKA] KodeKloud - Multiple Schedulers 안녕하세요, 쯀리입니다.오늘은 Multiple Schedulers에 관해 알아볼게요 https://kubernetes.io/ko/docs/tasks/extend-kubernetes/configure-multiple-schedulers/ 다중 스케줄러 설정쿠버네티스는 여기에서 설명한 스케줄러를 기본 스케줄러로 사용한다. 만일 기본 스케줄러가 사용자의 필요를 만족시키지 못한다면 직접 스케줄러를 구현하여 사용할 수 있다. 이에 더해, 기본kubernetes.io  Quiz.1. What is the name of the POD that deploys the default kubernetes scheduler in this environment?controlplane ~ ➜ k get pods -A | gre.. 2024. 6. 23.
[CKA] KodeKloud - Static PODs 안녕하세요, 쯀리입니다.오늘은 특별한 유형의 Pod인 Static Pods에 관해 알아보겠습니다. https://kubernetes.io/docs/tasks/configure-pod-container/static-pod/ Create static PodsStatic Pods are managed directly by the kubelet daemon on a specific node, without the API server observing them. Unlike Pods that are managed by the control plane (for example, a Deployment); instead, the kubelet watches each static Pod (and restarts it i.. 2024. 6. 23.
[CKA] KodeKloud - DaemonSets 안녕하세요, 쯀리입니다.오늘은 Daemon Sets에 관해 알아볼게요https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/ DaemonSetA DaemonSet defines Pods that provide node-local facilities. These might be fundamental to the operation of your cluster, such as a networking helper tool, or be part of an add-on.kubernetes.io  Daemon Set이란?Daemon이란것을 들어보셨나요?사용자가 직접적으로 제어하지 않고, 백그라운드에서 돌면서 여러 작업을 하는 프로그램을 말합니다.htt.. 2024. 6. 9.