Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for createServiceWait (0.16 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	// Use a timeout to keep the test from hanging.
    
    	createServiceWait(controller, "svc1", "nsA",
    		map[string]string{}, map[string]string{},
    		[]int32{8080}, map[string]string{"test-app": "test-app-1"}, t)
    	createServiceWait(controller, "svc2", "nsA",
    		map[string]string{}, map[string]string{},
    		[]int32{8081}, map[string]string{"test-app": "test-app-2"}, t)
    	createServiceWait(controller, "svc3", "nsA",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    	pod := generatePod("128.0.0.1", "pod1", ns, "svcaccount", "node1",
    		map[string]string{"app": appName}, map[string]string{})
    	pods := []*corev1.Pod{pod}
    	addPods(t, controller, fx, pods...)
    
    	createServiceWait(controller, svcName, ns, nil, nil,
    		[]int32{8080}, map[string]string{"app": appName}, t)
    
    	// Ensure that the service is available.
    	hostname := kube.ServiceHostname(svcName, ns, controller.opts.DomainSuffix)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	c, fx := NewFakeControllerWithOptions(t, FakeControllerOptions{
    		WatchedNamespaces: "nsa,nsb",
    	})
    
    	initTestEnv(t, c.client.Kube(), fx)
    	// Setup a service with 1 pod and endpointslices
    	createServiceWait(c, "ratings", "nsa",
    		nil, nil, []int32{8080}, map[string]string{"app": "test"}, t)
    	pod := generatePod("128.0.0.1", "cpod1", "nsa", "", "", map[string]string{"app": "test", "foo": "bar"}, map[string]string{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top