Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/config/analysis/analyzers/util/proxyconfig.go

    }
    
    // ImageType returns the effective image type for the given pod.
    func (e *EffectiveProxyConfigResolver) ImageType(pod *resource.Instance) string {
    	variant := ""
    	if e.meshConfig.GetDefaultConfig().GetImage().GetImageType() != "" {
    		variant = e.meshConfig.GetDefaultConfig().GetImage().GetImageType()
    	}
    	if e.root.GetImage().GetImageType() != "" {
    		variant = e.root.GetImage().GetImageType()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 21:07:52 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/proxy_config.go

    	if p == nil || meta == nil {
    		return nil
    	}
    
    	effectiveProxyConfig := mesh.DefaultProxyConfig()
    
    	// Merge the proxy config from default config.
    	effectiveProxyConfig = mergeWithPrecedence(mc.GetDefaultConfig(), effectiveProxyConfig)
    	if p.rootNamespace != "" {
    		effectiveProxyConfig = mergeWithPrecedence(p.mergedGlobalConfig(), effectiveProxyConfig)
    	}
    
    	if meta.Namespace != p.rootNamespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top