본문 바로가기
AEWS2기

3-0-2. CSI(Container Storage Interface)

by yeongki0944 2024. 3. 22.

 

[Fatih Arslan] How to write a Container Storage Interface (CSI) plugin

[gluesys 블로그] Kubernetes CSI 개념 정리 및 실습

[github] container-storage-interface / spec

 

 

[Github] container-storage-interface/spec

container-storage-interface / spec

 

[CSI 구성요소]

CSI (Container Storage Interface) Container Storage Interface 3가지 정의
  • Storage를 제어하는 Plugin
  • Storage(Volume)의 Life Cycle
  • CO와 Plugin 사이의 Interface
CO (Container Orchestration) Orchestration
Plugin CO(k8s)의 명령에 따라 Storage를 제어하는 Plugin(Storage Controller)

  • Controller Plugin
    • 어느 Node에서 동작해도 관계없는 Plugin
    • Storage 중앙 관리 기능
  • Node Plugin
    • Container가 동작하는 모든 Node에서 동작하는 Plugin
    • 특정 Node를 제어하는 역할
  •  

[tistory 뭉게뭉게 클라우드] [Kubernetes] EBS for CSI 드라이버 (CSI란 무엇인가?)

 

Volume(Storage) Lifecycle

 

 

 

CSI Plugin

[gluesys 블로그] Kubernetes CSI 개념 정리 및 실습