You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
I'm writing a cluster-scoped CompositeController that sometimes needs to create Pods, which are of course namespaced.
I don't think the support for this in Metacontroller is working. When my controller omits a Pod it had created from the children it returns, metacontroller can't delete it, and logs an error on every reconcile:
can't reconcile children for <the custom resource>: can't delete Pod <ns>/<name>: the server could not find the requested resource
I'm guessing that ManageChildren's deleteChildren helper chokes on the namespace/name keys Metacontroller generates for namespace-scoped children with a cluster-scoped parent:
I'm writing a cluster-scoped
CompositeController
that sometimes needs to createPods
, which are of course namespaced.I don't think the support for this in Metacontroller is working. When my controller omits a Pod it had created from the
children
it returns, metacontroller can't delete it, and logs an error on every reconcile:I'm guessing that
ManageChildren
'sdeleteChildren
helper chokes on thenamespace/name
keys Metacontroller generates for namespace-scoped children with a cluster-scoped parent:If
name
here is really"namespace/name"
, that's not going to work. It looks likeupdateChildren
is affected as well.The text was updated successfully, but these errors were encountered: