Skip to content

Commit 6158dd4

Browse files
awalker125dlorenc
authored andcommitted
swith filepath.join for path.join
1 parent fc9f45f commit 6158dd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/minikube/bootstrapper/kubeadm/versions.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ package kubeadm
1818

1919
import (
2020
"fmt"
21-
"path/filepath"
21+
"path"
2222
"sort"
2323
"strings"
2424

@@ -193,7 +193,7 @@ var versionSpecificOpts = []VersionedExtraOption{
193193

194194
// Auth args
195195
NewUnversionedOption(Kubelet, "authorization-mode", "Webhook"),
196-
NewUnversionedOption(Kubelet, "client-ca-file", filepath.Join(util.DefaultCertPath, "ca.crt")),
196+
NewUnversionedOption(Kubelet, "client-ca-file", path.Join(util.DefaultCertPath, "ca.crt")),
197197

198198
// Cgroup args
199199
NewUnversionedOption(Kubelet, "cadvisor-port", "0"),

0 commit comments

Comments
 (0)