Skip to content

Commit

Permalink
Merge pull request #7838 from priyawadhwa/fix-preload
Browse files Browse the repository at this point in the history
Fix container runtime value in params for preload
  • Loading branch information
medyagh authored Apr 22, 2020
2 parents 8310520 + ac5ef8b commit 39958f2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions hack/preload-images/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import (
"k8s.io/minikube/pkg/minikube/command"
"k8s.io/minikube/pkg/minikube/config"
"k8s.io/minikube/pkg/minikube/cruntime"
"k8s.io/minikube/pkg/minikube/driver"
"k8s.io/minikube/pkg/minikube/localpath"
"k8s.io/minikube/pkg/minikube/sysinit"
"k8s.io/minikube/pkg/util"
Expand All @@ -41,7 +40,7 @@ import (
func generateTarball(kubernetesVersion, containerRuntime, tarballFilename string) error {
driver := kic.NewDriver(kic.Config{
KubernetesVersion: kubernetesVersion,
ContainerRuntime: driver.Docker,
ContainerRuntime: containerRuntime,
OCIBinary: oci.Docker,
MachineName: profile,
ImageDigest: kic.BaseImage,
Expand Down

0 comments on commit 39958f2

Please sign in to comment.