Section 5-1. Rolling Updates and Rollbacks
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section05. Application Lifecycle Management Rolling Updates and Rollbacks 배포 전략 ...
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section05. Application Lifecycle Management Rolling Updates and Rollbacks 배포 전략 ...
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section03. Scheduling DemonSets DemonSet은 모든(또는 일부) 노드가 파드를 실행하도록 한다. 만...
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section03. Scheduling Node Selectors 특정 노드에서만 작동하도록 파드의 한계를 설정하는 두 가지 방법이 있다. ...
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section03. Scheduling Taints는 노드에 설정하며, Toleration은 Pod에 설정한다. Taints (노드 설정) ...
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section03. Scheduling Labels 시스템에 수많은 파드가 생길 경우 그것들을 조직화하는 메커니즘이 필요하다. 파드에서 개별적으로...
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section02. Core Concepts Service 파드는 특성상 생성될 때마다 내부 IP 주소가 계속 변하므로 고정된 엔드포인트로 호출이 어...
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section02. Core Concepts ReplicationController 지정된 수의 파드 복제본이 실행될 수 있도록 한다. 즉 수동으...
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section02. Core Concepts Deployment ReplicaSet을 생성하는 디플로이먼트를 정의할 수 있고, 배포 작업을 좀 더 세...
udemy의 Certified Kubernetes Administrator (CKA) with Practice Tests 강의 및 쿠버네티스 인 액션 (마르코 룩샤)를 참고하여 정리한 글입니다. Section02. Core Concepts Cluster Architecture 쿠버네티스 클러스터는 물리적 또는 가상의 노드 집합으로 구성되...
Part01. 코틀린 코루틴 이해하기 코루틴의 동작 과정 kotlin coroutine 에서는 이런 CPS 로 각 subroutine 들을 제어한다. subroutine 은 caller 의 context 로 돌아가는 대신 정의된 continuation 에 의해 제어( kotlin coroutine 은 state machine 을 통해서 su...