Zzong's Notes

Home

❯

server

❯

Kubernetes rolling updates

Kubernetes rolling updates

2026년 6월 14일1 min read

  • Reference
    • https://medium.com/platformer-blog/enable-rolling-updates-in-kubernetes-with-zero-downtime-31d7ec388c81
    • recoteam

함께 보면 좋은 글

deployment(Kubernetes)

Once you have a running Kubernetes cluster, you can deploy your containerized applications on top of it.

NodePort

NodePort nodeport 를 구성하기 위한 yaml 예시: helloworld-nodeport.yaml apiVersion: v1 kind: Service metadata: name: helloworld-nodeport spec: type: NodePort ports: - port: 8080...

Container and container orchestrator

Container and Container Orchestrator Virtual Machine 과 Container 의 차이점 VM 가상화는 일반적으로 linux kernel 위에 hypervisor 가 올라가고, 그 위에 guest OS 와 사용자 app 이 올라감 반면, container 는 linux...

Kubernetes

Kubernetes Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services, that facilitates both declarative configuration and...

tip(Kubernetes)

Pods A.1) 강제로 내리기 kubectl delete pods <팟이름> grace-period=0 force A.2) 외부 연결하기 service 에서 NodePort 를 설정하고, pod 이 어떤 노드에 할당되어 있는지 확인한 뒤에, 해당 노드의 internal ip:port num 형식으로...

Kubernetes Configuration

각 configuration 파일은 3 개의 파트로 구성되어 있음 metadata label: service 의 selector 가 해당 label 의 이름을 선택하도록 한다.

pod(Kubernetes)

Kubernetes Pod A Pod is the basic execution unit of a Kubernetes application.

docker

Docker B) Related C) References.

StatefulSet

Statefulset a Kubernetes resource object that manages a set of pods with unique identities.

Kubernetes Node

Kubernetes Node A Node is a worker machine in Kubernetes and may be either a virtual or a physical machine, depending on the cluster.