kubernetes

DevOps/Kubernetes

[Kubernetes][CKA] Kube Proxy

더보기 Within Kubernetes Cluster, every pod can reach every other pod, this is accomplish by deploying a pod networking cluster to the cluster. Kube-Proxy is a process that runs on each node in the kubernetes cluster. pod network ( service cannot connected to pod network because it is not real - no interface and no process - only in the kubernetes memory => how to use ? => use kube-proxy ) every po..

DevOps/Kubernetes

[Kubernetes][CKA] Kubelet

Kubelet is the sole point of contact for the kubernetes cluster - The kubelet will create the pods on the nodes, the scheduler only decides which pods goes where. - register node - create pods - monitor node and pods Kubelet은 쿠버네티스 클러스터와 개별 노드 간의 소통을 담당하며, 파드의 생명주기 관리와 노드 상태의 모니터링을 수행한다. Kubelet의 역할 Kubelet은 쿠버네티스 클러스터와 노드 간의 유일한 접점 Kubelet은 노드에 파드를 생성하며, 스케줄러는 파드가 어느 노드에 배치될지만 결정 노드 등록 Kubelet..

DevOps/Kubernetes

[Kubernetes][CKA] Kube Scheduler

kube-scheduler is responsible for scheduling pods on nodes. The kube-scheduler is only responsible for deciding which pod goes on which node. It doesn't actually place the pod on the nodes, that's the job of the kubelet. why do you need a scheduler? - filter nodes - rank nodes resource requirements and limits taints and tolerations node selectors/affinity Kube-Scheduler는 쿠버네티스 클러스터에서 파드의 효율적인 배치..

DevOps/Kubernetes

[Kubernetes][CKA] Kube Controller Manager

Kube Controller Manager manages various controllers in kubernetes. - In kubernetes terms, a controller is a process that continuously monitors the state of the components within the system and works towards bringing the whole system to the desired functioning state. Node Contoller responsible for monitoring(using kube-apiserver) the state of the Nodes and taking necessary actions to keep the app..

DevOps/Kubernetes

[Kubernetes][CKA] Kube-API Server

더보기 kubectl ( kube-apiserver - ETCD Cluster - kuber-api server) or api kube scheduler - kube-apiserver - kubelet ( worker nodes ) kubectl is center of all the different takes needs to be done to make a change in the cluster kube-api server authenticate user validate retrieve data update ETCD scheduler kubelet kube-apiserver.service options kubeadmin kube-api 서버의 중심 역할 kube-apiserver는 etcd 데이터 저장..

DevOps/Kubernetes

[Kubernetes][CKA] ETCD

Overview of ETCD Definition: ETCD is a distributed, reliable key-value store that is simple, secure, and fast. It is primarily used in clustered environments for configuration and state management. Key-Value Store Explained: Unlike traditional databases that use tables, ETCD stores data in a key-value format. Each key-value pair (or 'document') can have a different structure, and changes to one ..

DevOps/Kubernetes

[Kubernetes][CKA] Core Concepts - Cluster Architecture 개요 및 Docker vs ContainerD

Cluster Architecture 개요 목적 : 자동화된 방식으로 app 을 컨테이너 형태로 호스팅 → Why ? 응용 프로그램의 많은 인스턴스를 쉽게 배포하고, 응용프로그램 내 다양한 서비스 간의 통신이 가능 쿠버네티스 클러스트는 노드의 집합이다. 노드는 on-premise 또는 클라우드, 컨테이너 일 수 있다. 노드의 종류에는 워커노드와 마스터 노드가 있다. 관계 마스터 노드는 클러스터의 전반적인 관리와 조정을 담당하며, 워커 노드는 실제 컨테이너를 실행하는 역할 마스터 노드의 컴포넌트들은 워커 노드에 있는 애플리케이션의 배포, 관리 및 스케줄링을 조정 kubelet은 워커 노드에서 실행되며, kube-apiserver를 통해 마스터 노드와 통신 kube-apiserver는 kubelet의 요청을..

DevOps/Kubernetes

[Kubernetes][CKA] 개요

개요 $395 계속 가격이 올라감 시험을 볼 생각이 있으면 미리 사두는 편이 좋을 것 같다 온라인 시험 ( 감독관 존재 ) 12개월 내에 재응시 가능 hans-on (실습) 시험 기술이 어떻게 동작하는지 알아야 함 kubernetes 공식 document 항시 확인 가능 암기가 많이 필요하진 않음 상세내용 CLI 실습 문제 2시간 Domain Weight Cluster Architecture, Installation & Configuration 25% Workloads & Scheduling 15% Services & Networking 20% Storage 10% Troubleshooting 30% Cluster Architecture, Installation & Configuration Kuberne..

박한결
'kubernetes' 태그의 글 목록