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
If the mutating admission controller is not enabled on K8s (cf. issue #2), our webhook will just silently never get called for anything. This breaks some of our admission control which leads to unexpected consequences. One obvious bad thing is that code that assumes a non-nil number of role members will crash, but there are other bad things.
I don't think we should even try to make the reconciliation code robust against the possibility of broken admission control. Instead, at startup time KD needs to probe whether the validator is working (send a request to it and make sure the request is received) and shut down if the validator is broken.
The text was updated successfully, but these errors were encountered:
If the mutating admission controller is not enabled on K8s (cf. issue #2), our webhook will just silently never get called for anything. This breaks some of our admission control which leads to unexpected consequences. One obvious bad thing is that code that assumes a non-nil number of role members will crash, but there are other bad things.
I don't think we should even try to make the reconciliation code robust against the possibility of broken admission control. Instead, at startup time KD needs to probe whether the validator is working (send a request to it and make sure the request is received) and shut down if the validator is broken.
The text was updated successfully, but these errors were encountered: