Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for NodeSpec (4.16 sec)

  1. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/api/core/v1,ISCSIVolumeSource,DiscoveryCHAPAuth
    API rule violation: names_match,k8s.io/api/core/v1,ISCSIVolumeSource,SessionCHAPAuth
    API rule violation: names_match,k8s.io/api/core/v1,NodeSpec,DoNotUseExternalID
    API rule violation: names_match,k8s.io/api/core/v1,PersistentVolumeSource,CephFS
    API rule violation: names_match,k8s.io/api/core/v1,PersistentVolumeSource,StorageOS
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. pkg/controller/podgc/gc_controller_test.go

    				creationTime = creationTime.Add(2 * time.Hour)
    				nodes = append(nodes, &v1.Node{
    					ObjectMeta: metav1.ObjectMeta{Name: node.name, CreationTimestamp: metav1.Time{Time: creationTime}},
    					Spec: v1.NodeSpec{
    						Taints: node.taints,
    					},
    					Status: v1.NodeStatus{
    						Conditions: []v1.NodeCondition{
    							{
    								Type:   v1.NodeReady,
    								Status: node.readyCondition,
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddConversionFunc((*core.NodeSpec)(nil), (*v1.NodeSpec)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_core_NodeSpec_To_v1_NodeSpec(a.(*core.NodeSpec), b.(*v1.NodeSpec), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeSpec.
    func (in *NodeSpec) DeepCopy() *NodeSpec {
    	if in == nil {
    		return nil
    	}
    	out := new(NodeSpec)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NodeSpec.
    func (in *NodeSpec) DeepCopy() *NodeSpec {
    	if in == nil {
    		return nil
    	}
    	out := new(NodeSpec)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status.go

    				v1.LabelOSStable:      goruntime.GOOS,
    				v1.LabelArchStable:    goruntime.GOARCH,
    				kubeletapis.LabelOS:   goruntime.GOOS,
    				kubeletapis.LabelArch: goruntime.GOARCH,
    			},
    		},
    		Spec: v1.NodeSpec{
    			Unschedulable: !kl.registerSchedulable,
    		},
    	}
    	osLabels, err := getOSSpecificLabels()
    	if err != nil {
    		return nil, err
    	}
    	for label, value := range osLabels {
    		node.Labels[label] = value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			attachment.Spec.NodeName = nodeName
    			attachments = append(attachments, attachment)
    		}
    
    		nodes = append(nodes, &corev1.Node{
    			ObjectMeta: metav1.ObjectMeta{Name: nodeName},
    			Spec:       corev1.NodeSpec{},
    		})
    
    		for p := 0; p <= opts.nodeResourceCapacitiesPerNode; p++ {
    			name := fmt.Sprintf("slice%d-%s", p, nodeName)
    			slice := &resourcev1alpha2.ResourceSlice{
    				ObjectMeta: metav1.ObjectMeta{Name: name},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"foo1", "Ready", "<none>", "<unknown>", ""}}},
    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo2"},
    				Spec:       api.NodeSpec{Unschedulable: true},
    				Status:     api.NodeStatus{Conditions: []api.NodeCondition{{Type: api.NodeReady, Status: api.ConditionTrue}}},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher_test.go

    				getTestCSIDriver("attachable", nil, &bTrue, nil),
    				getTestCSIDriver("nil", nil, nil, nil),
    				&v1.Node{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: "fakeNode",
    					},
    					Spec: v1.NodeSpec{},
    				},
    			)
    			plug, tmpDir := newTestPlugin(t, fakeClient)
    			defer os.RemoveAll(tmpDir)
    
    			attacher, err := plug.NewAttacher()
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	}
    }
    
    func TestNodeBuilder(t *testing.T) {
    	node := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{Name: "node1", Namespace: "should-not-have", ResourceVersion: "10"},
    		Spec:       v1.NodeSpec{},
    		Status: v1.NodeStatus{
    			Capacity: v1.ResourceList{
    				v1.ResourceCPU:    resource.MustParse("1000m"),
    				v1.ResourceMemory: resource.MustParse("1Mi"),
    			},
    		},
    	}
    	r, w := io.Pipe()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
Back to top