From 5e8b04c33337d5dd8e41672a4413c01d5391f098 Mon Sep 17 00:00:00 2001 From: Jim Chanco Jr Date: Mon, 17 Nov 2025 14:35:38 -0500 Subject: [PATCH 1/2] fix(setup-postgres.yml): fix missing initdb calls --- ansible/tasks/setup-postgres.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/tasks/setup-postgres.yml b/ansible/tasks/setup-postgres.yml index abb139292..f5baa2a75 100644 --- a/ansible/tasks/setup-postgres.yml +++ b/ansible/tasks/setup-postgres.yml @@ -240,7 +240,7 @@ become: true become_user: 'postgres' ansible.builtin.command: - cmd: /usr/lib/postgresql/bin/pg_ctl -D /var/lib/postgresql/data initdb -o "--allow-group-access" -o "--username=supabase_admin" + cmd: /usr/lib/postgresql/bin/pg_ctl -D /var/lib/postgresql/data initdb -o "--allow-group-access" -o "--username=supabase_admin" -o "--data-checksums" environment: LANG: en_US.UTF-8 LANGUAGE: en_US.UTF-8 @@ -257,7 +257,7 @@ become: true become_user: 'postgres' ansible.builtin.command: - cmd: /usr/lib/postgresql/bin/pg_ctl -D /var/lib/postgresql/data initdb -o "--allow-group-access" -o "--username=supabase_admin" -o "--locale-provider=icu" -o "--encoding=UTF-8" -o "--icu-locale=en_US.UTF-8" + cmd: /usr/lib/postgresql/bin/pg_ctl -D /var/lib/postgresql/data initdb -o "--allow-group-access" -o "--username=supabase_admin" -o "--locale-provider=icu" -o "--encoding=UTF-8" -o "--icu-locale=en_US.UTF-8" -o "--data-checksums" environment: LANG: en_US.UTF-8 LANGUAGE: en_US.UTF-8 From b47bb6b44fca70d2095833785a0182167dad70b2 Mon Sep 17 00:00:00 2001 From: Jim Chanco Jr Date: Mon, 17 Nov 2025 17:38:00 -0500 Subject: [PATCH 2/2] refactor(ansible): update vars.yml for ami testing --- ansible/vars.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/vars.yml b/ansible/vars.yml index eb248b55b..ef742421c 100644 --- a/ansible/vars.yml +++ b/ansible/vars.yml @@ -10,9 +10,9 @@ postgres_major: # Full version strings for each major version postgres_release: - postgresorioledb-17: "17.5.1.073-orioledb" - postgres17: "17.6.1.052" - postgres15: "15.14.1.052" + postgresorioledb-17: "17.5.1.073-orioledb-INDATA-211" + postgres17: "17.6.1.052-INDATA-211" + postgres15: "15.14.1.052-INDATA-211" # Non Postgres Extensions pgbouncer_release: 1.19.0