diff --git a/modules/nw-ingress-creating-a-route-via-an-ingress.adoc b/modules/nw-ingress-creating-a-route-via-an-ingress.adoc index b1d74451b8..96b8a9d43e 100644 --- a/modules/nw-ingress-creating-a-route-via-an-ingress.adoc +++ b/modules/nw-ingress-creating-a-route-via-an-ingress.adoc @@ -41,6 +41,22 @@ spec: as `Ingress` has no field for this. The accepted values are `edge`, `passthrough` and `reencrypt`. All other values are silently ignored. When unset, `edge` is used. +.. If you specify the `passthrough` value in the `route.openshift.io/termination` annotation, set `path` to `''` and `pathType` to `ImplementationSpecific` in the spec: ++ +[source,yaml] +---- + spec: + rules: + - host: www.example.com + http: + paths: + - path: '' + pathType: ImplementationSpecific + - backend: + serviceName: frontend + servicePort: 443 +---- + + [source,terminal] ----