You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although kubectl defaults to strategic merge and the kubernetes python api supports strategic merge, the java api doesn't yet. The information to get this working was there, just not immediately obvious.
JSON patch add/remove works with a patch string like "{\"op\":\"add\",\"path\":\"/metadata/labels/" + label + "\", \"value\": \"" + value + "\" }"
Uh oh!
There was an error while loading. Please reload this page.
but with the api I get similar/same error to #127 .
content type above is
application/merge-patch+json
.So it terms of trying to debug/fix this these changes made it work for me. They are not proper fixes...:
Ie. force a merge patch and don't serialize the json string.
Is it possible for anyone to review the findings and prepare a proper fix? thanks
The text was updated successfully, but these errors were encountered: