Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,5 @@ properties:
oneOf:
- $ref: DnsRecordLinkedHttpRouting.yml
- type: "null"
variants:
type:
- array
- "null"
description: A set of weighted destinations that traffic to this record is distributed across.
items:
$ref: DnsRecordLinkedVariant.yml
traffic_splitting:
$ref: ./DnsRecordLinkedTrafficSplitting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
title: DnsRecordLinkedTrafficSplitting
type: object
description: Settings for splitting traffic to this domain between two or more destinations.
required:
- sticky_sessions
properties:
variants:
type:
- array
- "null"
description: A set of weighted destinations that traffic to this record is distributed across.
items:
$ref: DnsRecordLinkedVariant.yml
sticky_sessions:
type: boolean
description: Utilize sticky sessions. When true, after the initial request, all traffic from that host will be routed to the same destination.
Loading