Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,5 @@ common-nix.vars.pkr.hcl
# pre-commit config is managed in nix
.pre-commit-config.yaml
nixos.qcow2
.lsp
.clj-kondo
4 changes: 2 additions & 2 deletions ansible/files/pgbouncer_config/pgbouncer.service.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Documentation=man:pgbouncer(1)
Documentation=https://www.pgbouncer.org/
After=network.target
{% if supabase_internal is defined %}
Requires=database-optimizations.service
After=database-optimizations.service
Requires=database_optimizations.service
After=database_optimizations.service
{% endif %}

[Service]
Expand Down
8 changes: 8 additions & 0 deletions ansible/tasks/setup-wal-g.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,11 @@
mode: '0664'
owner: 'postgres'
src: 'files/postgresql_config/conf.d/wal-g.conf'

- name: Create symlink for admin-mgr compatibility
ansible.builtin.file:
src: '/etc/postgresql-custom/conf.d/wal-g.conf'
dest: '/etc/postgresql-custom/wal-g.conf'
state: 'link'
owner: 'postgres'
group: 'postgres'
6 changes: 3 additions & 3 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.6.0.022-orioledb"
postgres17: "17.6.1.065"
postgres15: "15.14.1.065"
postgresorioledb-17: "17.6.0.023-orioledb-wal-g-1"
postgres17: "17.6.1.066-wal-g-1"
postgres15: "15.14.1.066-wal-g-1"

# Non Postgres Extensions
pgbouncer_release: 1.19.0
Expand Down
2 changes: 1 addition & 1 deletion audit-specs/baselines/ami-build/service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ service:
supabase-admin-agent_salt:
enabled: false
running: false
database-optimizations:
database_optimizations:
enabled: false
running: false
postgrest-optimizations:
Expand Down
4 changes: 2 additions & 2 deletions audit-specs/baselines/baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5461,7 +5461,7 @@ file:
owner: "0"
group: "0"
filetype: file
/etc/systemd/system/database-optimizations.service:
/etc/systemd/system/database_optimizations.service:
exists: true
mode: "0644"
owner: "0"
Expand Down Expand Up @@ -95424,7 +95424,7 @@ service:
cron:
enabled: true
running: true
database-optimizations:
database_optimizations:
enabled: false
running: false
dbus:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ file:
group: '0'
mode: '0644'
owner: '0'
/etc/systemd/system/database-optimizations.service:
/etc/systemd/system/database_optimizations.service:
exists: true
filetype: file
group: '0'
Expand Down
2 changes: 1 addition & 1 deletion audit-specs/baselines/prod-deployed/service-deployed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ service:
cron:
enabled: true
running: true
database-optimizations:
database_optimizations:
enabled: false
running: false
dbus:
Expand Down
Loading