Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SVC (0.02 sec)

  1. pilot/pkg/networking/core/listener_waypoint.go

    	chains := []*listener.FilterChain{}
    	for _, svc := range svcs {
    		portMapper := match.NewDestinationPort()
    		for _, port := range svc.Ports {
    			if port.Protocol == protocol.UDP {
    				continue
    			}
    			portString := strconv.Itoa(port.Port)
    			cc := inboundChainConfig{
    				clusterName:   model.BuildSubsetKey(model.TrafficDirectionInboundVIP, "tcp", svc.Hostname, port.Port),
    				policyService: svc,
    				port: model.ServiceInstancePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/endpointshards.go

    		shardsBySvc: make(map[string]map[string]*EndpointShards),
    		cache:       cache,
    	}
    }
    
    // must be called with lock
    func (e *EndpointIndex) clearCacheForService(svc, ns string) {
    	e.cache.Clear(sets.Set[ConfigKey]{{
    		Kind:      kind.ServiceEntry,
    		Name:      svc,
    		Namespace: ns,
    	}: {}})
    }
    
    // Shardz returns a full deep copy of the global map of shards. This should be used only for testing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging.go

    	if parts := strings.Split(service, "/"); len(parts) == 2 {
    		namespace, name := parts[0], parts[1]
    		if svc := push.ServiceIndex.HostnameAndNamespace[host.Name(name)][namespace]; svc != nil {
    			hostname = string(svc.Hostname)
    			cluster = BuildSubsetKey(TrafficDirectionOutbound, "", svc.Hostname, port)
    			return
    		}
    	} else {
    		namespaceToServices := push.ServiceIndex.HostnameAndNamespace[host.Name(service)]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    	// is limited to HTTP3 only
    	MergedQUICTransportServers map[ServerPort]*MergedServers
    
    	// HTTP3AdvertisingRoutes represents the set of HTTP routes which advertise HTTP/3.
    	// This mapping is used to generate alt-svc header that is needed for HTTP/3 server discovery.
    	HTTP3AdvertisingRoutes sets.String
    
    	// GatewayNameForServer maps from server to the owning gateway name.
    	// Used for select the set of virtual services that apply to a port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/deployment-multi-service.yaml"},
    		analyzer:   &deployment.ServiceAssociationAnalyzer{},
    		expected: []message{
    			{msg.DeploymentAssociatedToMultipleServices, "Deployment bookinfo/multiple-svc-multiple-prot"},
    			{msg.DeploymentAssociatedToMultipleServices, "Deployment bookinfo/multiple-without-port"},
    			{msg.DeploymentConflictingPorts, "Deployment bookinfo/conflicting-ports"},
    		},
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top