Update to 2022-06-14 15:00

This commit is contained in:
Daniel Berteaud 2022-06-14 15:00:12 +02:00
parent 1349c89c59
commit ba8774c0fd
3 changed files with 7 additions and 5 deletions

View File

@ -5,12 +5,12 @@
# You can set it to a number or a simple string (no special chars)
kimai_id: 1
# Kimai version to deploy
kimai_version: '1.20.3'
kimai_version: '1.20.4'
# URL of the archive
kimai_archive_url: https://github.com/kevinpapst/kimai2/archive/refs/tags/{{ kimai_version }}.tar.gz
# Expected sha256 of the archive
kimai_archive_sha256: 213eaee649e835ef0c231e042e27b622f822276fe02eedc874692d2c1db04872
kimai_archive_sha256: 414d5af515471ca262c0180bf4d4e0528c79d5533d0c3be09fb236ef912d3409
# Directory where kimai will be installed
kimai_root_dir: /opt/kimai_{{ kimai_id }}

View File

@ -1,15 +1,15 @@
---
# Version to deploy
metabase_version: 0.43.2
metabase_version: 0.43.3
# URL to fetch the jar
metabase_jar_url: https://downloads.metabase.com/v{{ metabase_version }}/metabase.jar
# Expected sha256 of the jar
metabase_jar_sha256: ec14257991817fdc6dc6891c170dcb12f727781ad381e706c870aa08d469d71c
metabase_jar_sha256: 5d424d9f2cc11980b78cc8b5a55bdd30d468f33c6415cc737478f2b6608056a3
# When building from source
metabase_archive_url: https://github.com/metabase/metabase/archive/refs/tags/v{{ metabase_version }}.tar.gz
# Expected sha256 of the archive
metabase_archive_sha256: a3a4cc78cda675b44bd92943ae25b35b5378febacd3933c34d837f2fc2b8bec5
metabase_archive_sha256: ef0707477f1cee249d733b3e8cea79f60ed3cc7c486df0243d7c781fa619a91b
# Should ansible handle upgrades ? If set to false, only the initial install (and the config) will be handled
metabase_manage_upgrade: True

View File

@ -16,6 +16,8 @@
url: "{{ metabase_jar_url }}"
dest: "{{ metabase_root_dir }}/tmp/"
checksum: sha256:{{ metabase_jar_sha256 }}
retries: 5 # Download from github can fails sometimes
delay: 10
- name: Move the JAR to the app dir
copy: src={{ metabase_root_dir }}/tmp/metabase.jar dest={{ metabase_root_dir }}/app/ mode=644 remote_src=True