updating istioctl binary download (#159)

This commit is contained in:
Laurent Demailly 2017-05-10 11:38:02 -07:00 committed by mandarjog
parent 11915aab28
commit 6cfbaa2647
1 changed files with 4 additions and 3 deletions

View File

@ -78,12 +78,13 @@ default namespace. They can be modified for deployment in a different namespace.
source ../../istio.VERSION
```
6. Download one of the [`istioctl`]({{home}}/docs/reference/commands/istioctl.html) client binaries corresponding to your OS: `istioctl-osx`, `istioctl-win.exe`,
6. Use one of the [`istioctl`]({{home}}/docs/reference/commands/istioctl.html) client binaries corresponding to your OS: `istioctl-osx`, `istioctl-win.exe`,
`istioctl-linux`, targeted at Mac, Windows or Linux users respectively. For example, run the following commands on a Mac system:
```bash
curl ${ISTIOCTL_URL}/istioctl-osx > /usr/local/bin/istioctl
chmod +x /usr/local/bin/istioctl
curl -L https://github.com/istio/istio/releases/download/0.1.0/istioctl.tar.gz > istioctl-0.1.0.tar.gz
tar xvfz istioctl-0.1.0.tar.gz
cp istioctl/istioctl-osx /usr/local/bin/ # or anywhere in your $PATH
```
`istioctl` is needed to inject Envoy as a sidecar proxy. It also provides a convenient CLI for creating routing rules and policies.