We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Idempotence: An External Patch Extension must only return patches if changes to the templates are required, i.e. unnecessary patches when the template is already in the desired state must be avoided. -- https://cluster-api.sigs.k8s.io/tasks/experimental-features/runtime-sdk/implement-topology-mutation-hook#patch-extension-guidelines
We want patches to be idempotent.
Right now, this burden is the individual patch handlers, namely, the Mutate method defined in the MetaMutator interface).
Mutate
I think we should implement idempotent patching in a package that all handlers can use, for at least these reasons:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We want patches to be idempotent.
Right now, this burden is the individual patch handlers, namely, the
Mutate
method defined in the MetaMutator interface).I think we should implement idempotent patching in a package that all handlers can use, for at least these reasons:
The text was updated successfully, but these errors were encountered: