Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for applyTrafficPolicy (0.38 sec)

  1. pilot/pkg/networking/grpcgen/cds.go

    			b.applyTrafficPolicy(c, trafficPolicy)
    			subsetClusters = append(subsetClusters, c)
    		}
    	}
    
    	return
    }
    
    // applyTrafficPolicy mutates the give cluster (if not-nil) so that the given merged traffic policy applies.
    func (b *clusterBuilder) applyTrafficPolicy(c *cluster.Cluster, trafficPolicy *networking.TrafficPolicy) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_traffic_policy.go

    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    )
    
    // applyTrafficPolicy applies the trafficPolicy defined within destinationRule,
    // which can be called for both outbound and inbound cluster, but only connection pool will be applied to inbound cluster.
    func (cb *ClusterBuilder) applyTrafficPolicy(opts buildClusterOpts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder.go

    	if destRule != nil {
    		destinationRule := CastDestinationRule(destRule)
    		opts.isDrWithSelector = destinationRule.GetWorkloadSelector() != nil
    	}
    	// Apply traffic policy for the subset cluster.
    	cb.applyTrafficPolicy(opts)
    
    	maybeApplyEdsConfig(subsetCluster.cluster)
    
    	cb.applyMetadataExchange(opts.mutable.cluster)
    
    	// Add the DestinationRule+subsets metadata. Metadata here is generated on a per-cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top