func (ed *emptyDir) GetPath() string { name := emptyDirPluginName if ed.legacyMode { name = emptyDirPluginLegacyName } return ed.plugin.host.GetPodVolumeDir(ed.podUID, volume.EscapePluginName(name), ed.volName) }
func (pd *gcePersistentDisk) GetPath() string { name := gcePersistentDiskPluginName if pd.legacyMode { name = gcePersistentDiskPluginLegacyName } return pd.plugin.host.GetPodVolumeDir(pd.podUID, volume.EscapePluginName(name), pd.volName) }
func (gr *gitRepo) GetPath() string { name := gitRepoPluginName if gr.legacyMode { name = gitRepoPluginLegacyName } return gr.plugin.host.GetPodVolumeDir(gr.podUID, volume.EscapePluginName(name), gr.volName) }
func (gr *gitRepo) getMetaDir() string { return path.Join(gr.plugin.host.GetPodPluginDir(gr.podUID, volume.EscapePluginName(gitRepoPluginName)), gr.volName) }
func (sv *secretVolume) GetPath() string { return sv.plugin.host.GetPodVolumeDir(sv.podRef.UID, volume.EscapePluginName(secretPluginName), sv.volName) }