Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for pod17 (0.16 sec)

  1. tools/bug-report/pkg/bugreport/bugreport.go

    The log will be included only if the container matches at least one include filter and does not match any exclude filters.
    All parts of the filter are optional and can be omitted e.g. ns1//pod1 filters only for namespace ns1 and pod1.
    All names except label and annotation keys support '*' glob matching pattern.
    
    e.g.
    --include ns1,ns2 (only namespaces ns1 and ns2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	}
    	l1, _ := m.generateLinuxContainerConfig(&pod1.Spec.Containers[0], pod1, new(int64), "", nil, true)
    	l2, _ := m.generateLinuxContainerConfig(&pod2.Spec.Containers[0], pod2, new(int64), "", nil, true)
    	tests := []struct {
    		name     string
    		pod      *v1.Pod
    		expected *expectedResult
    	}{
    		{
    			name: "Request128MBLimit256MB",
    			pod:  pod1,
    			expected: &expectedResult{
    				l1,
    				128 * 1024 * 1024,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    func TestPriorityQueue_initPodMaxInUnschedulablePodsDuration(t *testing.T) {
    	pod1 := st.MakePod().Name("test-pod-1").Namespace("ns1").UID("tp-1").NominatedNodeName("node1").Obj()
    	pod2 := st.MakePod().Name("test-pod-2").Namespace("ns2").UID("tp-2").NominatedNodeName("node2").Obj()
    
    	var timestamp = time.Now()
    	pInfo1 := &framework.QueuedPodInfo{
    		PodInfo:   mustNewTestPodInfo(t, pod1),
    		Timestamp: timestamp.Add(-time.Second),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/scheduler/eventhandlers_test.go

    			node: st.MakeNode().Name("fake-node").Label("foo", "bar").Obj(),
    			pod:  st.MakePod().Name("pod2").HostPort(80).NodeSelector(map[string]string{"foo": "bar1"}).Obj(),
    			existingPods: []*v1.Pod{
    				st.MakePod().Name("pod1").HostPort(80).Obj(),
    			},
    			wantAdmissionResults: [][]AdmissionResult{{nodeaffinityError, nodeportsError}, {nodeaffinityError}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    	podName1 := volumetypes.UniquePodName("pod1")
    	podName2 := volumetypes.UniquePodName("pod2")
    	podName3 := volumetypes.UniquePodName("pod3")
    	podName4 := EmptyUniquePodName
    	nodeName := EmptyNodeName
    
    	// delay after an operation is signaled to finish to ensure it actually
    	// finishes before running the next operation.
    	delay := 50 * time.Millisecond
    
    	// fake operation1 for pod1 failed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    					pendingAttemptToDelete: []*node{makeNode(pod1nonamespace, virtual)},                                               // virtual pod1 queued for attempted delete
    				}),
    				// 4,5: handle queued delete of virtual pod1
    				processAttemptToDelete(1),
    				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)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	currentSubs sets.String,
    ) sets.String {
    	shouldSubscribe := sets.New[string]()
    
    	// First, we want to handle VIP subscriptions. Example:
    	// Client subscribes to VIP1. Pod1, part of VIP1, is sent.
    	// The client wouldn't be explicitly subscribed to Pod1, so it would normally ignore it.
    	// Since it is a part of VIP1 which we are subscribe to, add it to the subscriptions
    	for addr := range allAddresses {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_volumes_linux_test.go

    				return validateDirNotExists(filepath.Join(podDir, "not"))
    			},
    		},
    		"pod-exists-with-volume": {
    			pods: []*v1.Pod{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: "pod1",
    						UID:  "pod1uid",
    					},
    				},
    			},
    			prepareFunc: func(kubelet *Kubelet) error {
    				podDir := kubelet.getPodDir("pod1uid")
    				return os.MkdirAll(filepath.Join(podDir, "volumes/plugin/name"), 0750)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  9. pkg/kubelet/util/manager/cache_based_manager_test.go

    	fakeClient := &fake.Clientset{}
    	store := newSecretStore(fakeClient, clock.RealClock{}, noObjectTTL, 0)
    	store.AddReference("ns1", "name1", "pod1")
    	store.AddReference("ns2", "name2", "pod2")
    	store.AddReference("ns1", "name1", "pod3")
    	store.AddReference("ns1", "name1", "pod4")
    	store.DeleteReference("ns1", "name1", "pod1")
    	store.DeleteReference("ns2", "name2", "pod2")
    	store.AddReference("ns3", "name3", "pod5")
    
    	// Adds don't issue Get requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    func TestGetContainerDevices(t *testing.T) {
    	podDevices := newPodDevices()
    	resourceName1 := "domain1.com/resource1"
    	podID := "pod1"
    	contID := "con1"
    	devices := checkpoint.DevicesPerNUMA{0: []string{"dev1"}, 1: []string{"dev1"}}
    
    	podDevices.insert(podID, contID, resourceName1,
    		devices,
    		newContainerAllocateResponse(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top