Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for runtimeFlags (0.5 sec)

  1. common-protos/k8s.io/api/node/v1/generated.proto

    // RuntimeClass.
    message Scheduling {
      // nodeSelector lists labels that must be present on nodes that support this
      // RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
      // node matched by this selector. The RuntimeClass nodeSelector is merged
      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
      // +mapType=atomic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1alpha1/types_swagger_doc_generated.go

    var map_Scheduling = map[string]string{
    	"":             "Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass.",
    	"nodeSelector": "nodeSelector lists labels that must be present on nodes that support this RuntimeClass. Pods using this RuntimeClass can only be scheduled to a node matched by this selector. The RuntimeClass nodeSelector is merged with a pod's existing nodeSelector. Any conflicts will cause the pod to be rejected in admission.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. pkg/registry/node/runtimeclass/storage/storage.go

    		NewFunc:     func() runtime.Object { return &node.RuntimeClass{} },
    		NewListFunc: func() runtime.Object { return &node.RuntimeClassList{} },
    		ObjectNameFunc: func(obj runtime.Object) (string, error) {
    			return obj.(*node.RuntimeClass).Name, nil
    		},
    		DefaultQualifiedResource:  node.Resource("runtimeclasses"),
    		SingularQualifiedResource: node.Resource("runtimeclass"),
    
    		CreateStrategy: runtimeclass.Strategy,
    		UpdateStrategy: runtimeclass.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/node/v1beta1/generated.proto

    // RuntimeClass.
    message Scheduling {
      // nodeSelector lists labels that must be present on nodes that support this
      // RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
      // node matched by this selector. The RuntimeClass nodeSelector is merged
      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
      // +mapType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/node/v1alpha1/generated.proto

    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    message Scheduling {
      // nodeSelector lists labels that must be present on nodes that support this
      // RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
      // node matched by this selector. The RuntimeClass nodeSelector is merged
      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/node/v1alpha1/types.go

    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    type Scheduling struct {
    	// nodeSelector lists labels that must be present on nodes that support this
    	// RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
    	// node matched by this selector. The RuntimeClass nodeSelector is merged
    	// with a pod's existing nodeSelector. Any conflicts will cause the pod to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  7. pkg/apis/node/validation/validation_test.go

    	tests := []struct {
    		name        string
    		rc          node.RuntimeClass
    		expectError bool
    	}{{
    		name:        "invalid name",
    		expectError: true,
    		rc: node.RuntimeClass{
    			ObjectMeta: metav1.ObjectMeta{Name: "&!@#"},
    			Handler:    "foo",
    		},
    	}, {
    		name:        "invalid Handler name",
    		expectError: true,
    		rc: node.RuntimeClass{
    			ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    			Handler:    "&@#$",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1beta1/types.go

    }
    
    // Scheduling specifies the scheduling constraints for nodes supporting a
    // RuntimeClass.
    type Scheduling struct {
    	// nodeSelector lists labels that must be present on nodes that support this
    	// RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
    	// node matched by this selector. The RuntimeClass nodeSelector is merged
    	// with a pod's existing nodeSelector. Any conflicts will cause the pod to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/node/v1beta1/types_swagger_doc_generated.go

    	"scheduling": "scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it. If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes.",
    }
    
    func (RuntimeClass) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. pkg/apis/node/validation/validation.go

    	"k8s.io/kubernetes/pkg/apis/core"
    	corevalidation "k8s.io/kubernetes/pkg/apis/core/validation"
    	"k8s.io/kubernetes/pkg/apis/node"
    )
    
    // ValidateRuntimeClass validates the RuntimeClass
    func ValidateRuntimeClass(rc *node.RuntimeClass) field.ErrorList {
    	allErrs := apivalidation.ValidateObjectMeta(&rc.ObjectMeta, false, apivalidation.NameIsDNSSubdomain, field.NewPath("metadata"))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:08:24 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top