fix: disable cert-manager webhook for pvc-autoresizer, use self-signed cert [ci skip]

Cluster doesn't have cert-manager installed. Use self-signed certificate
for the controller and disable the PVC mutating webhook (annotations are
set directly on PVCs via Terraform).
This commit is contained in:
Viktor Barzin 2026-04-03 23:44:49 +03:00
parent ce7b8c2b2e
commit 3d3759ea2f

View file

@ -35,5 +35,13 @@ resource "helm_release" "pvc_autoresizer" {
}
}
}
webhook = {
certificate = {
generate = true
}
pvcMutatingWebhook = {
enabled = false
}
}
})]
}