# 存储插件

Kubernetes 已经提供丰富的 [Volume](https://kubernetes.feisky.xyz/concepts/objects/volume) 和 [Persistent Volume](https://kubernetes.feisky.xyz/concepts/objects/persistent-volume) 插件，可以根据需要使用这些插件给容器提供持久化存储。

Kubernetes v1.33 中还引入了新的 image volume 功能（Beta），允许将容器镜像作为 volume 挂载，详见 [Volume 文档](https://kubernetes.feisky.xyz/concepts/objects/volume#image)。

如果内置的这些 Volume 还不满足要求，则可以使用 [FlexVolume](https://kubernetes.feisky.xyz/extension/volume/flex-volume) 或者 [容器存储接口 CSI](https://kubernetes.feisky.xyz/extension/volume/csi) 实现自己的 Volume 插件。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://kubernetes.feisky.xyz/extension/volume.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
