Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 971 Bytes

InstanceList.md

File metadata and controls

30 lines (21 loc) · 971 Bytes

InstanceList

The InstanceList entity tells BigBlueSwarm the list of BigBlueButton instances available in its cluster.

Instances

The instances property is a mandatory property that defines the list of BigBlueButton instances present in the cluster. It is presented as a map taking in key the public URLs of the instances (String) and in key the BigBlueButton secret of the instance.

Example:

instances:
  http://bbb1.com/bigbluebutton: my_dummy_secret1
  http://bbb2.com/bigbluebutton: my_dummy_secret2
  http://bbb3.com/bigbluebutton: my_dummy_secret3

Initialization

The list of instances can be initialized using the command bbsctl init instances.

Sample file

kind: InstanceList
instances:
  http://bbb1.com/bigbluebutton: my_dummy_secret1
  http://bbb2.com/bigbluebutton: my_dummy_secret2
  http://bbb3.com/bigbluebutton: my_dummy_secret3