Changed plugin name from exported to private

This commit is contained in:
markturansky
2015-06-29 13:07:22 -04:00
parent 70644b6889
commit fe6399a689
3 changed files with 20 additions and 20 deletions

View File

@@ -52,7 +52,7 @@ func waitForPathToExist(devicePath string, maxRetries int) bool {
// make a directory like /var/lib/kubelet/plugins/kubernetes.io/pod/rbd/pool-image-image
func makePDNameInternal(host volume.VolumeHost, pool string, image string) string {
return path.Join(host.GetPluginDir(RBDPluginName), "rbd", pool+"-image-"+image)
return path.Join(host.GetPluginDir(rbdPluginName), "rbd", pool+"-image-"+image)
}
type RBDUtil struct{}