-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add documentation about Ansible encrypted strings - Bump minimum Ansible version, simplify version comparison - Add molecule testing of BigBlueButton Ansible role - Add Travis CI scripts to a separate directory - Bump versions of CI package dependencies - Update yamllint configuration Co-authored-by: core <core>
- Loading branch information
Showing
24 changed files
with
531 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*.swp | ||
*.swo | ||
ansible/roles.galaxy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
|
||
- import_playbook: ansible-version.yml | ||
|
||
- name: "Deploy a BigBlueButton server" | ||
hosts: "{{ target if target is defined else 'bigbluebutton' }}" | ||
become: true | ||
|
||
roles: | ||
- role: bigbluebutton | ||
tags: molecule-idempotence-notest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# Minimun required Ansible version | ||
ansible_version_min: 2.8 | ||
|
||
# Admin email address | ||
admin_email: [email protected] | ||
|
||
|
67 changes: 67 additions & 0 deletions
67
ansible/inventory/molecule/group_vars/bigbluebutton/vars.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
bbb_letsencrypt_enable: false | ||
bbb_letsencrypt_email: [email protected] | ||
# Use latest to update BBB and present to keep currently installed version. | ||
bbb_state: "latest" | ||
bbb_api_demos_enable: false | ||
bbb_disable_recordings: true | ||
# Greenlight registration mode: open (default), invite, approval | ||
bbb_greenlight_default_registration: approval | ||
# https://docs.bigbluebutton.org/2.2/troubleshooting.html#freeswitch-fails-to-start-with-a-setscheduler-error | ||
bbb_cpuschedule: false | ||
# https://docs.bigbluebutton.org/2.2/troubleshooting.html#freeswitch-fails-to-bind-to-port-8021 | ||
bbb_freeswitch_ipv6: false | ||
# Generate Diff-Hellmann for nginx | ||
bbb_nginx_dh: yes | ||
bbb_app_log_level: 'ERROR' | ||
|
||
# https://github.com/bigbluebutton/bigbluebutton/blob/develop/bigbluebutton-html5/private/config/settings.yml | ||
bbb_meteor: | ||
public: | ||
app: | ||
clientTitle: "Molecule - BigBlueButton" | ||
helpLink: "https://privacylx.org/community/" | ||
mirrorOwnWebcam: true | ||
kurento: | ||
cameraProfiles: | ||
- id: low | ||
name: Low quality | ||
default: true | ||
bitrate: 50 | ||
- id: medium | ||
name: Medium quality | ||
default: false | ||
bitrate: 100 | ||
- id: high | ||
name: High quality | ||
default: false | ||
bitrate: 200 | ||
- id: hd | ||
name: High definition | ||
default: false | ||
bitrate: 400 | ||
hidden: true | ||
cameraQualityThresholds: | ||
enabled: true | ||
thresholds: | ||
- threshold: 8 | ||
profile: low-u8 | ||
- threshold: 12 | ||
profile: low-u12 | ||
- threshold: 15 | ||
profile: low-u15 | ||
- threshold: 20 | ||
profile: low-u20 | ||
- threshold: 25 | ||
profile: low-u25 | ||
- threshold: 30 | ||
profile: low-u30 | ||
|
||
bbb_coturn_secret: "{{ lookup('password', '/tmp/passwordfile length=80') }}" | ||
bbb_turn_secret: "{{ lookup('password', '/tmp/passwordfile length=80') }}" | ||
bbb_greenlight_secret: "{{ lookup('password', '/tmp/passwordfile length=80') }}" | ||
bbb_greenlight_db_password: "{{ lookup('password', '/tmp/passwordfile length=80') }}" | ||
# BigBlueButton admin user | ||
bbb_adm: | ||
name: Admin Test User | ||
email: [email protected] | ||
pass: "{{ lookup('password', '/tmp/passwordfile length=30 chars=ascii_letters') }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
# Minimun required Ansible version | ||
ansible_version_min: 2.8 | ||
|
||
# PrivacyLx website | ||
website_host: privacylx.org | ||
|
||
|
Oops, something went wrong.