Skip to content

Commit ddb91b4

Browse files
committed
fix: skip installing ndisc issue resolver in qemu mode
The issue was caused by very frequent RAs in ec2 when operating in IPv6 mode. The qemu artifact gets configured with a static IP instead, so this service should no longer be needed. Additionally, fixes the build process to correctly define qemu_mode for both ansible calls.
1 parent e653fdd commit ddb91b4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ansible/playbook.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
import_tasks: tasks/fix_ipv6_ndisc.yml
8383
tags:
8484
- install-supabase-internal
85-
when: debpkg_mode or nixpkg_mode
85+
when: (debpkg_mode or nixpkg_mode) and (qemu_mode is undefined)
8686

8787
- name: Start Postgres Database without Systemd
8888
become: yes

ansible/vars.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ postgres_major:
99

1010
# Full version strings for each major version
1111
postgres_release:
12-
postgresorioledb-17: "17.0.1.57-orioledb"
13-
postgres17: "17.4.1.007"
14-
postgres15: "15.8.1.064"
12+
postgresorioledb-17: "17.0.1.58-orioledb"
13+
postgres17: "17.4.1.008"
14+
postgres15: "15.8.1.065"
1515

1616
# Non Postgres Extensions
1717
pgbouncer_release: "1.19.0"

ebssurrogate/scripts/qemu-bootstrap-nix.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ callbacks_enabled = timer, profile_tasks, profile_roles
3535
EOF
3636
# Run Ansible playbook
3737
export ANSIBLE_LOG_PATH=/tmp/ansible.log && export ANSIBLE_REMOTE_TEMP=/mnt/tmp
38-
ansible-playbook ./ansible/playbook.yml --extra-vars '{"nixpkg_mode": true, "debpkg_mode": false, "stage2_nix": false}' \
38+
ansible-playbook ./ansible/playbook.yml --extra-vars '{"nixpkg_mode": true, "debpkg_mode": false, "stage2_nix": false, "qemu_mode": true}' \
3939
--extra-vars "postgresql_version=postgresql_${POSTGRES_MAJOR_VERSION}" \
4040
--extra-vars "postgresql_major_version=${POSTGRES_MAJOR_VERSION}" \
4141
--extra-vars "postgresql_major=${POSTGRES_MAJOR_VERSION}" \

0 commit comments

Comments
 (0)