Comment on Should I keep shared or separate k8s clusters?
alienscience@programming.dev 2 months agoJust to add to this point. I have been running a separate namespace for CI and it is possible to limit total CPU and memory use for each namespace. This saved me from having to run a VM. Everything (even junk) goes onto k8s isolated by separate namespaces.
If limits and namespaces like this are interesting to you, the k8s resources to read up on are ResourceQuota
and LimitRange
.