Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for runes (0.12 sec)

  1. pilot/pkg/bootstrap/server.go

    	httpsAddr   string
    
    	grpcServer        *grpc.Server
    	grpcAddress       string
    	secureGrpcServer  *grpc.Server
    	secureGrpcAddress string
    
    	// monitoringMux listens on monitoringAddr(:15014).
    	// Currently runs prometheus monitoring and debug (if enabled).
    	monitoringMux *http.ServeMux
    	// internalDebugMux is a mux for *internal* calls to the debug interface. That is, authentication is disabled.
    	internalDebugMux *http.ServeMux
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    				routeName := gatewayRDSRouteName(s, resolvedPort, gatewayConfig)
    				if s.Tls != nil {
    					// Envoy will reject config that has multiple filter chain matches with the same matching rules.
    					// To avoid this, we need to make sure we don't have duplicated hosts, which will become
    					// SNI filter chain matches.
    
    					// When there is Bind specified in the Gateway, the listener is built per IP instead of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta.go

    		return s.pushDeltaXds(con, dwr, request)
    	}
    	return nil
    }
    
    // shouldRespondDelta determines whether this request needs to be responded back. It applies the ack/nack rules as per xds protocol
    // using WatchedResource for previous state and discovery request for the current state.
    func (s *DiscoveryServer) shouldRespondDelta(con *Connection, request *discovery.DeltaDiscoveryRequest) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster.go

    				deletedClusters = append(deletedClusters, cluster)
    			}
    		}
    	}
    	return services, deletedClusters
    }
    
    // deltaFromDestinationRules computes the delta clusters from the updated destination rules.
    func (configgen *ConfigGeneratorImpl) deltaFromDestinationRules(updatedDr model.ConfigKey, proxy *model.Proxy,
    	subsetClusters map[string]sets.String,
    ) ([]*model.Service, []string) {
    	var deletedClusters []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_inbound.go

    		}})
    	}
    	if len(ranges) > 1 {
    		return &listener.ListenerFilterChainMatchPredicate{Rule: &listener.ListenerFilterChainMatchPredicate_OrMatch{
    			OrMatch: &listener.ListenerFilterChainMatchPredicate_MatchSet{
    				Rules: ranges,
    			},
    		}}
    	}
    	return &listener.ListenerFilterChainMatchPredicate{Rule: ranges[0].GetRule()}
    }
    
    func listenerPredicateIncludePorts(ports []int) *listener.ListenerFilterChainMatchPredicate {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top