Comment on Should I keep shared or separate k8s clusters?
scrubbles@poptalk.scrubbles.tech 2 months ago
You’re looking for namespaces. Have a public and private namespace
Comment on Should I keep shared or separate k8s clusters?
scrubbles@poptalk.scrubbles.tech 2 months ago
You’re looking for namespaces. Have a public and private namespace
alienscience@programming.dev 2 months ago
Just 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
andLimitRange
.