Skip to content

Commit 2bf361c

Browse files
authored
Merge pull request #33711 from skrthomas/BZ1878685
BZ1878685: Updates to Creating a route via Ingress for passthrough routes
2 parents ca99b97 + 37adffe commit 2bf361c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

modules/nw-ingress-creating-a-route-via-an-ingress.adoc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,22 @@ spec:
4141
as `Ingress` has no field for this. The accepted values are `edge`, `passthrough` and `reencrypt`. All
4242
other values are silently ignored. When unset, `edge` is used.
4343

44+
.. If you specify the `passthrough` value in the `route.openshift.io/termination` annotation, set `path` to `''` and `pathType` to `ImplementationSpecific` in the spec:
45+
+
46+
[source,yaml]
47+
----
48+
spec:
49+
rules:
50+
- host: www.example.com
51+
http:
52+
paths:
53+
- path: ''
54+
pathType: ImplementationSpecific
55+
- backend:
56+
serviceName: frontend
57+
servicePort: 443
58+
----
59+
4460
+
4561
[source,terminal]
4662
----

0 commit comments

Comments
 (0)