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 16f788c65a..c4f1e88c4e 100644 --- a/modules/nw-ingress-creating-a-route-via-an-ingress.adoc +++ b/modules/nw-ingress-creating-a-route-via-an-ingress.adoc @@ -32,7 +32,7 @@ spec: - backend: service: name: frontend - port: + port: number: 443 path: / pathType: Prefix @@ -44,7 +44,7 @@ spec: + <1> The `route.openshift.io/termination` annotation can be used to configure the `spec.tls.termination` field of the `Route` 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. +other values are silently ignored. When the annotation value is unset, `edge` is the default route. The TLS certificate details must be defined in the template file to implement the default edge route. .. If you specify the `passthrough` value in the `route.openshift.io/termination` annotation, set `path` to `''` and `pathType` to `ImplementationSpecific` in the spec: + @@ -60,7 +60,7 @@ other values are silently ignored. When unset, `edge` is used. backend: service: name: frontend - port: + port: number: 443 ----