kubernetes-handbook/concepts/open-interfaces.md

11 lines
697 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 开放接口
Kubernetes作为云原生应用的的基础调度平台相当于云原生的操作系统为了便于系统的扩展Kubernetes中开放的以下接口可以分别对接不同的后端来实现自己的业务逻辑
- **CRIContainer Runtime Interface**:容器运行时接口,提供计算资源
- **CNIContainer Network Interface**:容器网络接口,提供网络资源
- **CSIContainer Storage Interface**):容器存储接口,提供存储资源
以上三种资源相当于一个分布式操作系统的最基础的几种资源类型而Kuberentes是将他们粘合在一起的纽带。
![开放接口](../images/open-interfaces.jpg)