mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-13 05:52:50 +01:00
Add support for automatic (Postgres -> SQLite) migration to mx-puppet-skype
This commit is contained in:
parent
d135cd9cd3
commit
e49eb078a2
@ -55,18 +55,17 @@ matrix_mx_puppet_skype_login_shared_secret: ''
|
|||||||
|
|
||||||
# Database configuration, role default is `sqlite` but playbook default is `postgres`
|
# Database configuration, role default is `sqlite` but playbook default is `postgres`
|
||||||
matrix_mx_puppet_skype_database_engine: sqlite
|
matrix_mx_puppet_skype_database_engine: sqlite
|
||||||
|
|
||||||
|
matrix_mx_puppet_skype_sqlite_database_path_local: "{{ matrix_mx_puppet_skype_data_path }}/database.db"
|
||||||
|
matrix_mx_puppet_skype_sqlite_database_path_in_container: "/data/database.db"
|
||||||
|
|
||||||
matrix_mx_puppet_skype_database_username: matrix_mx_puppet_skype
|
matrix_mx_puppet_skype_database_username: matrix_mx_puppet_skype
|
||||||
matrix_mx_puppet_skype_database_password: ~
|
matrix_mx_puppet_skype_database_password: ~
|
||||||
matrix_mx_puppet_skype_database_hostname: 'matrix-postgres'
|
matrix_mx_puppet_skype_database_hostname: 'matrix-postgres'
|
||||||
matrix_mx_puppet_skype_database_port: 5432
|
matrix_mx_puppet_skype_database_port: 5432
|
||||||
matrix_mx_puppet_skype_database_name: matrix_mx_puppet_skype
|
matrix_mx_puppet_skype_database_db_name: matrix_mx_puppet_skype
|
||||||
matrix_mx_puppet_skype_database_file: /data/database.db
|
|
||||||
matrix_mx_puppet_skype_database_connString: >-2
|
matrix_mx_puppet_skype_database_connection_string: 'postgresql://{{ matrix_mx_puppet_skype_database_username }}:{{ matrix_mx_puppet_skype_database_password }}@{{ matrix_mx_puppet_skype_database_hostname }}:{{ matrix_mx_puppet_skype_database_port }}/{{ matrix_mx_puppet_skype_database_db_name }}?sslmode=disable'
|
||||||
{%- if matrix_mx_puppet_skype_database_engine == 'postgres' -%}
|
|
||||||
postgresql://{{ matrix_mx_puppet_skype_database_username }}:{{ matrix_mx_puppet_skype_database_password }}@{{ matrix_mx_puppet_skype_database_hostname }}:{{ matrix_mx_puppet_skype_database_port }}/{{ matrix_mx_puppet_skype_database_name }}?sslmode=disable
|
|
||||||
{%- elif matrix_mx_puppet_skype_database_engine == 'sqlite' -%}
|
|
||||||
{{ matrix_mx_puppet_skype_database_engine }}://{{ matrix_mx_puppet_skype_database_file }}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
# Default configuration template which covers the generic use case.
|
# Default configuration template which covers the generic use case.
|
||||||
# You can customize it by controlling the various variables inside it.
|
# You can customize it by controlling the various variables inside it.
|
||||||
|
@ -8,14 +8,6 @@
|
|||||||
The matrix-bridge-mx-puppet-skype role needs to execute before the matrix-synapse role.
|
The matrix-bridge-mx-puppet-skype role needs to execute before the matrix-synapse role.
|
||||||
when: "matrix_synapse_role_executed|default(False)"
|
when: "matrix_synapse_role_executed|default(False)"
|
||||||
|
|
||||||
- name: Ensure MX Puppet Skype image is pulled
|
|
||||||
docker_image:
|
|
||||||
name: "{{ matrix_mx_puppet_skype_docker_image }}"
|
|
||||||
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
|
||||||
force_source: "{{ matrix_mx_puppet_skype_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
|
||||||
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mx_puppet_skype_docker_image_force_pull }}"
|
|
||||||
when: matrix_mx_puppet_skype_enabled|bool and not matrix_mx_puppet_skype_container_image_self_build
|
|
||||||
|
|
||||||
- name: Ensure MX Puppet Skype paths exist
|
- name: Ensure MX Puppet Skype paths exist
|
||||||
file:
|
file:
|
||||||
path: "{{ item.path }}"
|
path: "{{ item.path }}"
|
||||||
@ -30,6 +22,57 @@
|
|||||||
- { path: "{{ matrix_mx_puppet_skype_docker_src_files_path }}", when: "{{ matrix_mx_puppet_skype_container_image_self_build }}" }
|
- { path: "{{ matrix_mx_puppet_skype_docker_src_files_path }}", when: "{{ matrix_mx_puppet_skype_container_image_self_build }}" }
|
||||||
when: matrix_mx_puppet_skype_enabled|bool and item.when|bool
|
when: matrix_mx_puppet_skype_enabled|bool and item.when|bool
|
||||||
|
|
||||||
|
- name: Check if an old database file already exists
|
||||||
|
stat:
|
||||||
|
path: "{{ matrix_mx_puppet_skype_base_path }}/database.db"
|
||||||
|
register: matrix_mx_puppet_skype_stat_database
|
||||||
|
|
||||||
|
- name: (Data relocation) Ensure matrix-mx-puppet-skype.service is stopped
|
||||||
|
service:
|
||||||
|
name: matrix-mx-puppet-skype
|
||||||
|
state: stopped
|
||||||
|
daemon_reload: yes
|
||||||
|
failed_when: false
|
||||||
|
when: "matrix_mx_puppet_skype_stat_database.stat.exists"
|
||||||
|
|
||||||
|
- name: (Data relocation) Move mx-puppet-skype database file to ./data directory
|
||||||
|
command: "mv {{ matrix_mx_puppet_skype_base_path }}/database.db {{ matrix_mx_puppet_skype_data_path }}/database.db"
|
||||||
|
when: "matrix_mx_puppet_skype_stat_database.stat.exists"
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
matrix_mx_puppet_skype_requires_restart: false
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: Check if an SQLite database already exists
|
||||||
|
stat:
|
||||||
|
path: "{{ matrix_mx_puppet_skype_sqlite_database_path_local }}"
|
||||||
|
register: matrix_mx_puppet_skype_sqlite_database_path_local_stat_result
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- set_fact:
|
||||||
|
matrix_postgres_db_migration_request:
|
||||||
|
src: "{{ matrix_mx_puppet_skype_sqlite_database_path_local }}"
|
||||||
|
dst: "{{ matrix_mx_puppet_skype_database_connection_string }}"
|
||||||
|
caller: "{{ role_path|basename }}"
|
||||||
|
engine_variable_name: 'matrix_mx_puppet_skype_database_engine'
|
||||||
|
engine_old: 'sqlite'
|
||||||
|
systemd_services_to_stop: ['matrix-mx-puppet-skype.service']
|
||||||
|
|
||||||
|
- import_tasks: "roles/matrix-postgres/tasks/util/migrate_db_to_postgres.yml"
|
||||||
|
|
||||||
|
- set_fact:
|
||||||
|
matrix_mx_puppet_skype_requires_restart: true
|
||||||
|
when: "matrix_mx_puppet_skype_sqlite_database_path_local_stat_result.stat.exists|bool"
|
||||||
|
when: "matrix_mx_puppet_skype_database_engine == 'postgres'"
|
||||||
|
|
||||||
|
- name: Ensure MX Puppet Skype image is pulled
|
||||||
|
docker_image:
|
||||||
|
name: "{{ matrix_mx_puppet_skype_docker_image }}"
|
||||||
|
source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}"
|
||||||
|
force_source: "{{ matrix_mx_puppet_skype_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mx_puppet_skype_docker_image_force_pull }}"
|
||||||
|
when: matrix_mx_puppet_skype_enabled|bool and not matrix_mx_puppet_skype_container_image_self_build
|
||||||
|
|
||||||
- name: Ensure MX Puppet Skype repository is present on self build
|
- name: Ensure MX Puppet Skype repository is present on self build
|
||||||
git:
|
git:
|
||||||
repo: "{{ matrix_mx_puppet_skype_container_image_self_build_repo }}"
|
repo: "{{ matrix_mx_puppet_skype_container_image_self_build_repo }}"
|
||||||
@ -49,23 +92,6 @@
|
|||||||
pull: yes
|
pull: yes
|
||||||
when: "matrix_mx_puppet_skype_enabled|bool and matrix_mx_puppet_skype_container_image_self_build|bool"
|
when: "matrix_mx_puppet_skype_enabled|bool and matrix_mx_puppet_skype_container_image_self_build|bool"
|
||||||
|
|
||||||
- name: Check if an old database file already exists
|
|
||||||
stat:
|
|
||||||
path: "{{ matrix_mx_puppet_skype_base_path }}/database.db"
|
|
||||||
register: matrix_mx_puppet_skype_stat_database
|
|
||||||
|
|
||||||
- name: (Data relocation) Ensure matrix-mx-puppet-skype.service is stopped
|
|
||||||
service:
|
|
||||||
name: matrix-mx-puppet-skype
|
|
||||||
state: stopped
|
|
||||||
daemon_reload: yes
|
|
||||||
failed_when: false
|
|
||||||
when: "matrix_mx_puppet_skype_stat_database.stat.exists"
|
|
||||||
|
|
||||||
- name: (Data relocation) Move mx-puppet-skype database file to ./data directory
|
|
||||||
command: "mv {{ matrix_mx_puppet_skype_base_path }}/database.db {{ matrix_mx_puppet_skype_data_path }}/database.db"
|
|
||||||
when: "matrix_mx_puppet_skype_stat_database.stat.exists"
|
|
||||||
|
|
||||||
- name: Ensure mx-puppet-skype config.yaml installed
|
- name: Ensure mx-puppet-skype config.yaml installed
|
||||||
copy:
|
copy:
|
||||||
content: "{{ matrix_mx_puppet_skype_configuration|to_nice_yaml }}"
|
content: "{{ matrix_mx_puppet_skype_configuration|to_nice_yaml }}"
|
||||||
@ -93,3 +119,9 @@
|
|||||||
service:
|
service:
|
||||||
daemon_reload: yes
|
daemon_reload: yes
|
||||||
when: "matrix_mx_puppet_skype_systemd_service_result.changed"
|
when: "matrix_mx_puppet_skype_systemd_service_result.changed"
|
||||||
|
|
||||||
|
- name: Ensure matrix-mx-puppet-skype.service restarted, if necessary
|
||||||
|
service:
|
||||||
|
name: "matrix-mx-puppet-skype.service"
|
||||||
|
state: restarted
|
||||||
|
when: "matrix_mx_puppet_skype_requires_restart|bool"
|
||||||
|
@ -8,23 +8,3 @@
|
|||||||
with_items:
|
with_items:
|
||||||
- "matrix_mx_puppet_skype_appservice_token"
|
- "matrix_mx_puppet_skype_appservice_token"
|
||||||
- "matrix_mx_puppet_skype_homeserver_token"
|
- "matrix_mx_puppet_skype_homeserver_token"
|
||||||
|
|
||||||
- block:
|
|
||||||
- name: Check if an SQLite database already exists
|
|
||||||
stat:
|
|
||||||
path: "{{ matrix_mx_puppet_skype_data_path }}/database.db"
|
|
||||||
register: matrix_mx_puppet_skype_sqlite_database_path_local_stat_result
|
|
||||||
|
|
||||||
- name: Fail if an SQLite database already exists when using Postgres
|
|
||||||
fail:
|
|
||||||
msg: >-
|
|
||||||
matrix_mx_puppet_skype_database_engine has been set to `postgres` (which is our new default now).
|
|
||||||
However, we've discovered an existing SQLite database in {{ matrix_mx_puppet_skype_data_path }}/database.db.
|
|
||||||
It appears that you've been using this bridge with the SQLite engine until now.
|
|
||||||
To continue using SQLite, opt into it explicitly: add `matrix_mx_puppet_skype_database_engine: sqlite` to your vars.yml file and re-run this same command.
|
|
||||||
Alternatively, to migrate your existing SQLite database to Postgres:
|
|
||||||
1. Stop all services (`ansible-playbook -i inventory/hosts setup.yml --tags=stop`)
|
|
||||||
2. Import the SQLite database into Postgres (`ansible-playbook -v -i inventory/hosts setup.yml --tags=import-generic-sqlite-db --extra-vars='sqlite_database_path={{ matrix_mx_puppet_skype_data_path }}/database.db postgres_connection_string_variable_name=matrix_mx_puppet_skype_database_connString'`)
|
|
||||||
3. Re-run the playbook (`ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start`)
|
|
||||||
when: "matrix_mx_puppet_skype_sqlite_database_path_local_stat_result.stat.exists"
|
|
||||||
when: "matrix_mx_puppet_skype_database_engine == 'postgres'"
|
|
||||||
|
@ -74,11 +74,11 @@ database:
|
|||||||
# Connection string to connect to the Postgres instance
|
# Connection string to connect to the Postgres instance
|
||||||
# with username "user", password "pass", host "localhost" and database name "dbname".
|
# with username "user", password "pass", host "localhost" and database name "dbname".
|
||||||
# Modify each value as necessary
|
# Modify each value as necessary
|
||||||
connString: {{ matrix_mx_puppet_skype_database_connString | to_json }}
|
connString: {{ matrix_mx_puppet_skype_database_connection_string|to_json }}
|
||||||
{% else %}
|
{% else %}
|
||||||
# Use SQLite3 as a database backend
|
# Use SQLite3 as a database backend
|
||||||
# The name of the database file
|
# The name of the database file
|
||||||
filename: {{ matrix_mx_puppet_skype_database_file }}
|
filename: {{ matrix_mx_puppet_skype_sqlite_database_path_in_container|to_json }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
provisioning:
|
provisioning:
|
||||||
|
Loading…
Reference in New Issue
Block a user