Skip to content

Commit

Permalink
provisioning/aarch64: increase builders volume size
Browse files Browse the repository at this point in the history
The Aarch64 builder consistently complains about a lack of space.
After a brief discussion we decided to increase its size.

See: openshift/os#1554
Ref: #1031 (comment)
  • Loading branch information
c4rt0 authored and dustymabe committed Sep 10, 2024
1 parent cd1c87e commit 26475a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions multi-arch-builders/provisioning/aarch64/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -126,18 +126,18 @@ resource "aws_instance" "coreos-aarch64-builder" {
tags = {
Name = "${var.project}-${formatdate("YYYYMMDD", timestamp())}"
}
ami = local.ami
ami = local.ami
user_data = data.ct_config.butane.rendered
instance_type = "m6g.metal"
vpc_security_group_ids = [aws_security_group.sg.id]
vpc_security_group_ids = [aws_security_group.sg.id]
subnet_id = local.aws_subnet_id
root_block_device {
volume_size = "200"
volume_size = "400"
volume_type = "gp3"
}
associate_public_ip_address = var.distro == "fcos" ? "true" : "false"
}

output "instance_ip_addr" {
value = var.distro == "rhcos" ? aws_instance.coreos-aarch64-builder.private_ip : aws_instance.coreos-aarch64-builder.public_ip
}
}

0 comments on commit 26475a4

Please sign in to comment.