Skip to content
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

Change operation type to update for services #224

Commits on Oct 1, 2024

  1. Change operation type to update for services

    The fact that we were using a "patch" operation on services is leading
    to some errors in the reconcile loop.  The "patch" should be reserved
    to use cases where we read an object from the system, make some changes
    to our local copy, and then want to "patch" it using the API to only
    send those fields that have changed.  What we were doing was creating
    a brand new object and attempting to "patch" that against what the
    running system already had which lead to trying to delete several
    runtime only attributes which I believe is what was leading to the
    errors.
    
    Signed-off-by: Allain Legacy <[email protected]>
    alegacy committed Oct 1, 2024
    Configuration menu
    Copy the full SHA
    64ac21d View commit details
    Browse the repository at this point in the history