Update to 2023-04-11 15:00

This commit is contained in:
Daniel Berteaud
2023-04-11 15:00:42 +02:00
parent 2a3d56fddc
commit 138c0bf3b2
55 changed files with 113 additions and 79 deletions

View File

@@ -10,22 +10,22 @@ taiga_user: taiga
# Archives URL, versions and expected checksums
taiga_archives:
back:
version: 6.5.2
url: https://github.com/kaleidos-ventures/taiga-back/archive/refs/tags/6.5.2.tar.gz
sha256: 46a1ceb98166d71ee2ed5ac4a5a26d7b24fee65bb90afc2b80b4321feb160222
version: 6.6.2
url: https://github.com/kaleidos-ventures/taiga-back/archive/refs/tags/6.6.2.tar.gz
sha256: f29c52d2ac7fb647813814971d98ad0ad8c9213aeb297b50741904913a17eef5
front:
version: 6.5.2
url: https://github.com/kaleidos-ventures/taiga-front-dist/archive/refs/tags/6.5.2.tar.gz
sha256: 54e85c024be2d6a7b1e9ba5714c82b3743f82812183d0b84747baf1dfc5312d2
dir: taiga-front-dist-6.5.2
version: 6.6.0
url: https://github.com/kaleidos-ventures/taiga-front-dist/archive/refs/tags/6.6.0.tar.gz
sha256: 1c438a992c8d4c0af78eea34f6ad0e35b09758516ee1849ee1a7753f84020848
dir: taiga-front-dist-6.6.0
events:
version: 6.5.0
url: https://github.com/kaleidos-ventures/taiga-events/archive/refs/tags/6.5.0.tar.gz
sha256: c6307e1246b97a2aa7f53755dbceb98b24256badf8282b37b8a24b51d08b583f
version: 6.6.0
url: https://github.com/kaleidos-ventures/taiga-events/archive/refs/tags/6.6.0.tar.gz
sha256: dcd83d1f191328f369e874631a2f00bc6b18421d8ce81a08c5dfa26c081a9762
protected:
version: 6.5.0
url: https://github.com/kaleidos-ventures/taiga-protected/archive/refs/tags/6.5.0.tar.gz
sha256: 8465eaf078dee7b61f4fd5dbb216db94ea455b3c8d69c19c10ae33ff481e46f0
version: 6.6.0
url: https://github.com/kaleidos-ventures/taiga-protected/archive/refs/tags/6.6.0.tar.gz
sha256: 28d7b0f584a61a776ee3299984e5aa0d845c550bba63b5af1751050c50b089e5
# Database settings
taiga_db_server: "{{ pg_server | default('localhost') }}"

View File

@@ -11,7 +11,7 @@
- name: Install postgresql client
package:
name:
- postgresql14
- postgresql15
tags: taiga
- name: Stop services during upgrade
@@ -39,7 +39,7 @@
- name: Dump the database
command: >
/usr/pgsql-14/bin/pg_dump
/usr/pgsql-15/bin/pg_dump
--clean
--create
--host={{ taiga_db_server | quote }}

View File

@@ -99,7 +99,8 @@
- name: load initial data
django_manage:
command: loaddata initial_project_templates
command: loaddata
fixtures: initial_project_templates
app_path: "{{ taiga_root_dir }}/app/back"
virtualenv: "{{ taiga_root_dir }}/venv"

View File

@@ -81,6 +81,8 @@
virtualenv: "{{ taiga_root_dir }}/venv"
virtualenv_command: /bin/python3.9 -m venv
environment:
PATH: "{{ (pg_version == 'default') | ternary('', '/usr/pgsql-' ~ pg_version ~ '/bin:') }}/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
tags: taiga
- block:

View File

@@ -2,7 +2,7 @@
set -eo pipefail
PGPASSWORD='{{ taiga_db_pass }}' /usr/pgsql-14/bin/pg_dump \
PGPASSWORD='{{ taiga_db_pass }}' /usr/pgsql-15/bin/pg_dump \
--clean \
--create \
--username={{ taiga_db_user | quote }} \

View File

@@ -22,7 +22,7 @@ taiga_packages:
- curl
- tmux
- gettext
- postgresql14
- postgresql15
- postgresql-devel
- libpq-devel
- libxml2-devel