Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for pod_1 (0.18 sec)

  1. docs/distributed/decom.sh

    ./mc ls -r --versions mytier/tiered/ >tiered_ns_versions.txt
    
    kill $pid
    
    (minio server http://localhost:9000/tmp/xl/{1...10}/disk{0...1} http://localhost:9001/tmp/xl/{11...30}/disk{0...3} 2>&1 >/tmp/expanded_1.log) &
    pid_1=$!
    
    (minio server --address ":9001" http://localhost:9000/tmp/xl/{1...10}/disk{0...1} http://localhost:9001/tmp/xl/{11...30}/disk{0...3} 2>&1 >/tmp/expanded_2.log) &
    pid_2=$!
    
    ./mc ready myminio
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/cache/desired_state_of_world_test.go

    	if len(volumesToAttach) != 0 {
    		t.Fatalf("len(volumesToAttach) Expected: <0> Actual: <%v>", len(volumesToAttach))
    	}
    }
    
    // Populates data struct with pod1/volume/node and pod2/volume/node.
    // Calls DeleteNode() to delete the pod1/volume/node.
    // Verifies volume still exists, and one volumes to attach.
    func Test_DeletePod_Positive_2PodsExistNodeExistsVolumesExist(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/cluster/cluster_test.go

    					{
    						Namespaces: []string{"ex-"},
    					},
    				},
    			},
    			true,
    		},
    		{
    			"tested pod name not skip",
    			&v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "in-pod1",
    				},
    			},
    			&config2.BugReportConfig{
    				Include: []*config2.SelectionSpec{
    					{
    						Pods: []string{"in-"},
    					},
    				},
    				Exclude: []*config2.SelectionSpec{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 17:23:32 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. docs/distributed/decom-encrypted-kes.sh

    policy_count=$(./mc admin policy list myminio/ | wc -l)
    
    kill $pid
    
    (minio server http://localhost:9000/tmp/xl/{1...10}/disk{0...1} http://localhost:9001/tmp/xl/{11...30}/disk{0...3} 2>&1 >/tmp/expanded_1.log) &
    pid_1=$!
    
    (minio server --address ":9001" http://localhost:9000/tmp/xl/{1...10}/disk{0...1} http://localhost:9001/tmp/xl/{11...30}/disk{0...3} 2>&1 >/tmp/expanded_2.log) &
    pid_2=$!
    
    ./mc ready myminio
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    func TestWatchCacheBasic(t *testing.T) {
    	store := newTestWatchCache(2, &cache.Indexers{})
    	defer store.Stop()
    
    	// Test Add/Update/Delete.
    	pod1 := makeTestPod("pod", 1)
    	if err := store.Add(pod1); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if item, ok, _ := store.Get(pod1); !ok {
    		t.Errorf("didn't find pod")
    	} else {
    		expected := makeTestStoreElement(makeTestPod("pod", 1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.Nil(err)
    	err = testManager.Allocate(pod2, &pod2.Spec.Containers[0])
    	as.Nil(err)
    
    	// when pod is in activePods, GetDeviceRunContainerOptions should return
    	runContainerOpts, err := testManager.GetDeviceRunContainerOptions(pod1, &pod1.Spec.Containers[0])
    	as.Nil(err)
    	as.Equal(len(runContainerOpts.Devices), 3)
    	as.Equal(len(runContainerOpts.Mounts), 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. pkg/kubelet/preemption/preemption.go

    			}
    		}
    	}
    
    	return
    }
    
    // smallerResourceRequest returns true if pod1 has a smaller request than pod2
    func smallerResourceRequest(pod1 *v1.Pod, pod2 *v1.Pod) bool {
    	priorityList := []v1.ResourceName{
    		v1.ResourceMemory,
    		v1.ResourceCPU,
    	}
    	for _, res := range priorityList {
    		req1 := resource.GetResourceRequest(pod1, res)
    		req2 := resource.GetResourceRequest(pod2, res)
    		if req1 < req2 {
    			return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. pkg/volume/fc/fc_test.go

    	fm := mount.NewFakeMounter(
    		[]mount.MountPoint{
    			{Device: "/dev/sdd", Path: "/var/lib/kubelet/pods/some-pod/volumes/kubernetes.io~fc/fc-in-pod1"},
    		})
    	mountPaths := []string{
    		"/var/lib/kubelet/pods/some-pod/volumes/kubernetes.io~fc/fc-in-pod1",
    	}
    	for _, path := range mountPaths {
    		refs, _ := fm.GetMountRefs(path)
    		var globalPDPath string
    		for _, ref := range refs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 14.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		"queue-on-target-pod-some-resource-scale-down": {
    			pod:                             st.MakePod().Name("pod1").Req(map[v1.ResourceName]string{v1.ResourceCPU: "1"}).Obj(),
    			oldObj:                          st.MakePod().Name("pod1").Req(map[v1.ResourceName]string{v1.ResourceCPU: "2"}).Obj(),
    			newObj:                          st.MakePod().Name("pod1").Req(map[v1.ResourceName]string{v1.ResourceCPU: "1"}).Obj(),
    			enableInPlacePodVerticalScaling: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  10. pkg/controller/endpoint/endpoints_controller_test.go

    				},
    			},
    			NotReadyAddresses: []v1.EndpointAddress{
    				{
    					IP:        pod1.Status.PodIPs[0].IP,
    					NodeName:  &emptyNodeName,
    					TargetRef: &v1.ObjectReference{Kind: "Pod", Name: pod1.Name, Namespace: ns, ResourceVersion: "2"},
    				},
    			},
    			Ports: []v1.EndpointPort{{Port: 8080, Protocol: "TCP"}},
    		}},
    	})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top