Skip to content

Commit d775155

Browse files
committed
Give Archivematica more disk space in production
High upload volume last week caused Archivematica to stop working in production because it ran out of space for temporary files. This commit gives it more space in an effort to prevent this from happening again.
1 parent c858d6d commit d775155

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

archivematica/prod_cluster/archivematica_deployment.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ resource "kubernetes_persistent_volume_claim" "archivematica_prod_pipeline_data_
764764
access_modes = ["ReadWriteOnce"]
765765
resources {
766766
requests = {
767-
storage = "64Gi"
767+
storage = "256Gi"
768768
}
769769
}
770770

archivematica/prod_cluster/eks-cluster.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ module "eks" {
6767
xvda = {
6868
device_name = "/dev/xvda"
6969
ebs = {
70-
volume_size = 64
70+
volume_size = 256
7171
volume_type = "gp2"
7272
delete_on_termination = true
7373
encrypted = true

0 commit comments

Comments
 (0)