ok it builds again

pull/6318/head
Sharif Elgamal 2020-01-24 16:01:14 -08:00
parent 9a49c587d5
commit de0573784e
No known key found for this signature in database
GPG Key ID: 23CC0225BD9FD702
2 changed files with 9 additions and 11 deletions

View File

@ -1,7 +1,7 @@
apiVersion: v1
clusters: []
contexts: []
clusters: null
contexts: null
current-context: minikube
kind: Config
preferences: {}
users: []
users: null

View File

@ -42,15 +42,13 @@ func init() {
}
func configure(mc config.MachineConfig) interface{} {
cp, _ := config.PrimaryControlPlane(mc)
return kic.NewDriver(kic.Config{
MachineName: mc.Name,
StorePath: localpath.MiniPath(),
ImageDigest: kic.BaseImage,
CPU: mc.CPUs,
Memory: mc.Memory,
HostBindPort: cp.Port,
OCIBinary: oci.Docker,
MachineName: mc.Name,
StorePath: localpath.MiniPath(),
ImageDigest: kic.BaseImage,
CPU: mc.CPUs,
Memory: mc.Memory,
OCIBinary: oci.Docker,
})
}