Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HTTPSAddresses (0.12 sec)

  1. pkg/test/framework/components/istio/ingress/interface.go

    	// when in an environment that doesn't support LoadBalancer).
    	HTTPAddresses() ([]string, []int)
    	// HTTPSAddresses returns the external HTTPS (443) address of the ingress gateway (or the NodePort address,
    	// when in an environment that doesn't support LoadBalancer).
    	HTTPSAddresses() ([]string, []int)
    	// TCPAddresses returns the external TCP (31400) address of the ingress gateway (or the NodePort address,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/ingress.go

    func (c *ingressImpl) TCPAddresses() ([]string, []int) {
    	return c.AddressesForPort(31400)
    }
    
    // HTTPSAddresses returns the externally reachable TCP hosts and port (443) of the component.
    func (c *ingressImpl) HTTPSAddresses() ([]string, []int) {
    	return c.AddressesForPort(443)
    }
    
    // DiscoveryAddresses returns the externally reachable discovery addresses (15012) of the component.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top