Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ClusterSetLocalFQDN (0.47 sec)

  1. pkg/test/framework/components/echo/instances.go

    	return i.Config().ServiceAccountName()
    }
    
    func (i Instances) ClusterLocalFQDN() string {
    	return i.Config().ClusterLocalFQDN()
    }
    
    func (i Instances) ClusterSetLocalFQDN() string {
    	return i.Config().ClusterSetLocalFQDN()
    }
    
    func (i Instances) NamespacedName() NamespacedName {
    	return i.Config().NamespacedName()
    }
    
    func (i Instances) PortForName(name string) Port {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/match/matchers_test.go

    	return f.Config().ServiceAccountName()
    }
    
    func (f fakeInstance) ClusterLocalFQDN() string {
    	return f.Config().ClusterLocalFQDN()
    }
    
    func (f fakeInstance) ClusterSetLocalFQDN() string {
    	return f.Config().ClusterSetLocalFQDN()
    }
    
    func (f fakeInstance) Address() string {
    	panic("implement me")
    }
    
    func (f fakeInstance) Addresses() []string {
    	panic("implement me")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    	ServiceAccountName() string
    
    	// ClusterLocalFQDN returns the fully qualified domain name for cluster-local host.
    	ClusterLocalFQDN() string
    
    	// ClusterSetLocalFQDN returns the fully qualified domain name for the Kubernetes
    	// Multi-Cluster Services (MCS) Cluster Set host.
    	ClusterSetLocalFQDN() string
    
    	// PortForName is a short form for Config().Ports.MustForName().
    	PortForName(name string) Port
    }
    
    type VMDistro = string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/instance.go

    	return c.cfg.ServiceAccountName()
    }
    
    func (c *instance) ClusterLocalFQDN() string {
    	return c.cfg.ClusterLocalFQDN()
    }
    
    func (c *instance) ClusterSetLocalFQDN() string {
    	return c.cfg.ClusterSetLocalFQDN()
    }
    
    func (c *instance) Config() echo.Config {
    	return c.cfg
    }
    
    func (c *instance) WithWorkloads(wls ...echo.Workload) echo.Instance {
    	n := *c
    	n.workloadFilter = wls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/filters_test.go

    	return f.Config().ServiceAccountName()
    }
    
    func (f fakeInstance) ClusterLocalFQDN() string {
    	return f.Config().ClusterLocalFQDN()
    }
    
    func (f fakeInstance) ClusterSetLocalFQDN() string {
    	return f.Config().ClusterSetLocalFQDN()
    }
    
    func (f fakeInstance) Address() string {
    	panic("implement me")
    }
    
    func (f fakeInstance) Addresses() []string {
    	panic("implement me")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	t.Helper()
    
    	var address string
    	if ht == hostTypeClusterSetLocal {
    		// Call the service using the MCS ClusterSet host.
    		address = to.Config().ClusterSetLocalFQDN()
    	} else {
    		address = to.Config().ClusterLocalFQDN()
    	}
    
    	_, err := from.Call(echo.CallOptions{
    		Address: address,
    		To:      to,
    		Port: echo.Port{
    			Name: "http",
    		},
    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