Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion docs/v3/source/includes/resources/manifests/_object.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ applications:
- route: route.example.com
- route: another-route.example.com
protocol: http2
- route: route-with-options.example.com
options:
loadbalancing: least-connection
services:
- my-service1
- my-service2
Expand Down Expand Up @@ -139,7 +142,16 @@ will be updated for any existing route mapping.
Name | Type | Description
---- | ---- | -----------
**route** | _string_ | **(Required)** The route URI. Example: `host.domain.com`
**protocol** | _string_ | Protocol to use for this route. Valid protocols are `http1`, `http2`, and `tcp`.
**protocol** | _string_ | Protocol to use for this route. Valid protocols are `http1`, `http2`, and `tcp`
**options** | _object_ | A key-value mapping of configuration [options](#space-manifest-per-route-options-level-configuration) to be applied to the specific application route

#### <a name="space-manifest-per-route-options-level-configuration"></a> Per-Route Options-level configuration
This configuration allows additional key-value options for the specific application route.

Name | Type | Description
---- | ---- | -----------
**loadbalancing** | _string_ | The load-balancer associated with this route. Valid values are `round-robin` and `least-connection`


#### <a name="space-manifest-service-level-configuration"></a> Service-level configuration
This configuration is _creating_ new service bindings between the app and a service instance. The `services` field can
Expand Down