Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for PatchOptions (0.33 sec)

  1. pkg/controller/ttl/ttl_controller.go

    	if err != nil {
    		return err
    	}
    	_, err = ttlc.kubeClient.CoreV1().Nodes().Patch(ctx, node.Name, types.StrategicMergePatchType, patchBytes, metav1.PatchOptions{})
    	logger := klog.FromContext(ctx)
    	if err != nil {
    		logger.V(2).Info("Failed to change ttl annotation for node", "node", klog.KObj(node), "err", err)
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. pkg/apis/admission/types.go

    	// Operation might be a CREATE, in which case the Options will a
    	// `meta.k8s.io/v1.CreateOptions` even though the caller provided `meta.k8s.io/v1.PatchOptions`.
    	// +optional
    	Options runtime.Object
    }
    
    // AdmissionResponse describes an admission response.
    type AdmissionResponse struct {
    	// UID is an identifier for the individual request/response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 7.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1/generated.proto

      // Operation might be a CREATE, in which case the Options will a
      // `meta.k8s.io/v1.CreateOptions` even though the caller provided `meta.k8s.io/v1.PatchOptions`.
      // +optional
      optional .k8s.io.apimachinery.pkg.runtime.RawExtension options = 12;
    }
    
    // AdmissionResponse describes an admission response.
    message AdmissionResponse {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      // Operation might be a CREATE, in which case the Options will a
      // `meta.k8s.io/v1.CreateOptions` even though the caller provided `meta.k8s.io/v1.PatchOptions`.
      // +optional
      optional .k8s.io.apimachinery.pkg.runtime.RawExtension options = 12;
    }
    
    // AdmissionResponse describes an admission response.
    message AdmissionResponse {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admission/v1beta1/types_swagger_doc_generated.go

    }
    
    func (AdmissionRequest) SwaggerDoc() map[string]string {
    	return map_AdmissionRequest
    }
    
    var map_AdmissionResponse = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admission/v1/types.go

    	// Operation might be a CREATE, in which case the Options will a
    	// `meta.k8s.io/v1.CreateOptions` even though the caller provided `meta.k8s.io/v1.PatchOptions`.
    	// +optional
    	Options runtime.RawExtension `json:"options,omitempty" protobuf:"bytes,12,opt,name=options"`
    }
    
    // AdmissionResponse describes an admission response.
    type AdmissionResponse struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1beta1/types.go

    	// Operation might be a CREATE, in which case the Options will a
    	// `meta.k8s.io/v1.CreateOptions` even though the caller provided `meta.k8s.io/v1.PatchOptions`.
    	// +optional
    	Options runtime.RawExtension `json:"options,omitempty" protobuf:"bytes,12,opt,name=options"`
    }
    
    // AdmissionResponse describes an admission response.
    type AdmissionResponse struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/audit_test.go

    			o := NewAuditOptions()
    			o.LogOptions.Path = auditPath
    			o.LogOptions.BatchOptions.Mode = "foo"
    			return o
    		},
    	}, {
    		name: "invalid log buffer size",
    		options: func() *AuditOptions {
    			o := NewAuditOptions()
    			o.LogOptions.Path = auditPath
    			o.LogOptions.BatchOptions.Mode = "batch"
    			o.LogOptions.BatchOptions.BatchConfig.BufferSize = -3
    			return o
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 27 14:57:26 UTC 2022
    - 7.8K bytes
    - Viewed (0)
Back to top