Update to 2021-10-29 11:00

master
Daniel Berteaud 3 years ago
parent fda3632908
commit b30c9832a7
  1. 4
      roles/bookstack/defaults/main.yml
  2. 4
      roles/diagrams/defaults/main.yml
  3. 3
      roles/n8n/tasks/directories.yml
  4. 1
      roles/n8n/templates/env.j2

@ -1,11 +1,11 @@
---
# Version to deploy
bookstack_version: '21.10.1'
bookstack_version: '21.10.2'
# URL of the arhive
bookstack_archive_url: https://github.com/BookStackApp/BookStack/archive/v{{ bookstack_version }}.tar.gz
# Expected sha1 of the archive
bookstack_archive_sha1: 8614ddf71205bcf007cc28396eae1b7d9138dda2
bookstack_archive_sha1: 007481362a0e904c43d015cf16dc9eb40c52c5e0
# Should ansible handle bookstack upgrades or just the inintial install
bookstack_manage_upgrade: True

@ -1,11 +1,11 @@
---
# Veresion of diagrams to deploy
diagrams_version: 15.6.0
diagrams_version: 15.6.2
# URL of the WAR file to deploy
diagrams_war_url: https://github.com/jgraph/drawio/releases/download/v{{ diagrams_version }}/draw.war
# Expected sha1 of the WAR file
diagrams_war_sha1: 3fc65c6908a46eb38937a50a6cdb7371eef501ed
diagrams_war_sha1: ac2f203855dce30f01418ded6131f948e8d72206
# root directory of the installation
diagrams_root_dir: /opt/diagrams
# Should ansible manage upgrades, or just initial install ?

@ -11,6 +11,9 @@
- dir: "{{ n8n_root_dir }}/data"
owner: "{{ n8n_user }}"
mode: 700
- dir: "{{ n8n_root_dir }}/.n8n/custom"
owner: "{{ n8n_user }}"
mode: 700
- dir: "{{ n8n_root_dir }}/etc"
group: "{{ n8n_user }}"
mode: 750

@ -5,6 +5,7 @@ VUE_APP_URL_BASE_API={{ n8n_public_url }}
N8N_ENCRYPTION_KEY={{ n8n_secret_key | quote }}
EXECUTIONS_DATA_PRUNE=true
EXECUTIONS_DATA_MAX_AGE={{ n8n_data_max_age }}
N8N_CUSTOM_EXTENSIONS={{ n8n_root_dir }}/.n8n/custom
{% for env in n8n_env_var.keys() | list %}
{{ env }}={{ n8n_env_var[env] }}
{% endfor %}

Loading…
Cancel
Save