use html encoding for the forward slash in CIDR blocks (#1422)

otherwise Hugo renders it as a fraction
This commit is contained in:
Vadim Eisenberg 2018-06-03 16:54:39 +03:00 committed by Martin Taillefer
parent 33d2d38e77
commit 9bb835a575
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ The simplest way to use the `--includeIPRanges` option is to pass it the IP rang
used for internal cluster services, thereby excluding external IPs from being redirected
to the sidecar proxy.
The values used for internal IP range(s), however, depends on where your cluster is running.
For example, with Minikube the range is 10.0.0.1/24, so you would start the sleep service like this:
For example, with Minikube the range is 10.0.0.1/24, so you would start the sleep service like this:
```command
$ kubectl apply -f <(istioctl kube-inject -f samples/sleep/sleep.yaml --includeIPRanges=10.0.0.1/24)