Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for configSources (0.15 sec)

  1. pilot/pkg/bootstrap/server.go

    			if err != nil {
    				return fmt.Errorf("failed reading mesh config: %v", err)
    			}
    			if len(meshConfig.ConfigSources) == 0 && args.RegistryOptions.KubeConfig != "" {
    				hasK8SConfigStore = true
    			}
    			for _, cs := range meshConfig.ConfigSources {
    				if cs.Address == string(Kubernetes)+"://" {
    					hasK8SConfigStore = true
    					break
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/grpcgen/lds.go

    							HttpFilters: filters,
    							RouteSpecifier: &hcm.HttpConnectionManager_Rds{
    								// TODO: for TCP listeners don't generate RDS, but some indication of cluster name.
    								Rds: &hcm.Rds{
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    									RouteConfigName: clusterKey(serviceHost, p.Port),
    								},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_builder.go

    		}
    	}
    
    	connectionManager.StreamIdleTimeout = durationpb.New(0 * time.Second)
    
    	if httpOpts.rds != "" {
    		rds := &hcm.HttpConnectionManager_Rds{
    			Rds: &hcm.Rds{
    				ConfigSource: &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: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/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
    - 21.1K bytes
    - Viewed (0)
  5. 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)
  6. 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