mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-21 23:42:24 +02:00
69 lines
2.0 KiB
YAML
69 lines
2.0 KiB
YAML
---
|
|
- name: "include docker-compose role"
|
|
include_role:
|
|
name: docker-compose
|
|
|
|
- name: "include role nginx-domain-setup for {{application_id}}"
|
|
include_role:
|
|
name: nginx-domain-setup
|
|
|
|
- name: pull docker repository
|
|
git:
|
|
repo: "https://github.com/bigbluebutton/docker.git"
|
|
dest: "{{ bbb_repository_directory }}"
|
|
update: yes
|
|
recursive: yes
|
|
version: main
|
|
notify: setup bigbluebutton
|
|
|
|
- name: configure websocket_upgrade.conf
|
|
copy:
|
|
src: "websocket_upgrade.conf"
|
|
dest: "{{nginx.directories.http.maps}}websocket_upgrade.conf"
|
|
notify: restart nginx
|
|
|
|
- name: "Remove directory {{ docker_compose.directories.env }}"
|
|
ansible.builtin.file:
|
|
path: "{{ docker_compose.directories.env }}"
|
|
state: absent
|
|
|
|
- name: deploy .env
|
|
template:
|
|
src: env.j2
|
|
dest: "{{ bbb_env_file_origine }}"
|
|
notify: setup bigbluebutton
|
|
|
|
- name: "Update healthcheck for bbb-graphql-server"
|
|
# This is neccessary because the healthcheck doesn't listen to the correct port
|
|
lineinfile:
|
|
line: " healthcheck:\n test: [\"CMD\", \"curl\", \"-f\", \"http://localhost:8085/healthz\"]\n interval: 30s\n timeout: 10s\n retries: 5\n start_period: 10s"
|
|
path: "{{docker_compose_file_final}}"
|
|
insertafter: "bbb-graphql-server:"
|
|
listen: setup bigbluebutton
|
|
|
|
- name: Create symbolic link from .env file to target location
|
|
ansible.builtin.file:
|
|
src: "{{ bbb_env_file_origine }}"
|
|
dest: "{{ bbb_env_file_link }}"
|
|
state: link
|
|
|
|
- name: flush docker service
|
|
meta: flush_handlers
|
|
|
|
- name: wait for database
|
|
pause:
|
|
seconds: "{{pause_duration}}"
|
|
when: applications.bigbluebutton.setup | bool
|
|
|
|
- name: create admin
|
|
command:
|
|
cmd: docker compose exec greenlight bundle exec rake admin:create
|
|
chdir: "{{ docker_compose.directories.instance }}"
|
|
when: applications.bigbluebutton.setup | bool
|
|
ignore_errors: true
|
|
register: admin_creation_result
|
|
|
|
- name: print admin user data
|
|
debug:
|
|
msg: "{{ admin_creation_result.stdout }}"
|
|
when: applications.bigbluebutton.setup | bool |