Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for skippedCdsConfigs (0.27 sec)

  1. pilot/pkg/xds/cds.go

    )
    
    type CdsGenerator struct {
    	ConfigGenerator core.ConfigGenerator
    }
    
    var _ model.XdsDeltaResourceGenerator = &CdsGenerator{}
    
    // Map of all configs that do not impact CDS
    var skippedCdsConfigs = sets.New(
    	kind.Gateway,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/rds.go

    )
    
    type RdsGenerator struct {
    	ConfigGenerator core.ConfigGenerator
    }
    
    var _ model.XdsResourceGenerator = &RdsGenerator{}
    
    // Map of all configs that do not impact RDS
    var skippedRdsConfigs = sets.New[kind.Kind](
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.PeerAuthentication,
    	kind.Secret,
    	kind.WasmPlugin,
    	kind.Telemetry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pilot/pkg/xds/nds.go

    // forwarding to upstream dns servers.
    type NdsGenerator struct {
    	ConfigGenerator core.ConfigGenerator
    }
    
    var _ model.XdsResourceGenerator = &NdsGenerator{}
    
    // Map of all configs that do not impact NDS
    var skippedNdsConfigs = sets.New(
    	kind.Gateway,
    	kind.VirtualService,
    	kind.DestinationRule,
    	kind.Secret,
    	kind.Telemetry,
    	kind.EnvoyFilter,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/lds.go

    )
    
    type LdsGenerator struct {
    	ConfigGenerator core.ConfigGenerator
    }
    
    var _ model.XdsResourceGenerator = &LdsGenerator{}
    
    // Map of all configs that do not impact LDS
    var skippedLdsConfigs = map[model.NodeType]sets.Set[kind.Kind]{
    	model.Router: sets.New(
    		// for autopassthrough gateways, we build filterchains per-dr subset
    		kind.WorkloadGroup,
    		kind.WorkloadEntry,
    		kind.Secret,
    		kind.ProxyConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds.go

    type EdsGenerator struct {
    	Cache         model.XdsCache
    	EndpointIndex *model.EndpointIndex
    }
    
    var _ model.XdsDeltaResourceGenerator = &EdsGenerator{}
    
    // Map of all configs that do not impact EDS
    var skippedEdsConfigs = sets.New(
    	kind.Gateway,
    	kind.VirtualService,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top