From 6039393885856db1a074c0120fd905f56c867ad4 Mon Sep 17 00:00:00 2001 From: Martin Gruner Date: Thu, 7 Dec 2023 10:30:04 +0100 Subject: [PATCH] Fixes: #239 - Locale and Translation updates missing (#240) --- zammad/Chart.yaml | 2 +- zammad/templates/configmap-init.yaml | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/zammad/Chart.yaml b/zammad/Chart.yaml index f700b04b..e921b923 100644 --- a/zammad/Chart.yaml +++ b/zammad/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: zammad -version: 10.1.1 +version: 10.1.2 appVersion: 6.1.0-24 description: Zammad is a web based open source helpdesk/customer support system with many features to manage customer communication via several channels like telephone, facebook, twitter, chat and e-mails. home: https://zammad.org diff --git a/zammad/templates/configmap-init.yaml b/zammad/templates/configmap-init.yaml index a8bfb1d5..3c069cfd 100644 --- a/zammad/templates/configmap-init.yaml +++ b/zammad/templates/configmap-init.yaml @@ -12,7 +12,14 @@ data: bundle exec rake db:migrate bundle exec rake db:seed else + echo Executing migrations... bundle exec rake db:migrate + + echo Synchronizing locales... + bundle exec rails r "Locale.sync" + + echo Synchronizing translations... + bundle exec rails r "Translation.sync" fi echo "postgresql init complete :)" zammad-init: |-