Merge pull request #512 from ankon/patch-1

Fix typos regarding the ssl-passthrough annotation documentation
This commit is contained in:
Manuel Alejandro de Brito Fontes 2017-03-27 16:09:17 -03:00 committed by GitHub
commit 68831cbcb8

View file

@ -194,10 +194,10 @@ If you specify both annotations in a single Ingress rule, `limit-rps` takes prec
### SSL Passthrough ### SSL Passthrough
The annotation `ingress.kubernetes.io/ssl-lassthrough` allows to configure TLS termination in the pod and not in NGINX. The annotation `ingress.kubernetes.io/ssl-passthrough` allows to configure TLS termination in the pod and not in NGINX.
This is possible thanks to the [ngx_stream_ssl_preread_module](https://nginx.org/en/docs/stream/ngx_stream_ssl_preread_module.html) that enables the extraction of the server name information requested through SNI from the ClientHello message at the preread phase. This is possible thanks to the [ngx_stream_ssl_preread_module](https://nginx.org/en/docs/stream/ngx_stream_ssl_preread_module.html) that enables the extraction of the server name information requested through SNI from the ClientHello message at the preread phase.
**Important:** using the annotation `ingress.kubernetes.io/ssl-lassthrough` invalidate all the other availables annotations. This is because SSL Passthrough works in L4 (TCP). **Important:** using the annotation `ingress.kubernetes.io/ssl-passthrough` invalidates all the other available annotations. This is because SSL Passthrough works in L4 (TCP).
### Secure backends ### Secure backends