Part 8/26: Deployment와 롤링 업데이트
1. ReplicaSet 1.1 ReplicaSet이란? 원문 (kubernetes.io - ReplicaSet): A ReplicaSet’s purpose is to maintain a stable set of replica Pods running at any given time. As such, it is often used to guar...
1. ReplicaSet 1.1 ReplicaSet이란? 원문 (kubernetes.io - ReplicaSet): A ReplicaSet’s purpose is to maintain a stable set of replica Pods running at any given time. As such, it is often used to guar...
1. Namespace 개념 1.1 Namespace란? 원문 (kubernetes.io - Namespaces): Namespaces provide a mechanism for isolating groups of resources within a single cluster. Names of resources need to be unique ...
1. Label 개념 1.1 Label이란? 원문 (kubernetes.io - Labels and Selectors): Labels are key/value pairs that are attached to objects, such as pods. Labels are intended to be used to specify identifying...
1. Pod 개념 1.1 Pod란? 원문 (kubernetes.io - Pods): Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod is a group of one or more containers, wit...
1. kubectl 기본 구조 원문 (kubernetes.io - kubectl Overview): kubectl is a command line tool for communicating with a Kubernetes cluster’s control plane, using the Kubernetes API. For configuration, ...
1. 선언적 시스템의 핵심: 원하는 상태(Desired State) Kubernetes의 가장 핵심적인 철학은 선언적(Declarative) 시스템이다. 사용자는 “어떻게 할지”가 아니라 “최종 상태가 어떠해야 하는지”를 선언한다. flowchart TB subgraph Imperative["명령형 (Imperative)"] ...
1. Kubernetes 클러스터 전체 아키텍처 원문 (kubernetes.io - Cluster Architecture): A Kubernetes cluster consists of a set of worker machines, called nodes, that run containerized applications. Every cluster...
1. 컨테이너 이전의 세계 1.1 전통적인 배포 방식의 한계 flowchart TB subgraph Server["Physical Server"] subgraph Apps["Applications"] A["App A<br/>(Java)"] B["App B<br/>...
목차 Part 1: Docker 기초 Docker 개요 Docker 이미지 Dockerfile 작성 Part 2: Docker 컨테이너 Docker 컨테이너 관리 Docker 네트워킹 Docker 볼륨과 스토리지 Part 3: Docker 고급 Docker Compose Docker 레지스트리 Doc...
개요 최근 Kubernetes 오픈소스 프로젝트에 기여한 PR #133964가 v1.36 마일스톤에 병합되었다. 이 글에서는 DRA(Dynamic Resource Allocation) 플러그인의 gRPC 연결 관리 방식을 개선한 과정과 그 배경을 다룬다. Dynamic Resource Allocation(DRA)란? DRA의 등장 배경 Dyn...