Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 5.94 KB

CONTRIBUTING.md

File metadata and controls

45 lines (36 loc) · 5.94 KB

Ramping up on Kubernetes Storage

We recommend the following presentations, docs, and videos to help get familiar with Kubernetes Storage concepts.

Date Title Link Description
2020 November 20 Intro & Deep Dive: Kubernetes SIG-Storage Video An overview and update of SIG Storage by Xing Yang and Michelle Au at KubeCon/CloudNativeCon NA 2020.
2020 November 20 Intro & Deep Dive: Kubernetes Data Protection WG Video An overview of Data Protection WG by Xing Yang and Xiangqian Yu at KubeCon/CloudNativeCon NA 2020.
2020 November 18 Beyond File and Block Storage in Kubernetes Video An introduction of Container Object Storage Interface (COSI) by Sidhartha Mani at KubeCon/CloudNativeCon NA 2020.
2020 December 10 Kubernetes 1.20: Kubernetes Volume Snapshot Moves to GA Blog post Overview of Volume Snapshots in Kubernetes at GA.
- Persistent Volume Framework Doc Public user docs for Kubernetes Persistent Volume framework.
2018 May 03 SIG Storage Intro Video An overview of SIG Storage By Saad Ali at KubeCon/CloudNativeCon EU 2018.
2018 May 04 Kubernetes Storage Lingo 101 Video An overview of various terms used in Kubernetes storage and what they mean by Saad Ali at KubeCon/CloudNativeCon EU 2018.
2017 May 18 Storage Classes & Dynamic Provisioning in Kubernetes Video Intro to the basic Kubernetes storage concepts for users (direct volume reference, PV/PVC, and dynamic provisioning).
2017 March 29 Dynamic Provisioning and Storage Classes in Kubernetes Blog post Overview of Dynamic Provisioning and Storage Classes in Kubernetes at GA.
2017 March 29 How Kubernetes Storage Works Slides Overview for developers on how Kubernetes storage works for KubeCon/CloudNativeCon EU 2017 by Saad Ali
2017 February 17 Overview of Dynamic Provisioning for SIG Apps Video Overview of Storage Classes and Dynamic Provisioning for SIG Apps
2016 October 7 Dynamic Provisioning and Storage Classes in Kubernetes Blog post Overview of Dynamic Provisioning and Storage Classes in Kubernetes at Beta.
2016 July 26 Overview of Basic Volume for SIG Apps Video Overview of Basic Volume for SIG Apps
2016 March 25 The State of State Video The State of State at KubeCon/CloudNativeCon EU 2016 by Matthew Bates
2016 March 25 Kubernetes Storage 101 Video Kubernetes Storage 101 at KubeCon/CloudNativeCon EU 2016 by Erin Boyd

Keep in mind that these artifacts reflect the state of the art at the time they were created. In Kubernetes we try very hard to maintain backwards compatibility, but Kubernetes is a fast moving project and we do add features going forward and attending the Storage SIG meetings and the Storage SIG Google group are both good ways of continually staying up to speed.

How to help

We love having folks help in any capacity! We recommend you start by reading the overall Kubernetes contributor's guide

Helping with Features

If you have a feature idea, please submit a feature proposal PR first and put it on the Storage SIG Meeting Agenda. Our PR review bandwidth is fairly small, as such, we strongly recommend that you do not start writing the implementation before you've discussed the feature with the community. This helps the community understand what you're trying to do with the proposal and helps the community and you work through the approach until there is consensus. The community then will also be able to communicate with you how soon they will be able to review your proposal PR, to set expectations. However, generally speaking once the your proposal PR is merged, your implementation PR review and merge should go fairly quickly as the review is focused on the implementation quality and not what you are proposing. We are really trying to improve our test coverage and documentation, so please include functional tests, e2e tests and documentation in your implementation PR.

Helping with Issues

A great way to get involved is to pick an issue and help address it. We would love help here. Storage related issues are listed here.

Adding support for a new storage platform in Kubernetes

For folks looking to add support for a new storage platform in Kubernetes, take a look of the CSI Drivers Doc. The CSI Drivers Doc website documents how to develop, deploy, and test a Container Storage Interface (CSI) driver on Kubernetes.

Also see here for deprecation notices regarding in-tree volume plugin and out-of-tree FlexVolume driver.