Skip to content

Commit

Permalink
fix(nomad): increase storage size to recommended capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry authored and MasterPtato committed May 31, 2024
1 parent ac7366a commit 15327db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/tf/k8s_infra/nomad.tf
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ resource "kubernetes_stateful_set" "nomad_server" {
access_modes = ["ReadWriteOnce"]
resources {
requests = {
storage = var.deploy_method_cluster ? "64Gi" : "1Gi"
storage = var.deploy_method_cluster ? "100Gi" : "1Gi"
}
}
storage_class_name = var.k8s_storage_class
Expand Down

0 comments on commit 15327db

Please sign in to comment.