Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for configSources (0.12 sec)

  1. manifests/charts/istiod-remote/values.yaml

        # JWKS URIs.
        jwksResolverExtraRootCA: ""
        # This is used to set the source of configuration for
        # the associated address in configSource, if nothing is specified
        # the default MCP is assumed.
        configSource:
          subscribedResources: []
        # The following is used to limit how long a sidecar can be connected
        # to a pilot. It balances out load across pilot instances at the cost of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    func maybeApplyEdsConfig(c *cluster.Cluster) {
    	if c.GetType() != cluster.Cluster_EDS {
    		return
    	}
    
    	c.EdsClusterConfig = &cluster.Cluster_EdsClusterConfig{
    		ServiceName: c.Name,
    		EdsConfig: &core.ConfigSource{
    			ConfigSourceSpecifier: &core.ConfigSource_Ads{
    				Ads: &core.AggregatedConfigSource{},
    			},
    			InitialFetchTimeout: durationpb.New(0),
    			ResourceApiVersion:  core.ApiVersion_V3,
    		},
    	}
    }
    
    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