본문 바로가기
SMALL

전체 글52

엘리네 여행일기 https://store.steampowered.com/app/1450020/_/ Save 30% on Ellie's Travel Diary on Steam Ellie’s Travel Diary is a sightseeing VR game where you can travel to miniature versions of Korea’s famous landmarks with Ellie and his family and immerse yourself in numerous experiences. Switching between 3rd-person to 1st-person views, you can freel store.steampowered.com 장르 : 캐주얼 어드벤처 플레이타임 : 2시간 이내 한글 지원.. 2021. 2. 15.
Deployments - Deployment status Deployment status Deployment는 progressing, complete, fail to progress 3가지 lifecycle을 가짐. Progressing Deployment progressing lifecycle에서 아래 tasks를 수행. rs 교체. 새로운 ReplicaSet 생성 새로운 rs에 scale up 이전 rs에 scale down 새로운 Pods가 최소 준비 시간동안 준비되어 이용 가능해짐 Complete Deployment k8s는 Deployment가 아래 상태일 때 complete lifecycle로 본다. 요청한 update가 모두 적용 모든 replicas가 이용 가능 running 중인 old replicas가 없음 kubectl rollout sta.. 2021. 2. 10.
Deployments - Pausing and Resuming a Deployment Pausing and Resuming a Deployment 운영 중인 Deployment를 pause 시킬 수 있음. pause한 뒤 실행시키는 update는 반영되지 않고 대기된다. 이후 resume했을 때 모든 변경 사항이 새로운 ReplicaSet에 반영되게 된다. 2021. 2. 10.
Deployments - Scaling a Deployment Scaling a Deployment 아래 명령어로 sacle 할 수 있음. kubectl scale deployment.v1.apps/nginx-deployment --replicas=10 기존 desired를 넘어가는 replicas도 되나? 됨. 어차피 새로운 rs로 만드는 거라. horizontal Pod autoscaling이 활성화되어 있다면 아래와 같이 cpu 사용율 기반의 autoscaling도 설정 가능. kubectl autoscale deployment.v1.apps/nginx-deployment --min=10 --max=15 --cpu-percent=80 Proportional scaling rollout 도중 autoscaler가 scale 할 경우 Deployment Contr.. 2021. 2. 10.