Update to 2024-02-21 11:00

This commit is contained in:
Daniel Berteaud
2024-02-21 11:00:50 +01:00
parent 9e01b5f657
commit 591a80926b
20 changed files with 38 additions and 34 deletions

View File

@@ -1,15 +1,15 @@
---
# Version to deploy
metabase_version: 0.47.10
metabase_version: 0.48.6
# 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: e03c247ae1192b2c17a5fd9966cbbb9c289f625b56862d1b22680ce7a452c0d2
metabase_jar_sha256: aefb5e000abe14ff3cb4ba754c55e1da34bdaea35a77fbea3282ee32bc73978b
# 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: 4eb4bec096c23b6aeeacfee7e9f574c8aa7f946074097788dce4a21dccca544a
metabase_archive_sha256: 3f9ac75625610849f63129fde31d0831260fc11088e26705346a0df1c265059e
# Should ansible handle upgrades ? If set to false, only the initial install (and the config) will be handled
metabase_manage_upgrade: True

View File

@@ -8,6 +8,7 @@ User={{ metabase_user }}
WorkingDirectory={{ metabase_root_dir }}/app
EnvironmentFile={{ metabase_root_dir }}/etc/env
ExecStart=/usr/bin/java -Djava.net.preferIPv4Stack=true \
-Djava.io.tmpdir={{ metabase_root_dir }}/tmp \
{% if system_proxy is defined and system_proxy != '' %}
-Dhttp.proxyHost={{ system_proxy | urlsplit('hostname') }} -Dhttp.proxyPort={{ system_proxy | urlsplit('port') }} \
-Dhttps.proxyHost={{ system_proxy | urlsplit('hostname') }} -Dhttps.proxyPort={{ system_proxy | urlsplit('port') }} \