https://github.com/mbtamuli/csi-quickstart
Educational/learning project for Container Storage Interface
https://github.com/mbtamuli/csi-quickstart
csi csi-driver kubernetes
Last synced: 4 months ago
JSON representation
Educational/learning project for Container Storage Interface
- Host: GitHub
- URL: https://github.com/mbtamuli/csi-quickstart
- Owner: mbtamuli
- License: unlicense
- Created: 2023-12-23T13:18:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-07T12:07:09.000Z (over 2 years ago)
- Last Synced: 2024-05-02T01:55:24.594Z (about 2 years ago)
- Topics: csi, csi-driver, kubernetes
- Language: Go
- Homepage:
- Size: 47.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CSI Quickstart
The bare minimum goals are complete! Check out the plugin at [emptyDirClone](./emptyDirClone)
## Goals
- [x] Create a quickstart project for the [CSI specification](https://github.com/container-storage-interface/spec/blob/master/spec.md)
- [x] Easy to read guide summarizing the requirements of a basic CSI plugin simulating [`emptyDir`](https://kubernetes.io/docs/concepts/storage/volumes/#emptydir)
- [x] Code implementing the bare minimum plugin described the guide
- [x] References helpful for learning the supplementary knowledge not directly related to Kubernetes/CSI.
- [x] Document every decision, resource and changes in the project.
# Stretch Goals
- [ ] Examples describing different scenarios. Different branches/subdirectories for each example, that are as much self-contained as possible.
- [ ] Volume created external to Kubernetes, manually.
- [ ] Have a simple API providing a volume that can be invoked by the CSI plugin.
- [ ] Volume from a public cloud provider.