We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
var cronJobPatch = new JsonPatchDocument<V1CronJob>().Replace(e => e.Spec.Suspend, true); var cronJobWithHttp = await client.PatchNamespacedCronJobAsync(new V1Patch(cronJobPatch, V1Patch.PatchType.JsonPatch), name, namespace);
this code will fail on dotnet 6 and k8s dotnet client 7.x+ this worked perfectly fine on 6.x+
The text was updated successfully, but these errors were encountered:
please see #772 newtonjson is replaced by system.text.json
Sorry, something went wrong.
var cronJobPatch = new JsonPatchDocument<V1CronJob>().Replace(e => e.Spec.Suspend, true); var cronJobWithHttp = await client.PatchNamespacedCronJobAsync(new V1Patch(cronJobPatch, V1Patch.PatchType.JsonPatch), name, namespace); this code will fail on dotnet 6 and k8s dotnet client 7.x+ this worked perfectly fine on 6.x+
I had also same issue please check it out my fix, I just made also PR for this issue
P.S. My example for csrApproval but you will get point of using new approach for new patch logic
thanks for your help, I will close my comment for now!
No branches or pull requests
this code will fail on dotnet 6 and k8s dotnet client 7.x+ this worked perfectly fine on 6.x+
The text was updated successfully, but these errors were encountered: