Skip to content

Commit 18afaaf

Browse files
committed
DO NOT SUBMIT: test kubernetes/kubernetes#130612
1 parent d7c5a23 commit 18afaaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/k8s-integration/cluster.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,8 @@ func downloadKubernetesSource(k8sDir, kubeVersion string) error {
330330
// in order to find the revision git searches through the tags, and tags are not fetched in
331331
// a shallow clone. Not using a shallow clone adds about 700M to the ~5G archive directory,
332332
// after make quick-release, so this is not disastrous.
333-
klog.Info("cloning k8s master")
334-
out, err := exec.Command("git", "clone", "https://github.com/kubernetes/kubernetes", k8sDir).CombinedOutput()
333+
klog.Info("cloning k8s master from carlory")
334+
out, err := exec.Command("git", "clone", "-b", "fix-sleep-infinity-on-windows", "https://github.com/carlory/kubernetes", k8sDir).CombinedOutput()
335335
if err != nil {
336336
return fmt.Errorf("failed to clone kubernetes master: %s, err: %v", out, err.Error())
337337
}

0 commit comments

Comments
 (0)