[ci skip] platform: add ndots=2 dns_config to all deployment pod specs

Prevents Terraform from reverting the Kyverno inject-ndots mutation
on every apply. 23 pod specs across 19 platform module files.
This commit is contained in:
Viktor Barzin 2026-02-23 22:43:05 +00:00
parent a0df23f565
commit 0a1d53b6dd
19 changed files with 138 additions and 0 deletions

View file

@ -178,6 +178,12 @@ resource "kubernetes_deployment" "mysql" {
}
}
dns_config {
option {
name = "ndots"
value = "2"
}
}
}
}
}
@ -427,6 +433,12 @@ resource "kubernetes_deployment" "phpmyadmin" {
value = "300M"
}
}
dns_config {
option {
name = "ndots"
value = "2"
}
}
}
}
}
@ -779,6 +791,12 @@ resource "kubernetes_deployment" "postgres" {
# name = "mycnf"
# }
# }
dns_config {
option {
name = "ndots"
value = "2"
}
}
}
}
}
@ -858,6 +876,12 @@ resource "kubernetes_deployment" "pgadmin" {
server = var.nfs_server
}
}
dns_config {
option {
name = "ndots"
value = "2"
}
}
}
}
}