Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for cpod2 (0.06 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    	}{
    		{
    			name: "when two pods are using same volume and both are deleted",
    			volumePaths: []string{
    				filepath.Join("pod1", "volumes", "fake-plugin", "pvc-abcdef"),
    				filepath.Join("pod2", "volumes", "fake-plugin", "pvc-abcdef"),
    			},
    			expectedVolumesNeedDevicePath:       []string{"fake-plugin/pvc-abcdef", "fake-plugin/pvc-abcdef"},
    			expectedVolumesFailedReconstruction: []string{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    				{"node1", []string{"ns1/pod1"}},
    				{"node2", []string{"ns1/pod2"}},
    			},
    			[]string{"Warning FailedAttachVolume Multi-Attach error for volume \"volume-name\" Volume is already used by pod(s) pod2"},
    		},
    		{
    			"pods in another namespace use the volume",
    			[]nodeWithPods{
    				{"node1", []string{"ns1/pod1"}},
    				{"node2", []string{"ns2/pod2"}},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    		st.MakePod().Name("pod2").UID("pod2").SchedulerName("match-node2").Obj(),
    		st.MakePod().Name("pod3").UID("pod3").SchedulerName("match-node2").Obj(),
    		st.MakePod().Name("pod4").UID("pod4").SchedulerName("match-node3").Obj(),
    	}
    	wantBindings := map[string]string{
    		"pod1": "node3",
    		"pod2": "node2",
    		"pod3": "node2",
    		"pod4": "node3",
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption_test.go

    	}
    	add(t, dc.pdbStore, pdb)
    
    	pod1, _ := newPod(t, "p1")
    	pod1.DeletionTimestamp = &metav1.Time{Time: dc.clock.Now()}
    	pod2, _ := newPod(t, "p2")
    	pod3, _ := newPod(t, "p3")
    
    	add(t, dc.podStore, pod1)
    	add(t, dc.podStore, pod2)
    	add(t, dc.podStore, pod3)
    
    	dc.sync(ctx, pdbName)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/garbagecollector_test.go

    				assertState(state{
    					graphNodes:             []*node{makeNode(pod1ns1, withOwners(pod2ns2)), makeNode(pod2ns1, virtual)}, // virtual pod2 (matching child namespace)
    					pendingAttemptToDelete: []*node{makeNode(pod2ns1, virtual)},                                         // virtual pod2 queued for attempted delete
    				}),
    				// 4,5: observe parent
    				processEvent(makeAddEvent(pod2ns2)),
    				assertState(state{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/bugreport/bugreport.go

    		SilenceUsage: true,
    		Long: `bug-report selectively captures cluster information and logs into an archive to help diagnose problems.
    Proxy logs can be filtered using:
      --include|--exclude ns1,ns2.../dep1,dep2.../pod1,pod2.../lbl1=val1,lbl2=val2.../ann1=val1,ann2=val2.../cntr1,cntr...
    where ns=namespace, dep=deployment, lbl=label, ann=annotation, cntr=container
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/cache/cache_test.go

    										v1.ResourceMemory: mem50m,
    									},
    								},
    							},
    						},
    					},
    				},
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: "pod2",
    						UID:  types.UID("pod2"),
    					},
    					Spec: v1.PodSpec{
    						NodeName: "test-node-1",
    						Containers: []v1.Container{
    							{
    								Resources: v1.ResourceRequirements{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    				{VolumeSource: corev1.VolumeSource{Secret: &corev1.SecretVolumeSource{SecretName: "shared-all"}}},
    			},
    		},
    	})
    	g.AddPod(&corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: "pod2-node2", Namespace: "ns1"},
    		Spec: corev1.PodSpec{
    			NodeName: "node2",
    			Volumes: []corev1.Volume{
    				{VolumeSource: corev1.VolumeSource{Secret: &corev1.SecretVolumeSource{SecretName: "node1-node2-only"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  9. pkg/kubelet/stats/cri_stats_provider_test.go

    	seedSandbox1   = 3000
    	seedContainer1 = 4000
    	seedContainer2 = 5000
    	seedSandbox2   = 6000
    	seedContainer3 = 7000
    	seedSandbox3   = 8000
    )
    
    const (
    	pName0 = "pod0"
    	pName1 = "pod1"
    	pName2 = "pod2"
    )
    
    const (
    	cName0 = "container0-name"
    	cName1 = "container1-name"
    	cName2 = "container2-name"
    	cName3 = "container3-name"
    	cName5 = "container5-name"
    	cName6 = "container6-name"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    				w.UpdatePod(UpdatePodOptions{
    					UpdateType: kubetypes.SyncPodKill,
    					Pod:        pod,
    				})
    				pod2 := simplePod()
    				pod2.Annotations = map[string]string{"version": "2"}
    				w.UpdatePod(UpdatePodOptions{
    					UpdateType: kubetypes.SyncPodCreate,
    					Pod:        pod2,
    				})
    				drainAllWorkers(w)
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top