Update ingress.md (#554)

* Update ingress.md

* Update ingress.md
This commit is contained in:
Kuat 2017-09-27 20:09:23 -07:00 committed by Guang Ya Liu
parent d77c058374
commit 9e3ef16a70
1 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@ to configure ingress behavior.
1. Update the secret using `kubectl`
```bash
kubectl delete secret istio-ingress-certs; kubectl create secret tls ingress-secret --key /tmp/tls.key --cert /tmp/tls.crt
kubectl create -n istio-system secret tls istio-ingress-certs --key /tmp/tls.key --cert /tmp/tls.crt
```
1. Create the Ingress Resource for the httpbin service
@ -170,7 +170,7 @@ to configure ingress behavior.
Notice that in this example we are only exposing httpbin's `/ip` endpoint.
> Note: Envoy currently only allows a single TLS secret in the ingress since SNI is not yet supported.
> Note: Envoy currently only allows a single TLS secret in the ingress since SNI is not yet supported. That means that the secret name field in ingress resource is not used, and the secret must be called `istio-ingress-certs` in `istio-system` namespace.
1. Determine the secure ingress URL: