Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for addRows (0.23 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s := newAmbientTestServer(t, testC, testNW)
    
    	s.addPods(t, "127.0.0.1", "pod1", "sa1", map[string]string{"app": "a"}, nil, true, corev1.PodRunning)
    	s.assertAddresses(t, "", "pod1")
    	s.assertEvent(t, s.podXdsName("pod1"))
    
    	s.addPods(t, "127.0.0.2", "pod2", "sa1", map[string]string{"app": "a", "other": "label"}, nil, true, corev1.PodRunning)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller_test.go

    	ns := "other"
    	testServer, endpointsHandler := makeTestServer(t, ns)
    	defer testServer.Close()
    	tCtx := ktesting.Init(t)
    	endpoints := newController(tCtx, testServer.URL, 0*time.Second)
    	addPods(endpoints.podStore, ns, 3, 2, 0, ipv4only)
    	addPods(endpoints.podStore, "blah", 5, 2, 0, ipv4only) // make sure these aren't found!
    
    	endpoints.serviceStore.Add(&v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: ns},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			Phase:  corev1.PodRunning,
    		},
    	}
    
    	controller, fx := NewFakeControllerWithOptions(t, FakeControllerOptions{})
    	addPods(t, controller, fx, inputPod)
    
    	output := controller.pods.getPodByKey(config.NamespacedName(expectPod))
    	// The final pod status conditions will be determined by the function addPods.
    	// So we assign these status conditions to expect pod.
    	expectPod.Status.Conditions = output.Status.Conditions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

            ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" apply -f "${KUBE_ROOT}/cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/controller/endpointslice/endpointslice_controller_test.go

    			stopCh := make(chan struct{})
    			defer close(stopCh)
    
    			_, ctx := ktesting.NewTestContext(t)
    			go esController.Run(ctx, 1)
    
    			addPods(t, esController, ns, tc.podsCount)
    
    			esController.serviceStore.Add(&v1.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: ns},
    				Spec: v1.ServiceSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: the deprecated `UpgradeAddonsBeforeControlPlane` featuregate has been removed, upgrade of the CoreDNS and kube-proxy addons will not be triggered until all the control plane instances have been upgraded. ([#124715](https://github.com/kubernetes/kubernetes/pull/124715), [@SataQiu](https://github.com/SataQiu)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top