Live cluster had stale resource limits causing OOMKills: - actualbudget-http-api: 128Mi → 512Mi (code already correct) - pg-cluster CNPG: 512Mi → 4Gi (code already correct) - dbaas ResourceQuota: 20Gi → 24Gi live (TF code has 64Gi) Formatting cleanup from terraform fmt included. [ci skip] Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
16 lines
297 B
HCL
16 lines
297 B
HCL
# Generated by Terragrunt. Sig: nIlQXj57tbuaRZEa
|
|
variable "kube_config_path" {
|
|
type = string
|
|
default = "~/.kube/config"
|
|
sensitive = true
|
|
}
|
|
|
|
provider "kubernetes" {
|
|
config_path = var.kube_config_path
|
|
}
|
|
|
|
provider "helm" {
|
|
kubernetes = {
|
|
config_path = var.kube_config_path
|
|
}
|
|
}
|