2022-03-14 17:19:57 -04:00
|
|
|
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
|
|
|
---
|
|
|
|
|
|
|
|
allOf:
|
|
|
|
- type: object
|
|
|
|
properties:
|
|
|
|
format:
|
|
|
|
$ref: ../format_spec.yaml
|
|
|
|
|
2022-04-01 10:44:33 +02:00
|
|
|
wait:
|
|
|
|
type: boolean
|
|
|
|
default: true
|
|
|
|
description: |
|
|
|
|
Suspend start-up of VILLASnode until the connection with the remote peer has been established.
|
|
|
|
|
2022-03-14 17:19:57 -04:00
|
|
|
session:
|
|
|
|
type: string
|
2022-04-07 09:22:25 +02:00
|
|
|
title: Session identifier
|
2022-03-14 17:19:57 -04:00
|
|
|
description: A unique session identifier which must be shared between two nodes
|
|
|
|
|
|
|
|
server:
|
|
|
|
type: string
|
|
|
|
title: Signaling Server Address
|
|
|
|
description: Address to the websocket signaling server
|
2022-03-16 07:35:03 -04:00
|
|
|
default: wss://villas.k8s.eonerc.rwth-aachen.de/ws/signaling
|
2022-03-14 17:19:57 -04:00
|
|
|
|
|
|
|
ice:
|
|
|
|
type: object
|
|
|
|
title: ICE configuration settings
|
|
|
|
properties:
|
|
|
|
servers:
|
|
|
|
title: ICE Servers
|
|
|
|
description: A list of ICE servers used for connection establishment
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: object
|
|
|
|
title: ICE Server
|
|
|
|
properties:
|
|
|
|
urls:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
format: uri
|
|
|
|
title: STUN/TURN URI
|
|
|
|
description: |
|
|
|
|
A valid Uniform Resource Identifier (URI) indentifying a STUN or TURN server.
|
|
|
|
|
|
|
|
See [RFC7064](https://datatracker.ietf.org/doc/html/rfc7064) and [RFC7065](https://datatracker.ietf.org/doc/html/rfc7065) for details.
|
|
|
|
|
|
|
|
password:
|
|
|
|
type: string
|
|
|
|
description: Password for used authentication against TURN servers.
|
|
|
|
username:
|
|
|
|
type: string
|
|
|
|
description: Username for used authentication against TURN servers.
|
|
|
|
|
2022-04-07 08:52:19 +02:00
|
|
|
- $ref: ../node_signals.yaml
|
2022-03-14 17:19:57 -04:00
|
|
|
- $ref: ../node.yaml
|