From 8fcbe906fc14556239b118144f623fcaa2209f7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 21 Nov 2023 15:57:33 +0100 Subject: [PATCH] defaults: fix variable name for DB UID MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 3d9ea7a..6432342 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -9,7 +9,7 @@ postgres_ha_cont_backup_vol: '{{ postgres_ha_service_path }}/backup' postgres_ha_cont_image: 'postgres:15.1-alpine' postgres_ha_cont_port: 5432 postgres_ha_cont_uid: 70 -postgres_ha_host_uid: '{{ 100000 + hackmd_db_cont_uid | int }}' +postgres_ha_host_uid: '{{ 100000 + postgres_ha_cont_uid | int }}' postgres_ha_cont_run_size: '512K' postgres_ha_cont_tmp_size: '256K'