Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ClusterSetIP (0.32 sec)

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

    	ic.createKubeService(t, c)
    	ic.createServiceImport(t, mcsapi.ClusterSetIP, serviceImportVIPs)
    
    	// Check that the service has been assigned ClusterSet IPs.
    	ic.checkServiceInstances(t)
    }
    
    func TestServiceCreatedAfterImported(t *testing.T) {
    	c, ic := newTestServiceImportCache(t)
    
    	ic.createServiceImport(t, mcsapi.ClusterSetIP, serviceImportVIPs)
    	ic.createKubeService(t, c)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

                            format: int32
                  type:
                    description: type defines the type of this service. Must be ClusterSetIP
                      or Headless.
                    type: string
                    enum:
                    - ClusterSetIP
                    - Headless
              status:
                description: status contains information about the exported services that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: echos.Namespace.Name(),
    			Name:      common.ServiceB,
    		},
    		Spec: mcsapi.ServiceImportSpec{
    			IPs:   []string{vip},
    			Type:  mcsapi.ClusterSetIP,
    			Ports: ports,
    		},
    	}
    
    	u, err := runtime.DefaultUnstructuredConverter.ToUnstructured(serviceImport)
    	if err != nil {
    		panic(err)
    	}
    
    	// Create the ServiceImport.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top