-
Notifications
You must be signed in to change notification settings - Fork 529
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Garbage collection does not seem to work #1485
Comments
Issues go stale after 90d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
So, since I did not receive any updates on this, my assumption is that this is either a bug with low priority, or it is expected behaviour.
|
For the OpenShift objects (item 3) I have currently implemented the following custom code:
I would have loved it to be taken care of out of the box. |
Decided to leave this issue stale. Auto-close when rotten is fine... |
Stale issues rot after 30d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle rotten |
Rotten issues close after 30d of inactivity. Reopen the issue by commenting /close |
@openshift-bot: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Hi,
we are building an operator where we have a higher level object called PAAS, which in turn creates Namespaces, ClusterResourceQuota's, Groups, etc. All works as expected:
controllerutil.SetControllerReference(paas, ns, r.Scheme)
for that)But
Which is weird because
controllerutil.SetControllerReference(paas, quota, r.Scheme)
for quotas, and same for the groupIt is just that the garbage collector does not seem to work for objects that come from the OpenShift/api project
My questions:
Note, btw that de quota names are derived from the paas name, and so I was able to write a hack.
But that hack will not work for Groups, and I don't like the hack (even for quotas)...
The text was updated successfully, but these errors were encountered: