[Study Jam] Managing Deployments Using Kubernetes Engine - 2
Study/Study Jam2022. 3. 24. 22:54[Study Jam] Managing Deployments Using Kubernetes Engine - 2

✔️ Rolling update Deployments는 Rolling Update 메커니즘을 통해 이미지를 새 버전으로 업데이트할 수 있다. Deployment가 새 버전으로 업데이트될 때, 새 ReplicaSet을 생성하고 이전 ReplicaSet의 복제본 수를 줄이면서 새 ReplicaSet의 복제본 수를 천천히 늘린다. ✔️ Trigger a rolling update Deployment를 업데이트하려면 다음을 실행한다. kubectl edit deployment hello Deployment의 컨테이너의 섹션의 이미지를 변경한다. ... containers: image: kelseyhightower/hello:2.0.0 ... 한번 에디터에서 저장하면 업데이트된 Deployment가 Cluster..

image