more hyper-v libmachine changes
parent
1bc6e08bb7
commit
7a7ae59433
2
go.mod
2
go.mod
|
@ -215,7 +215,7 @@ require (
|
|||
replace (
|
||||
git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999
|
||||
github.com/briandowns/spinner => github.com/alonyb/spinner v1.12.7
|
||||
github.com/docker/machine => github.com/sharifelgamal/machine v0.0.0-20220418234717-0d7042c679c5
|
||||
github.com/docker/machine => github.com/sharifelgamal/machine v0.0.0-20220419202400-e2ce4b7254c7
|
||||
github.com/samalba/dockerclient => github.com/sayboras/dockerclient v1.0.0
|
||||
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.22.4
|
||||
)
|
||||
|
|
4
go.sum
4
go.sum
|
@ -1030,8 +1030,8 @@ github.com/sayboras/dockerclient v1.0.0/go.mod h1:mUmEoqt0b+uQg57s006FsvL4mybi+N
|
|||
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc=
|
||||
github.com/seccomp/libseccomp-golang v0.9.1/go.mod h1:GbW5+tmTXfcxTToHLXlScSlAvWlF4P2Ca7zGrPiEpWo=
|
||||
github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
|
||||
github.com/sharifelgamal/machine v0.0.0-20220418234717-0d7042c679c5 h1:5sO0/oWpr+1XG+lTGXe31O75pZrAcsgJ+unywPEXqxo=
|
||||
github.com/sharifelgamal/machine v0.0.0-20220418234717-0d7042c679c5/go.mod h1:EWIijAq2ANG8a9Dth8yuV3xzDy+gOa4p2c9i/nYEgDI=
|
||||
github.com/sharifelgamal/machine v0.0.0-20220419202400-e2ce4b7254c7 h1:Xd0f99vf3R6A8tXWqQSy5TZh5GzYydYQGDB9sadvlAA=
|
||||
github.com/sharifelgamal/machine v0.0.0-20220419202400-e2ce4b7254c7/go.mod h1:EWIijAq2ANG8a9Dth8yuV3xzDy+gOa4p2c9i/nYEgDI=
|
||||
github.com/shirou/gopsutil/v3 v3.22.3 h1:UebRzEomgMpv61e3hgD1tGooqX5trFbdU/ehphbHd00=
|
||||
github.com/shirou/gopsutil/v3 v3.22.3/go.mod h1:D01hZJ4pVHPpCTZ3m3T2+wDF2YAGfd+H4ifUguaQzHM=
|
||||
github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
|
||||
|
|
|
@ -95,7 +95,7 @@ var (
|
|||
InternalConfigUnset = Kind{ID: "MK_CONFIG_UNSET", ExitCode: ExProgramError}
|
||||
// minikube failed to view current config values
|
||||
InternalConfigView = Kind{ID: "MK_CONFIG_VIEW", ExitCode: ExProgramError}
|
||||
// minikybe failed to delete an internal configuration, such as a cached image
|
||||
// minikube failed to delete an internal configuration, such as a cached image
|
||||
InternalDelConfig = Kind{ID: "MK_DEL_CONFIG", ExitCode: ExProgramError}
|
||||
// minikube failed to generate script to activate minikube docker-env
|
||||
InternalDockerScript = Kind{ID: "MK_DOCKER_SCRIPT", ExitCode: ExProgramError}
|
||||
|
|
Loading…
Reference in New Issue