Fix gendocs, function DefaultMountDir was missing

pull/2483/head
Anders F Björklund 2018-01-28 11:33:23 +01:00 committed by dlorenc
parent ded49d1a9e
commit 95067859d2
1 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,10 @@ limitations under the License.
package constants
import (
"k8s.io/client-go/util/homedir"
)
var SupportedVMDrivers = [...]string{
"virtualbox",
"vmwarefusion",
@ -25,3 +29,5 @@ var SupportedVMDrivers = [...]string{
"xhyve",
"hyperv",
}
var DefaultMountDir = homedir.HomeDir()