Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ns1 (0.2 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		st.MakePod().Name("up").Namespace("ns1").UID("upns1").Annotation("annot2", "val2").Priority(lowPriority).NominatedNodeName("node1").Condition(v1.PodScheduled, v1.ConditionFalse, v1.PodReasonUnschedulable).Obj(),
    	)
    	nonExistentPodInfo = mustNewPodInfo(
    		st.MakePod().Name("ne").Namespace("ns1").UID("nens1").Obj(),
    	)
    	scheduledPodInfo = mustNewPodInfo(
    		st.MakePod().Name("sp").Namespace("ns1").UID("spns1").Node("foo").Obj(),
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    	type rejectedPod struct {
    		uid     types.UID
    		reason  string
    		message string
    	}
    	simplePod := func() *v1.Pod {
    		return &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{Name: "pod1", Namespace: "ns1", UID: types.UID("1")},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{Name: "container-1"},
    				},
    			},
    		}
    	}
    	withPhase := func(pod *v1.Pod, phase v1.PodPhase) *v1.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    					}
    					portMap.Insert(egress.Port.Number)
    				}
    			}
    
    			// validate that the hosts field is a slash separated value
    			// of form ns1/host, or */host, or */*, or ns1/*, or ns1/*.example.com
    			if len(egress.Hosts) == 0 {
    				errs = AppendValidation(errs, fmt.Errorf("sidecar: egress listener must contain at least one host"))
    			} else {
    				nssSvcs := map[string]map[string]bool{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    		expected []metav1.TableRow
    	}{
    		// Min Available set, no Max Available.
    		{
    			pdb: policy.PodDisruptionBudget{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace:         "ns1",
    					Name:              "pdb1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: policy.PodDisruptionBudgetSpec{
    					MinAvailable: &minAvailable,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    				},
    			},
    		},
    	}
    	kubelet.nodeLister = testNodeLister{nodes: nodes}
    
    	testPod1 := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "1111",
    			Name:      "pod1",
    			Namespace: "ns1",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:  "c1",
    					Image: "i1",
    					Resources: v1.ResourceRequirements{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top