Replicaset(2)
-
[Kubernetes] ๊ธฐ๋ง๊ณ ์ฌ ์ ๋ฆฌ 2
Chap19. Controllers - ์ฟ ๋ฒ๋คํฐ์ค๋ ์ฌ๋ฌ SW๋ค์ ์งํฉ์ฒด * Controllers - take care of routine tasks to ensure the desired state (์ํ์ผ) of the cluster matches the observed state (ํ์ํ) - Each controller is responsible for a particular resource in the Kubernetes - ์ฌ๋์ด ๊ฐ์ ํ๋ ์ผ์ด ์ค์ด๋ฆ - ์ง์ ์์ผ๋ก ์ ๋ ฅํ์ง ์์๋, ์๋ง์ ์ฟ ๋ฒ๋คํฐ์ค๋ฅผ ๊ตฌ์ฑํ๋ SW๋ค์ด ๊ฐ๋ฐ์๊ฐ ์๊ตฌํ๋ ํ๊ฒฝ(desired state)์ observed state๋ก ์ต๋ํ ์ ๊ณตํด์ผ ํจ / ๊ฐ๋ฐ์๋ ์ฟ ๋ฒ๋คํฐ์ค์๊ฒ ๋ถํํจ * Label โ key-value p..
2024.06.25 -
[Kubernetes] ReplicaSet Controller
2024. 05. 27 Monday https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ ReplicaSetA ReplicaSet's purpose is to maintain a stable set of replica Pods running at any given time. Usually, you define a Deployment and let that Deployment manage ReplicaSets automatically.kubernetes.io # simple-pod.yamlapiVersion: v1kind: Podmetadata: name: my-little-podspec: containers: - name..
2024.05.27