Starting kubernetes 1.20 there has been a change regarding ownerReferences
and how K8s performs GC.
Basically if a resource in x
namespace spins up a pod/job in a y
namespace with child having ownerReferences
referencing to parent resource in x
, K8s terminates the child pod/job.
- Resolves non-deterministic behavior of the garbage collection controller when ownerReferences with incorrect data are encountered. Events with a reason of OwnerRefInvalidNamespace are recorded when namespace mismatches between child and owner objects are detected. The kubectl-check-ownerreferences tool can be run prior to upgrading to locate existing objects with invalid ownerReferences.
- A namespaced object with an ownerReference referencing a uid of a namespaced kind which does not exist in the same namespace is now consistently treated as though that owner does not exist, and the child object is deleted.
- A cluster-scoped object with an ownerReference referencing a uid of a namespaced kind is now consistently treated as though that owner is not resolvable, and the child object is ignored by the garbage collector. (#92743, @liggitt) [SIG API Machinery, Apps and Testing]
If we remove the ownerReferences
, the resource wont be garbage collected. Is there a way to deal with this situation i.e.; how to make ownerReferences
work in multiple namespaces OR let the job/pod clean itself once completed? Thanks.
As per Fix GC uid races and handling of conflicting ownerReferences #92743
and Update GC cross-namespace note #25091
So, using
ownerReferences
for garbage collection across namespaces is not possible by desing.However, you can emulate multi-namespace GC using labels. You just need to configure those labels when some object creates sub-object.
Alternatively you can delete a namespace to GC all object in that namespace, but that's probably suboptimal solution.
EDIT
Alternatively there could be a bash script that deletes all objects whose controller object doesn't exist, based on labels. It could also run inside the cluster with proper service account configured.
There is no straightforward, built-in option to achieve what you want. You should keep owner referenced objects in the same namespace.