Siyu Wang

Results 214 comments of Siyu Wang

> Actually I have similar need for metacontroller - it allows to dynamically add / remove kinds which users want to watch. Not it is using some internal implementation of...

> Actually (I typed from my phone) I want the same, in the metacontroller `RemoveEventHandler` is the only method added to interface - https://github.com/metacontroller/metacontroller/blob/master/pkg/dynamic/informer/informer.go#L51 Okey, I understand. That's a little...

@alexzielenski That's great, thanks! I'm sorry I was going to help out looking at that PR, but I'm too busy these months... So we just have to wait for a...

@alculquicondor Hey Aldo, let me help you :) /assign

> This is very tempting to add functionality such as this to your solution, but enabling it on production might cause a sensitive information leakage. That's true if we enable...

/ok-to-test /cc @alvaroaleman

@setood For this case, you should use `IsAlreadyExists` to check the error returned from Create: ```golang if err := r.Create(ctx, service); err != nil { if !errors.IsAlreadyExists(err) { return ctrl.Result{},...