Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for NodeSpec (6.34 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	volumeSpec1 := controllervolumetesting.GetTestVolumeSpec(string(volumeName1), volumeName1)
    	nodeName1 := k8stypes.NodeName("worker-0")
    	node1 := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{Name: string(nodeName1)},
    		Spec: v1.NodeSpec{
    			Taints: []v1.Taint{{Key: v1.TaintNodeOutOfService, Effect: v1.TaintEffectNoExecute}},
    		},
    	}
    	informerFactory.Core().V1().Nodes().Informer().GetStore().Add(node1)
    	dsw.AddNode(nodeName1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.pb.go

    var xxx_messageInfo_NodeSelectorTerm proto.InternalMessageInfo
    
    func (m *NodeSpec) Reset()      { *m = NodeSpec{} }
    func (*NodeSpec) ProtoMessage() {}
    func (*NodeSpec) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{110}
    }
    func (m *NodeSpec) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *NodeSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // A list of node selector requirements by node's fields.
      // +optional
      repeated NodeSelectorRequirement matchFields = 2;
    }
    
    // NodeSpec describes the attributes that a node is created with.
    message NodeSpec {
      // PodCIDR represents the pod IP range assigned to the node.
      // +optional
      optional string podCIDR = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    // EndpointsList is a list of endpoints.
    type EndpointsList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    
    	Items []Endpoints
    }
    
    // NodeSpec describes the attributes that a node is created with.
    type NodeSpec struct {
    	// PodCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. It may
    	// contain AT MOST one value for each of IPv4 and IPv6.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // A list of node selector requirements by node's fields.
      // +optional
      // +listType=atomic
      repeated NodeSelectorRequirement matchFields = 2;
    }
    
    // NodeSpec describes the attributes that a node is created with.
    message NodeSpec {
      // PodCIDR represents the pod IP range assigned to the node.
      // +optional
      optional string podCIDR = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// List of endpoints.
    	Items []Endpoints `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // NodeSpec describes the attributes that a node is created with.
    type NodeSpec struct {
    	// PodCIDR represents the pod IP range assigned to the node.
    	// +optional
    	PodCIDR string `json:"podCIDR,omitempty" protobuf:"bytes,1,opt,name=podCIDR"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (NodeSelectorTerm) SwaggerDoc() map[string]string {
    	return map_NodeSelectorTerm
    }
    
    var map_NodeSpec = map[string]string{
    	"":              "NodeSpec describes the attributes that a node is created with.",
    	"podCIDR":       "PodCIDR represents the pod IP range assigned to the node.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        const FunctionDef* func_def =
            graph_flib_.Find(conversion_metadata.function_name);
        // Converts the graph to an MLIR function and adds it to the module.
        // We populate the NodeSpec so that all the _Arg ops get their shape
        // added correctly.
        GraphImportConfig specs;
        specs.enable_shape_inference = specs_.enable_shape_inference;
        specs.unconditionally_use_set_output_shapes =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.6.md

    already-running pods, and an associated `tolerationSeconds` field to tolerations to delay the eviction for a specified amount of time. As before, taints are created using `kubectl taint` (but internally they are now represented as a field `taints` in the NodeSpec rather than using the `scheduler.alpha.kubernetes.io/taints` annotation on Node). Tolerations are now specified in a new-in-1.6 `tolerations` field of the PodSpec rather than using the `scheduler.alpha.kubernetes.io/tolerations` annotation on the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__v1_openapi.json

                "x-kubernetes-list-type": "atomic"
              }
            },
            "type": "object",
            "x-kubernetes-map-type": "atomic"
          },
          "io.k8s.api.core.v1.NodeSpec": {
            "description": "NodeSpec describes the attributes that a node is created with.",
            "properties": {
              "configSource": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top