Skip to content

Commit 2997c92

Browse files
authored
feat: reduce AMI data volume size (#2090)
* feat: reduce initial data volume size * fix: image tag * docs: context * chore: reset image tag * chore: bump version * chore: bump version again
1 parent 949715d commit 2997c92

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

amazon-arm64-nix.pkr.hcl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,13 @@ source "amazon-ebssurrogate" "source" {
128128
volume_type = "gp3"
129129
}
130130

131+
# NOTE: /dev/xvdh is mounted as /data (PostgreSQL data/WAL). The 1 GiB size
132+
# is a minimal default for this AMI; consumers should override this volume
133+
# size at launch.
131134
launch_block_device_mappings {
132135
device_name = "/dev/xvdh"
133136
delete_on_termination = true
134-
volume_size = 8
137+
volume_size = 1
135138
volume_type = "gp3"
136139
}
137140

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ postgres_major:
1010

1111
# Full version strings for each major version
1212
postgres_release:
13-
postgresorioledb-17: "17.6.0.060-orioledb"
14-
postgres17: "17.6.1.103"
15-
postgres15: "15.14.1.103"
13+
postgresorioledb-17: "17.6.0.061-orioledb"
14+
postgres17: "17.6.1.104"
15+
postgres15: "15.14.1.104"
1616

1717
# Non Postgres Extensions
1818
pgbouncer_release: 1.25.1

0 commit comments

Comments
 (0)