You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mark weighted route destinations as deprecated in docs (#3779)
- The Istio Service Mesh routing layer is required for weighted routes
to function, but development on it was discontinued in early 2020.
See: https://github.com/cloudfoundry-attic/istio-release
- As a consequence, weighted route destinations are no longer supported.
- See this issue for more information about the removal of
Istio support from Cloud Controller: #2942
Copy file name to clipboardExpand all lines: docs/v3/source/includes/resources/routes/_destination_object.md.erb
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,11 @@ Note that when using a custom port, the app process must be listening on the spe
18
18
19
19
If a destination does not specify a port, the default port depends on the app lifecycle type. For buildpack apps, traffic will be directed to port 8080. For Docker apps, the first port specified in the Dockerfile will be used.
| **guid** | _uuid_ | Unique identifier for the destination |
24
-
| **app.guid** | _uuid_ | Unique identifier for the app to route traffic to |
25
-
| **app.process.type** | _string_ | Type of the process belonging to the app to route traffic to |
26
-
| **port** | _integer_ | Port on the destination process to route traffic to
27
-
| **weight** (*experimental*) | _integer_ or `null` | Percentage of traffic which will be routed to this destination; _this feature is only available via the BETA Service Mesh routing plane_ |
28
-
| **protocol** | _string_ or `null` | Protocol to use for this destination. Valid protocols are `http1` or `http2` if route protocol is `http`, `tcp` if route protocol is `tcp`. A `null` value will set it either `http1` or `tcp` based on the route protocol; _this feature is only available if you turn it on in routing release_ |
| **guid** | _uuid_ | Unique identifier for the destination |
24
+
| **app.guid** | _uuid_ | Unique identifier for the app to route traffic to |
25
+
| **app.process.type** | _string_ | Type of the process belonging to the app to route traffic to |
26
+
| **port** | _integer_ | Port on the destination process to route traffic to
27
+
| **weight** (*deprecated*) | _integer_ or `null` | Percentage of traffic which will be routed to this destination. _**DEPRECATED:** this feature was only available via the experimental Service Mesh routing plane. It is no longer supported._ |
28
+
| **protocol** | _string_ or `null` | Protocol to use for this destination. Valid protocols are `http1` or `http2` if route protocol is `http`, `tcp` if route protocol is `tcp`. A `null` value will set it either `http1` or `tcp` based on the route protocol; _this feature is only available if you turn it on in routing release_ |
0 commit comments