Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for pod_1 (0.27 sec)

  1. pkg/controller/statefulset/stateful_set_test.go

    	set1 := newStatefulSet(3)
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	pod1 := newStatefulSetPod(set1, 0)
    	pod2 := newStatefulSetPod(set2, 0)
    	om.setsIndexer.Add(set1)
    	om.setsIndexer.Add(set2)
    
    	prev := *pod1
    	fakeResourceVersion(pod1)
    	ssc.updatePod(logger, &prev, pod1)
    	key, done := ssc.queue.Get()
    	if key == "" || done {
    		t.Error("failed to enqueue StatefulSet")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/leaderelection_test.go

    	panic("unimplemented")
    }
    
    func TestLeaderElection(t *testing.T) {
    	client := fake.NewSimpleClientset()
    	watcher := &fakeDefaultWatcher{}
    	// First pod becomes the leader
    	_, stop := createElection(t, "pod1", "", watcher, true, client)
    	// A new pod is not the leader
    	_, stop2 := createElection(t, "pod2", "", watcher, false, client)
    	close(stop2)
    	close(stop)
    }
    
    func TestPerRevisionElection(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/graph_test.go

    		"node:node2":            {},
    		"node:node3":            {},
    		"pod:ns/pod1":           {"node:node1"},
    		"pod:ns/pod2":           {"node:node2"},
    		"pod:ns/pod3":           {"node:node3"},
    		"configmap:ns/cm1":      {"pod:ns/pod1", "pod:ns/pod2", "pod:ns/pod3"},
    		"configmap:ns/cm2":      {"pod:ns/pod1", "pod:ns/pod2", "pod:ns/pod3"},
    		"configmap:ns/cm3":      {"pod:ns/pod1", "pod:ns/pod2", "pod:ns/pod3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    	}
    	podName1 := util.GetUniquePodName(pod1)
    
    	mounter1, err := plugin.NewMounter(volumeSpec1, pod1, volume.VolumeOptions{})
    	if err != nil {
    		t.Fatalf("NewMounter failed. Expected: <no error> Actual: <%v>", err)
    	}
    
    	mapper1, err := plugin.NewBlockVolumeMapper(volumeSpec1, pod1, volume.VolumeOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pkg/kubelet/config/common_test.go

    		overwrite string
    		shouldErr bool
    	}{
    		{
    			"node1",
    			"static-pod1",
    			"static-pod1-node1",
    			"",
    			false,
    		},
    		{
    			"Node1",
    			"static-pod1",
    			"static-pod1-node1",
    			"",
    			false,
    		},
    		{
    			"NODE1",
    			"static-pod1",
    			"static-pod1-node1",
    			"static-pod1-NODE1",
    			true,
    		},
    	}
    	for _, c := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			pod:  podWithTolerations("pod1", []v1.Toleration{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    			node: nodeWithTaints("nodeA", []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    		},
    		{
    			name: "A pod which can't be scheduled on a dedicated node assigned to user2 with effect NoSchedule",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/util_test.go

    			proxy: &model.Proxy{
    				ID: "pod1.ns1",
    				Metadata: &model.NodeMetadata{
    					Namespace: "default",
    				},
    			},
    		},
    		{
    			name: "invalid id: namespace mismatch",
    			proxy: &model.Proxy{
    				ID: "pod1.ns1",
    				Metadata: &model.NodeMetadata{
    					Namespace: "ns1",
    				},
    			},
    			expectedKey: types.NamespacedName{Namespace: "ns1", Name: "pod1"},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. pkg/kube/kclient/index_test.go

    	c.Kube().CoreV1().Pods("ns").Create(context.Background(), pod1, metav1.CreateOptions{})
    	assertIndex(k1, pod1)
    	assertIndex(k2)
    
    	// Create another pod; we ought to find it as well now.
    	c.Kube().CoreV1().Pods("ns").Create(context.Background(), pod2, metav1.CreateOptions{})
    	assertIndex(k1, pod1) // Original one must still persist
    	assertIndex(k2, pod2) // New one should be there, eventually
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. pkg/controller/daemon/util/daemonset_util_test.go

    			templateGeneration,
    			newPod("pod1", "node1", labels),
    			hash,
    			true,
    		},
    		{
    			"templateGeneration matches, hash doesn't",
    			templateGeneration,
    			newPod("pod1", "node1", labels),
    			hash + "123",
    			true,
    		},
    		{
    			"templateGeneration matches, no hash label, has hash",
    			templateGeneration,
    			newPod("pod1", "node1", labelsNoHash),
    			hash,
    			true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/cache/desired_state_of_world_test.go

    			},
    			true,
    		},
    	}
    
    	// Act & Assert
    	for name, v := range testcases {
    		volumeSpec1 := &volume.Spec{Volume: &v.pod1.Spec.Volumes[0]}
    		volumeSpec2 := &volume.Spec{Volume: &v.pod2.Spec.Volumes[0]}
    		generatedVolumeName1, err1 := dsw.AddPodToVolume(util.GetUniquePodName(v.pod1), v.pod1, volumeSpec1, volumeSpec1.Name(), "", nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top