From f2664fc73b387b00570e078ece80477c10146620 Mon Sep 17 00:00:00 2001 From: Luke Mino-Altherr Date: Thu, 10 Sep 2015 10:16:46 -0700 Subject: [PATCH] Fix getting kube-proxy --- docs/getting-started-guides/ubuntu-calico.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/getting-started-guides/ubuntu-calico.md b/docs/getting-started-guides/ubuntu-calico.md index e83a097b69f..b2ea65e9e87 100644 --- a/docs/getting-started-guides/ubuntu-calico.md +++ b/docs/getting-started-guides/ubuntu-calico.md @@ -246,7 +246,8 @@ kubernetes/cluster/ubuntu/build.sh sudo cp -f binaries/minion/* /usr/bin # Get the iptables based kube-proxy reccomended for this demo -sudo wget https://github.com/projectcalico/calico-kubernetes/releases/download/v0.1.1/kube-proxy -P /usr/bin/ +wget https://github.com/projectcalico/calico-kubernetes/releases/download/v0.1.1/kube-proxy +sudo cp kube-proxy /usr/bin/ sudo chmod +x /usr/bin/kube-proxy ```