cclarkedt
cclarkedt
@hhatto What are your thoughts?
Thanks for looking at this, is much appreciated. I just added one comment for review on the PR
Apologies for the slow reply. > Are you not getting reconciles for the MyCR parent object when the pod restarts? From my understanding kubelet will restart the container and not...
@sbueringer I'm setting `controller: true` on the pod's ownerRef: ```yaml ownerReferences: - apiVersion: apps/v1 blockOwnerDeletion: true controller: true kind: ReplicaSet name: my-cr-12345 uid: xxx ``` Not too sure why the...
Thanks for the info, assuming I've set this in the correct place (see below) I am still not getting reconcile events as originally described ```go // SetupWithManager sets up the...
> Wouldn't this not give you the events from an owned object? From doing some debugging this event filter isn't receiving the pod restart events either. Do you have any...
So I found that it is partly working as expected and the CR is receiving reconcile events on liveness probe failure. However, it is when the start-up probe fails in...