JSON Patch: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
=Internal= | =Internal= | ||
* [[JSON]] | |||
* [[JSON Merge Patch]] | * [[JSON Merge Patch]] | ||
* [[Kubectl_kustomize#Overview|kubectl kustomize]] | * [[Kubectl_kustomize#Overview|kubectl kustomize]] | ||
* [[Kubernetes Strategic Merge Patch|Kubernetes Strategic Merge Patch]] | * [[Kubernetes Strategic Merge Patch|Kubernetes Strategic Merge Patch]] | ||
* [[kubectl patch]] | * [[kubectl patch]] | ||
=Overview= | =Overview= | ||
JSON patch is defined in [https://datatracker.ietf.org/doc/html/rfc6902 RFC6902]. | JSON patch is defined in [https://datatracker.ietf.org/doc/html/rfc6902 RFC6902]. |
Revision as of 18:35, 29 July 2021
External
- https://tools.ietf.org/html/rfc6902
- https://kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
Internal
Overview
JSON patch is defined in RFC6902.
JSON patch defines a JSON document structure for expressing a sequence of operations to apply to a JSON document, in order to change it. The format is suitable to use with the HTTP PATCH method and an "application/json-patch+json" media type.
Also see: