We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a11e1c3 commit b9675daCopy full SHA for b9675da
pkg/minikube/bootstrapper/kubeadm/util.go
@@ -192,6 +192,8 @@ func updateKubeProxyConfigMap(k8s config.KubernetesConfig) error {
192
193
updated := strings.TrimSuffix(kubeconfig.String(), "\n")
194
glog.Infof("updated kube-proxy config: %s", updated)
195
+
196
+ // An optimization, but also one that's unlikely, as kubeadm writes the address as 'localhost'
197
if cfgMap.Data[kubeconfigConf] == updated {
198
glog.Infof("kube-proxy config appears to require no change, not restarting kube-proxy")
199
return nil
0 commit comments