ValidationInterface defines an admission handler that validates requests. It may not perform any kind of mutation.
| 32 | // ValidationInterface defines an admission handler that validates requests. |
| 33 | // It may not perform any kind of mutation. |
| 34 | type ValidationInterface interface { |
| 35 | Interface |
| 36 | |
| 37 | Validate(ctx context.Context, request admissionv1.AdmissionRequest, oldObj, obj runtime.Object) (warnings []string, err error) |
| 38 | } |
| 39 | |
| 40 | // MutationInterface defines an admission handler that validates requests. |
| 41 | // It may not perform any kind of mutation. |
no outgoing calls
no test coverage detected
searching dependent graphs…