From 322b5d52f6c09987f7e603933e73261df672eb58 Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Thu, 9 Apr 2020 11:05:31 -0700 Subject: [PATCH] fix build errors for realsies this time --- pkg/minikube/node/start.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/minikube/node/start.go b/pkg/minikube/node/start.go index 6ef365e8da..5abfa40151 100644 --- a/pkg/minikube/node/start.go +++ b/pkg/minikube/node/start.go @@ -147,7 +147,7 @@ func Start(starter Starter, apiServer bool) (*kubeconfig.Settings, error) { // enable addons, both old and new! if starter.ExistingAddons != nil { - go addons.Start(&wg, &cc, starter.ExistingAddons, config.AddonList) + go addons.Start(&wg, starter.Cfg, starter.ExistingAddons, config.AddonList) } if apiServer { @@ -190,7 +190,7 @@ func Start(starter Starter, apiServer bool) (*kubeconfig.Settings, error) { wg.Wait() // Write enabled addons to the config before completion - return kcs, config.Write(viper.GetString(config.ProfileName), &cc) + return kcs, config.Write(viper.GetString(config.ProfileName), starter.Cfg) } // Provision provisions the machine/container for the node