Open LionelJouin opened 1 day ago
@LionelJouin , thank you for the proposal. I love to have validate functionality in CNI, but I l'm also wondering should we implement it as a part of 'Verb' (i.e. new commands into CNI plugin).
I suppose we should think how to implmenet based on following topics, at least:
In addition, as you mentioned above, it does not have to be tied into container runtime (i.e. could implement in validation-webhook), there should be several way to implement, such as:
From my point of view, I suppose we should implement out of 'plugin' go code (even in 'containernetworking/pluign' repo). So let's discuss about it in weekly call.
Overview
This proposal introduces a new
VALIDATE
operation which could be helpful in Multus-like projects.The
VALIDATE
operation would accept the same input as the ADD operation and perform a validation of it. This would be verifying:As of now,
ValidateNetworkList
/ValidateNetwork
exits, but checks only if all the specified plugins exist on disk and if every plugin supports the desired version. This function could be extended with theVALIDATE
operation.Example
In the following configuration:
The
VALIDATE
operation would ensure that:VALIDATE
is intended for configuration verification only, so the plugin should not check if, for example, the master interfaceeth0
exists or not.Benefits
The
VALIDATE
operation would allow Multus-like projects to create enhanced Kubernetes validation-webhook and prevent the creation of object (e.g. NetworkAttachementDefinition) which would never pass the configuration stage (as they are valid), thus, reducing the likelihood of errors during the actual ADD stage.