summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKubernetes Submit Queue <k8s-merge-robot@users.noreply.github.com>2017-08-24 13:16:20 -0700
committerGitHub <noreply@github.com>2017-08-24 13:16:20 -0700
commitafd2848673bc0281e307c1930a3c81d69f9db46b (patch)
treece9bc07aca81ead628dc46f829c3f75879786b4d
parent5d5678af2dd46a580c8bdfb6a35d78f1568f8005 (diff)
parent8a5c032aefc80b837933b19aa2ad0e05bfb29f00 (diff)
Merge pull request #981 from mykaul/patch-1
Automatic merge from submit-queue Remove getvolume, as it is not supported and ignored Based on discussion on kubernetes-sig-storage: Some drivers implemented getvolume, some didn't[4]. Is it expected to be a name of an existing volume on the storage? Can nodename+volumename be considered unique? [Chakri] GetVolumeName is not supported and is ignored. You don’t have to implement it. [4] https://github.com/kubernetes/kubernetes/commit/7885aaf6896d66a69658a9f55cd6063488ad3e06
-rw-r--r--contributors/devel/flexvolume.md7
1 files changed, 0 insertions, 7 deletions
diff --git a/contributors/devel/flexvolume.md b/contributors/devel/flexvolume.md
index dd1eff08..00049ae9 100644
--- a/contributors/devel/flexvolume.md
+++ b/contributors/devel/flexvolume.md
@@ -27,13 +27,6 @@ See [Driver output](#driver-output) for the capabilities map format.
<driver executable> init
```
-#### Get volume name:
-Get a cluster wide unique volume name for the volume. Called from both Kubelet & Controller manager.
-
-```
-<driver executable> getvolumename <json options>
-```
-
#### Attach:
Attach the volume specified by the given spec on the given host. On success, returns the device path where the device is attached on the node. Nodename param is only valid/relevant if "--enable-controller-attach-detach" Kubelet option is enabled. Called from both Kubelet & Controller manager.