Skip to content

Commit

Permalink
add cni & csi
Browse files Browse the repository at this point in the history
  • Loading branch information
idoyo7 committed Jan 6, 2025
1 parent c17ff9d commit 2c7d40a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
9 changes: 8 additions & 1 deletion posts/chapter5/EKS_Network.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Network On Kubernetes

쿠버네티스에서 사용하는 Network 표준인 CNI와
AWS에서 제공하는 CNI인 AWS VCP CNI에 대해 학습합니다.

---

### 네트워크

Expand Down Expand Up @@ -89,7 +95,8 @@ NodePort는 pod가 할당되어있는 node의 특정 포트를 open하여 외부
아무 노드에 해당 NodePort로 던져도, 실제 Service 뒤에 연결된 Pod 까지 요청이 도달합니다!
그치만, 실제 pod가 배포되어있지 않은 노드로 네트워크 요청을 하게되면 실제 pod가 있는 노드에 요청을 재차 하는 방식으로 구성되어있어 추가 hop이 발생 될 수 있습니다.

예시) 노드 2에 어플리케이션이 배포되어있음.
예시) 노드 2에만 어플리케이션이 배포되어있다면?

```
graph LR
    Client[Client]
Expand Down
4 changes: 4 additions & 0 deletions posts/chapter6/EKS_Storage.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Storage On Kubernetes

쿠버네티스에서 사용하는 Storage 표준과 AWS에서 제공하는 Storage 유형들을 학습합니다.

---

컨테이너는 종료되면 안에있던 파일 스토리지가 증발하는 ephemeral 한 스토리지를 갖고있습니다.

Expand Down

0 comments on commit 2c7d40a

Please sign in to comment.