Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
8 changes: 2 additions & 6 deletions amazon-amd64-nix.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,8 @@ source "amazon-ebssurrogate" "source" {
launch_block_device_mappings {
device_name = "/dev/xvdf"
delete_on_termination = true
volume_size = 20
volume_size = 10
volume_type = "gp3"
iops = 10000
throughput = 1000
}

# NOTE: /dev/xvdh is mounted as /data (PostgreSQL data/WAL). The 1 GiB size
Expand All @@ -143,11 +141,9 @@ source "amazon-ebssurrogate" "source" {
launch_block_device_mappings {
device_name = "/dev/${var.build-vol}"
delete_on_termination = true
volume_size = 20
volume_size = 16
volume_type = "gp3"
omit_from_artifact = true
iops = 10000 # Added for build performance
throughput = 1000 # Added for build performance
}

run_tags = {
Expand Down
8 changes: 2 additions & 6 deletions amazon-arm64-nix.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,8 @@ source "amazon-ebssurrogate" "source" {
launch_block_device_mappings {
device_name = "/dev/xvdf"
delete_on_termination = true
volume_size = 20
volume_size = 10
volume_type = "gp3"
iops = 10000
throughput = 1000
}

# NOTE: /dev/xvdh is mounted as /data (PostgreSQL data/WAL). The 1 GiB size
Expand All @@ -143,11 +141,9 @@ source "amazon-ebssurrogate" "source" {
launch_block_device_mappings {
device_name = "/dev/${var.build-vol}"
delete_on_termination = true
volume_size = 20
volume_size = 16
volume_type = "gp3"
omit_from_artifact = true
iops = 10000 # Added for build performance
throughput = 1000 # Added for build performance
}

run_tags = {
Expand Down
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.072-orioledb"
postgres17: "17.6.1.115"
postgres15: "15.14.1.115"
postgresorioledb-17: "17.6.0.073-orioledb"
postgres17: "17.6.1.116"
postgres15: "15.14.1.116"

# Non Postgres Extensions
pgbouncer_release: 1.25.1
Expand Down
Loading