-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposal: VALIDATE Operation #1132
Comments
@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). |
If this is only really checking static config, and doing zero runtime validation, are we just reinventing JSON-Schema for plugin values? I.E. should we just allow plugins to declare a JSON schema, rather than add a new verb? EDIT: Yeah Tomo mentioned this already:
I'd at least like to investigate why we shouldn't do something like that (it may turn out that there are good reasons to add a verb and not use something more standard, but it's not clear ATM to me at least what those are). We could let plugins inline a schema, we could have a field that points to a schema, we could have a by-convention directory with schemas sharing names, etc etc. |
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.The text was updated successfully, but these errors were encountered: