Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsHTTP (0.17 sec)

  1. pkg/config/gateway/gateway.go

    func IsTLSServer(server *v1alpha3.Server) bool {
    	// to filter out https redirect
    	if server.Tls != nil && !protocol.Parse(server.Port.Protocol).IsHTTP() {
    		return true
    	}
    	return false
    }
    
    // IsHTTPSServerWithTLSTermination returns true if the server is HTTPS with TLS termination
    func IsHTTPSServerWithTLSTermination(server *v1alpha3.Server) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:13:01 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_waypoint.go

    			}
    			if port.Protocol.IsUnsupported() || port.Protocol.IsTCP() {
    				clusters = append(clusters, cb.buildWaypointInboundVIPCluster(proxy, svc, *port, "tcp").build())
    			}
    			if port.Protocol.IsUnsupported() || port.Protocol.IsHTTP() {
    				clusters = append(clusters, cb.buildWaypointInboundVIPCluster(proxy, svc, *port, "http").build())
    			}
    			cfg := cb.sidecarScope.DestinationRule(model.TrafficDirectionInbound, proxy, svc.Hostname).GetRule()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top