Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 277 for patchtype (0.26 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/fake/fake_customresourcedefinition.go

    	return err
    }
    
    // Patch applies the patch and returns the patched customResourceDefinition.
    func (c *FakeCustomResourceDefinitions) Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1beta1.CustomResourceDefinition, err error) {
    	emptyResult := &v1beta1.CustomResourceDefinition{}
    	obj, err := c.Fake.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admission/v1/generated.proto

      // +optional
      optional bytes patch = 4;
    
      // The type of Patch. Currently we only allow "JSONPatch".
      // +optional
      optional string patchType = 5;
    
      // AuditAnnotations is an unstructured key value map set by remote admission controller (e.g. error=image-blacklisted).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // +optional
      optional bytes patch = 4;
    
      // The type of Patch. Currently we only allow "JSONPatch".
      // +optional
      optional string patchType = 5;
    
      // AuditAnnotations is an unstructured key value map set by remote admission controller (e.g. error=image-blacklisted).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	// ReadOnly controls write access to the volume
    	ReadOnly bool
    	// PathType is the type of the HostPath.
    	PathType v1.HostPathType
    }
    
    // Patches contains options related to applying patches to components deployed by kubeadm.
    type Patches struct {
    	// Directory is a path to a directory that contains files named "target[suffix][+patchtype].extension".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty"`
    	// PathType is the type of the HostPath.
    	// +optional
    	PathType corev1.HostPathType `json:"pathType,omitempty"`
    }
    
    // Patches contains options related to applying patches to components deployed by kubeadm.
    type Patches struct {
    	// Directory is a path to a directory that contains files named "target[suffix][+patchtype].extension".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admission/v1/generated.proto

      // +optional
      optional bytes patch = 4;
    
      // The type of Patch. Currently we only allow "JSONPatch".
      // +optional
      optional string patchType = 5;
    
      // AuditAnnotations is an unstructured key value map set by remote admission controller (e.g. error=image-blacklisted).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      // +optional
      optional bytes patch = 4;
    
      // The type of Patch. Currently we only allow "JSONPatch".
      // +optional
      optional string patchType = 5;
    
      // AuditAnnotations is an unstructured key value map set by remote admission controller (e.g. error=image-blacklisted).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admission/v1beta1/types_swagger_doc_generated.go

    	"patch":            "The patch body. Currently we only support \"JSONPatch\" which implements RFC 6902.",
    	"patchType":        "The type of Patch. Currently we only allow \"JSONPatch\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. pkg/controller/controller_ref_manager.go

    		},
    	}
    	patchBytes, err := json.Marshal(&patch)
    	if err != nil {
    		return nil, err
    	}
    	return patchBytes, nil
    }
    
    func ownerReference(uid types.UID, patchType string) map[string]string {
    	return map[string]string{
    		"$patch": patchType,
    		"uid":    string(uid),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    		Resource(resource).
    		VersionedParams(options, metav1.ParameterCodec).
    		Body(obj).
    		Do(context.TODO()).
    		Get()
    }
    func (m *Helper) Patch(namespace, name string, pt types.PatchType, data []byte, options *metav1.PatchOptions) (runtime.Object, error) {
    	if options == nil {
    		options = &metav1.PatchOptions{}
    	}
    	if m.ServerDryRun {
    		options.DryRun = []string{metav1.DryRunAll}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
Back to top