Compare commits

...

2 Commits

@ -90,11 +90,11 @@ matrix_mx_puppet_twitter_access_token: "{{ MATRIX_MX_PUPPET_TWITTER_ACCESS_TOKEN
matrix_mx_puppet_twitter_access_token_secret: "{{ MATRIX_MX_PUPPET_TWITTER_ACCESS_TOKEN_SECRET }}"
matrix_mx_puppet_twitter_environment: "{{ MATRIX_MX_PUPPET_TWITTER_ENVIRONMENT }}"
matrix_postgres_connection_password: "{{ vault_matrix_postgres_connection_password }}"
matrix_postgres_backup_enabled: true
matrix_postgres_backup_schedule: "@weekly"
matrix_postgres_backup_keep_weeks: "5"
matrix_postgres_backup_path: "/matrix/postgres/backups"
devture_postgres_connection_password: "{{ vault_matrix_postgres_connection_password }}"
devture_postgres_backup_enabled: true
devture_postgres_backup_schedule: "@weekly"
devture_postgres_backup_keep_weeks: "5"
devture_postgres_backup_base_path: "/matrix/postgres/backups"
# added by jlj 05/28/21 -- heisenbridge testing
matrix_heisenbridge_enabled: true

@ -8,6 +8,9 @@
- make sure you have the proper gpg key on your file system ( since we are using the "open the vault" method of protecting our passwords here)
- Make sure you've got the posix ansible collection installed: ~ansible-galaxy collection install ansible.posix~
** updating ansible roles
TLDR: when updating the playbook and before running it, you'll need to run make roles to make ansible-galaxy download dependency roles (see the requirements.yml file) to the roles/galaxy directory. Without this, the playbook won't work.
** common scripts:
~ansible-playbook -i inventory/hosts matrix-docker-ansible-deploy/setup.yml --tags=setup-all,start~
- this will upgrade your configured matrix things.

Loading…
Cancel
Save