Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for node000 (0.16 sec)

  1. pkg/volume/csi/csi_attacher_test.go

    			nodeName:   "node000",
    			driverName: "driver000",
    			volumeName: "vol02",
    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			spec:       volume.NewSpecFromVolume(makeTestVol("pv01", "driver02")),
    			shouldFail: true, // csi not enabled
    		},
    		{
    			name:       "missing spec",
    			nodeName:   "node000",
    			driverName: "driver000",
    			volumeName: "vol02",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  2. docs/distributed/distributed-from-config-file.sh

    1,0,0 http://localhost:9003/tmp/xl/node9003/mnt/disk1
    1,0,1 http://localhost:9004/tmp/xl/node9004/mnt/disk1
    1,0,2 http://localhost:9003/tmp/xl/node9003/mnt/disk2
    1,0,3 http://localhost:9004/tmp/xl/node9004/mnt/disk2
    1,0,4 http://localhost:9003/tmp/xl/node9003/mnt/disk3
    1,0,5 http://localhost:9004/tmp/xl/node9004/mnt/disk3
    1,0,6 http://localhost:9003/tmp/xl/node9003/mnt/disk4
    1,0,7 http://localhost:9004/tmp/xl/node9004/mnt/disk4
    EOF
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			expect: authorizer.DecisionAllow,
    		},
    		{
    			name:   "allowed secret via pod",
    			attrs:  authorizer.AttributesRecord{User: node0, ResourceRequest: true, Verb: "get", Resource: "secrets", Name: "secret0-pod0-node0", Namespace: "ns0"},
    			expect: authorizer.DecisionAllow,
    		},
    		{
    			name:   "list allowed secret via pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		t.Errorf("unexpected error: %v", err)
    	}
    
    	// 2. mark node0 healthy
    	node0, err := fakeNodeHandler.Get(ctx, "node0", metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("Can't get current node0...")
    		return
    	}
    	node0.Status = healthyNodeNewStatus
    	_, err = fakeNodeHandler.UpdateStatus(ctx, node0, metav1.UpdateOptions{})
    	if err != nil {
    		t.Errorf(err.Error())
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  5. pkg/controller/nodeipam/ipam/range_allocator_test.go

    		{
    			description: "success, single stack no node allocation",
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: "node0",
    						},
    					},
    				},
    				Clientset: fake.NewSimpleClientset(),
    			},
    			allocatorParams: CIDRAllocatorParams{
    				ClusterCIDRs: func() []*net.IPNet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. pkg/registry/core/node/storage/storage_test.go

    		node:  newNode("node0", setNodeIPAddress("10.0.0.1")),
    		query: "node0",
    		host:  "10.0.0.1:10250",
    	}, {
    		name:  "proxyable hostname with kubelet port in query",
    		node:  newNode("node0", setNodeIPAddress("10.0.0.1")),
    		query: "node0:5000",
    		host:  "10.0.0.1:5000",
    	}, {
    		name:  "proxyable hostname with kubelet port in status",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 01 12:49:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. pkg/controller/controller_utils_test.go

    								{Key: "key2", Value: "value2", Effect: "NoExecute"},
    							},
    						},
    					},
    				},
    				Clientset: fake.NewSimpleClientset(&v1.PodList{Items: []v1.Pod{*testutil.NewPod("pod0", "node0")}}),
    			},
    			nodeName: "node1",
    			taintsToRemove: []*v1.Taint{
    				{Key: "key2", Value: "value2", Effect: "NoExecute"},
    			},
    			expectedTaints: []v1.Taint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/patchnode/patchnode_test.go

    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    
    			nodename := "node01"
    			node := &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: nodename,
    					Labels: map[string]string{
    						v1.LabelHostname: nodename,
    					},
    					Annotations: map[string]string{},
    				},
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/markcontrolplane/markcontrolplane_test.go

    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			nodename := "node01"
    			controlPlaneNode := &v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: nodename,
    					Labels: map[string]string{
    						v1.LabelHostname: nodename,
    					},
    				},
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 14:22:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/policy_test.go

    		CPU(s):              80
    		On-line CPU(s) list: 0-79
    		Thread(s) per core:  2
    		Core(s) per socket:  20
    		Socket(s):           2
    		NUMA node(s):        4
    		NUMA node0 CPU(s):   0-9,40-49
    		NUMA node1 CPU(s):   10-19,50-59
    		NUMA node2 CPU(s):   20-29,60-69
    		NUMA node3 CPU(s):   30-39,70-79
    	*/
    	topoDualSocketMultiNumaPerSocketHT = &topology.CPUTopology{
    		NumCPUs:      80,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 20:49:58 UTC 2021
    - 40.6K bytes
    - Viewed (0)
Back to top