summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrodrigues3 <grodrigues3@users.noreply.github.com>2017-03-29 14:21:45 -0700
committerGitHub <noreply@github.com>2017-03-29 14:21:45 -0700
commitc0c96ea0586112ee75018fd686dabef8275c5239 (patch)
treeffb63a5fe6650631808c7351b5e75c34c104726f
parentd29a3c05d205cead2dbf1a1e5e7352974c302038 (diff)
parent6ae809a6af397e84a53286c71db81bb6ee1d9a81 (diff)
Merge pull request #486 from yu-song/fix_the_url_show
Fix the error url show in sig-storage/contributing.md
-rw-r--r--sig-storage/contributing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/sig-storage/contributing.md b/sig-storage/contributing.md
index afc1e8f6..34e29703 100644
--- a/sig-storage/contributing.md
+++ b/sig-storage/contributing.md
@@ -1,6 +1,6 @@
### Ramping up on Kubernetes Storage
For folks that prefer reading the docs first, we recommend reading our Storage Docs
-- [The Persistent Volume Framework] (http://kubernetes.io/docs/user-guide/persistent-volumes/)
+- [The Persistent Volume Framework](http://kubernetes.io/docs/user-guide/persistent-volumes/)
- [The new Dynamic Provisioning Proposal](https://github.com/pmorie/kubernetes/blob/7aa61dd0ff3908784acb4fa300713f02e62119af/docs/proposals/volume-provisioning.md) and [implementation](https://github.com/kubernetes/kubernetes/pull/29006)
For folks that prefer a video overview, we recommend watching the following videos:
@@ -31,7 +31,7 @@ A great way to get involved is to pick an issue and help address it. We would lo
### Adding support for a new storage platform in Kubernetes
For folks looking to add support for a new storage platform in Kubernetes, you have several options:
- Write an in-tree volume plugin or provisioner: You can contribute a new in-tree volume plugin or provisioner, that gets built and ships with Kubernetes, for use within the Persistent Volume Framework.
-[See the Ceph RBD volume plugin example] (https://github.com/kubernetes/kubernetes/tree/master/pkg/volume/rbd) or [the AWS Provisioner example](https://github.com/kubernetes/kubernetes/pull/29006)
+[See the Ceph RBD volume plugin example](https://github.com/kubernetes/kubernetes/tree/master/pkg/volume/rbd) or [the AWS Provisioner example](https://github.com/kubernetes/kubernetes/pull/29006)
- Write a FlexVolume plugin: This is an out-of-tree volume plugin which you develop and build separately outside of Kubernetes.
You then install the plugin on every Kubernetes host within your cluster and then [configure the plugin in Kubernetes as a FlexVolume](https://github.com/kubernetes/kubernetes/tree/master/examples/volumes/flexvolume)
- Write a Provisioner Controller: You can write a separate controller that watches for pending claims with a specific selector label on them.