summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork8s-ci-robot <k8s-ci-robot@users.noreply.github.com>2018-05-11 10:52:29 -0700
committerGitHub <noreply@github.com>2018-05-11 10:52:29 -0700
commit400cadca4820d3a32c67b528e6658d98526ff417 (patch)
treeb81d239dfc155d813cd476ce314ef2244b51f9d0
parenta0a8de8d5f9e51418edd3b47a5559498cafc85d9 (diff)
parent1a5277642cef37dd83273236ddf93bde67c342e1 (diff)
Merge pull request #2144 from kindule/master
Grammatical errors fix of the container-storage-interface.md
-rw-r--r--contributors/design-proposals/storage/container-storage-interface.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/design-proposals/storage/container-storage-interface.md b/contributors/design-proposals/storage/container-storage-interface.md
index 1522539a..27e10bd1 100644
--- a/contributors/design-proposals/storage/container-storage-interface.md
+++ b/contributors/design-proposals/storage/container-storage-interface.md
@@ -314,7 +314,7 @@ The attach/detach controller,running as part of the kube-controller-manager bina
When the controller decides to attach a CSI volume, it will call the in-tree CSI volume plugin’s attach method. The in-tree CSI volume plugin’s attach method will do the following:
1. Create a new `VolumeAttachment` object (defined in the “Communication Channels” section) to attach the volume.
- * The name of the of the `VolumeAttachment` object will be `pv-<SHA256(PVName+NodeName)>`.
+ * The name of the `VolumeAttachment` object will be `pv-<SHA256(PVName+NodeName)>`.
* `pv-` prefix is used to allow using other scheme(s) for inline volumes in the future, with their own prefix.
* SHA256 hash is to reduce length of `PVName` plus `NodeName` string, each of which could be max allowed name length (hexadecimal representation of SHA256 is 64 characters).
* `PVName` is `PV.name` of the attached PersistentVolume.