technitium: cut memory — primary 2Gi → 1Gi, secondary+tertiary 2Gi → 512Mi

Right-sizing per krr report (2026-05-22). Zone data is ~43 MiB; the rest
was cache headroom. Primary keeps more (1 GiB) since it owns authoritative
zones; replicas get 512 MiB. DNS sanity-checked across CoreDNS and the
MetalLB external IP (10.0.20.201) post-rollout.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Viktor Barzin 2026-05-23 10:03:51 +00:00
parent 931d7b6c9d
commit b4aa8eaf58
2 changed files with 6 additions and 6 deletions

View file

@ -123,10 +123,10 @@ resource "kubernetes_deployment" "technitium_secondary" {
resources {
requests = {
cpu = "100m"
memory = "2Gi"
memory = "512Mi"
}
limits = {
memory = "2Gi"
memory = "512Mi"
}
}
port {
@ -285,10 +285,10 @@ resource "kubernetes_deployment" "technitium_tertiary" {
resources {
requests = {
cpu = "100m"
memory = "2Gi"
memory = "512Mi"
}
limits = {
memory = "2Gi"
memory = "512Mi"
}
}
port {

View file

@ -179,10 +179,10 @@ resource "kubernetes_deployment" "technitium" {
resources {
requests = {
cpu = "100m"
memory = "2Gi"
memory = "1Gi"
}
limits = {
memory = "2Gi"
memory = "1Gi"
}
}
port {