ENUM

KubernetesPatchType

Supported types of PATCH mutations for Kubernetes resources

link GraphQL Schema definition

  • enum KubernetesPatchType {
  • # A JSON MERGE PATCH mutation where all the keys in the patch replace the
  • # corresponding keys in the existing resource;
  • # accepts json, yaml, or resource
  • JSON_MERGE_PATCH
  • # A JSON PATCH mutation where the patch contains an array of
  • # add/remove/replace/move/copy/test operations
  • # which are applied onto the existing resource; accepts json or yaml
  • JSON_PATCH
  • }

link Require by