Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for ns1 (0.04 sec)

  1. pkg/proxy/nftables/proxier_test.go

    		# svc1
    		add chain ip kube-proxy service-ULMVA6XW-ns1/svc1/tcp/p80
    		add rule ip kube-proxy service-ULMVA6XW-ns1/svc1/tcp/p80 ip daddr 172.30.0.41 tcp dport 80 ip saddr != 10.0.0.0/8 jump mark-for-masquerade
    		add rule ip kube-proxy service-ULMVA6XW-ns1/svc1/tcp/p80 numgen random mod 1 vmap { 0 : goto endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80 }
    
    		add chain ip kube-proxy endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    			"GET" + "/api/v1/namespaces/ns1/pods/rc1Pod1": {
    				200,
    				serilizeOrDie(t, rc1Pod1),
    			},
    			"GET" + "/api/v1/namespaces/ns1/pods/rc1Pod2": {
    				200,
    				serilizeOrDie(t, rc1Pod2),
    			},
    			"GET" + "/api/v1/namespaces/ns1/pods/rc2Pod1": {
    				200,
    				serilizeOrDie(t, rc2Pod1),
    			},
    			"GET" + "/api/v1/namespaces/ns1/pods/rc3Pod1": {
    				200,
    				serilizeOrDie(t, rc3Pod1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    			},
    			makeServicePortName("ns1", "ep1", "p12", v1.ProtocolUDP): {
    				{endpoint: "1.1.1.2:12", isLocal: false},
    			},
    		},
    		expectedResult: map[proxy.ServicePortName][]endpointExpectation{
    			makeServicePortName("ns1", "ep1", "p11", v1.ProtocolUDP): {
    				{endpoint: "1.1.1.1:11", isLocal: false},
    			},
    			makeServicePortName("ns1", "ep1", "p12", v1.ProtocolUDP): {
    				{endpoint: "1.1.1.2:12", isLocal: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. 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)
  5. pkg/config/validation/validation_test.go

    			exportTo:  []string{"*"},
    			wantErr:   false,
    		},
    		{
    			name:      ". and ns1 are allowed",
    			namespace: "ns5",
    			exportTo:  []string{".", "ns1"},
    			wantErr:   false,
    		},
    		{
    			name:      "bunch of namespaces in exportTo is okay",
    			namespace: "ns5",
    			exportTo:  []string{"ns1", "ns2", "ns5"},
    			wantErr:   false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		item: genericapitesting.Simple{
    			ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "ns1", CreationTimestamp: now, UID: types.UID("abcdef0123")},
    			Other:      "foo",
    		},
    		list: []genericapitesting.Simple{
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "ns1", CreationTimestamp: now, UID: types.UID("newer")},
    				Other:      "foo",
    			},
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			},
    			existingPods: []*v1.Pod{
    				st.MakePod().Name("p-a1").Node("node-a").Label("foo", "").Obj(),
    				st.MakePod().Name("p-a2").Namespace("ns1").Node("node-a").Label("foo", "").Obj(),
    				st.MakePod().Name("p-b1").Node("node-b").Label("foo", "").Obj(),
    				st.MakePod().Name("p-y1").Namespace("ns2").Node("node-y").Label("foo", "").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    						AvailableBytes:  &nodeAvailableBytes,
    						WorkingSetBytes: &nodeWorkingSetBytes,
    					},
    				},
    			},
    		},
    		Pods: []statsapi.PodStats{},
    	}
    	pods := []*v1.Pod{
    		podMaker("pod1", "ns1", "uuid1", 1),
    		podMaker("pod1", "ns2", "uuid2", 1),
    		podMaker("pod3", "ns3", "uuid3", 1),
    	}
    	podWorkingSetBytes := uint64(1024 * 1024 * 1024)
    	for _, pod := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top