From 13d866379667ae0eb21ba7725e01aaf49d17420f Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Wed, 13 Aug 2025 00:35:14 +0200 Subject: [PATCH] Added version and repository to bbb --- roles/web-app-bigbluebutton/config/main.yml | 3 +++ roles/web-app-bigbluebutton/vars/main.yml | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/roles/web-app-bigbluebutton/config/main.yml b/roles/web-app-bigbluebutton/config/main.yml index d4b96109..b82742c3 100644 --- a/roles/web-app-bigbluebutton/config/main.yml +++ b/roles/web-app-bigbluebutton/config/main.yml @@ -23,6 +23,9 @@ credentials: {} docker: services: + bigbluebutton: + repository: "https://github.com/bigbluebutton/docker.git" + version: "main" database: # This is set to true to pass integration test, doesn't have any other function enabled: true diff --git a/roles/web-app-bigbluebutton/vars/main.yml b/roles/web-app-bigbluebutton/vars/main.yml index fd510f23..176eff5f 100644 --- a/roles/web-app-bigbluebutton/vars/main.yml +++ b/roles/web-app-bigbluebutton/vars/main.yml @@ -1,9 +1,10 @@ +# General application_id: "web-app-bigbluebutton" # Database configuration database_type: "postgres" database_instance: "{{ application_id | get_entity_name }}" -database_password: "{{ applications | get_app_conf(application_id, 'credentials.postgresql_secret', True) }}" +database_password: "{{ applications | get_app_conf(application_id, 'credentials.postgresql_secret') }}" database_username: "postgres" database_name: "" # Multiple databases @@ -13,6 +14,7 @@ http_port: "{{ ports.localhost.http[application_id] }}" # Docker docker_compose_skipp_file_creation: true # Handled in this role -docker_repository_address: "https://github.com/bigbluebutton/docker.git" +docker_repository_address: "{{ applications | get_app_conf(application_id, 'docker.services.bigbluebutton.repository') }}" +docker_repository_branch: "{{ applications | get_app_conf(application_id, 'docker.services.bigbluebutton.version') }}" docker_pull_git_repository: true docker_compose_flush_handlers: false \ No newline at end of file