13. Securing Cluster Nodes and the Network
A pod with hostNetwork: true uses the node’s network interfaces instead of its own. (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-13) 주요 내용 노드의 default Linux namespace 사용...
A pod with hostNetwork: true uses the node’s network interfaces instead of its own. (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-13) 주요 내용 노드의 default Linux namespace 사용...
Roles grant permissions, whereas RoleBindings bind Roles to subjects (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-12) 주요 내용 Authentication 과 ServiceAccount 에 대한 이해 RBA...
The chain of events that unfolds when a Deployment resource is posted to the API server (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-11) 주요 내용 Kubernetes 클러스터를 구성하는 컴포넌트...
A stateful pod may be rescheduled to a different node, but it retains the name, hostname, and storage. (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-10) 주요 내용 StatefulSet...
Rolling update of Deployments (출처: livebook.manning.com/book/kubernetes-in-action/chapter-9) 주요 내용 Deployment 를 사용하여… 무중단 배포를 하는 방법 롤백하는 방법 9.1 Updating applications...
Using the files from the default-token Secret to talk to the API server (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-8) 주요 내용 Pod 나 컨테이너의 metadata 를 전달하는 방법 컨테이너 안의 앱이...
Combining a ConfigMap and a Secret to run your fortune-https pod (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-7) 거의 대부분의 앱은 설정(configuration)이 필요하다. 개발 서버, 배포 서버의 설정 사항 (접속하...
The complete picture of dynamic provisioning of PersistentVolumes. (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-6) 컨테이너가 재시작되면 기존 작업 내역이 모두 사라지게 될 수 있으므로, 컨테이너의 작업 내역을 저장하고 ...
Using kubectl exec to test out a connection to the service by running curl in one of the pods. (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-5) 많은 앱들이 request (요청) 을 받아 서비스를 ...
ReplicationController recreating pods. (출처: https://livebook.manning.com/book/kubernetes-in-action/chapter-4) 3장에서는 pod 를 직접 관리하는 방법에 대해 살펴봤다. 하지만 실무에서는 pod 의 관리가 자동으로 되길 원한다. 이를 위해 ReplicationCon...