Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClusterSetLocalFQDN (0.29 sec)

  1. 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)
  2. 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)
Back to top