Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for _rds (0.15 sec)

  1. pkg/adsc/adsc.go

    			}
    		}
    		rds[r.Name] = r
    		size += proto.Size(r)
    	}
    	if a.initialLoad == 0 {
    		a.initialLoad = time.Since(a.watchTime)
    		adscLog.Infof("RDS: %d size=%d vhosts=%d routes=%d time=%d", len(configurations), size, vh, rcount, a.initialLoad)
    	} else {
    		adscLog.Infof("RDS: %d size=%d vhosts=%d routes=%d", len(configurations), size, vh, rcount)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  2. pilot/pkg/xds/rds.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    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,
    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/networking/grpcgen/rds.go

    Zhonghu Xu <******@****.***> 1711645742 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/pilot/status.go

    	configs := handleAndGetXdsConfigs(clientConfig)
    	for _, config := range configs {
    		cfgType := config.GetTypeUrl()
    		switch cfgType {
    		case xdsresource.ListenerType:
    			lds = formatStatus(config)
    		case xdsresource.ClusterType:
    			cds = formatStatus(config)
    		case xdsresource.RouteType:
    			rds = formatStatus(config)
    		case xdsresource.EndpointType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pkg/kube/kclient/crdwatcher.go

    	c.mutex.Unlock()
    	kube.WaitForCacheSync("crd watcher", stop, c.crds.HasSynced)
    	c.queue.Run(stop)
    	c.crds.ShutdownHandlers()
    }
    
    // WaitForCRD waits until the request CRD exists, and returns true on success. A false return value
    // indicates the CRD does not exist but the wait failed or was canceled.
    // This is useful to conditionally enable controllers based on CRDs being created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. manifests/charts/base/values.yaml

      base:
        # Used for helm2 to add the CRDs to templates.
        enableCRDTemplates: false
    
        # Validation webhook configuration url
        # For example: https://$remotePilotAddress:15017/validate
        validationURL: ""
        # Validation webhook caBundle value. Useful when running pilot with a well known cert
        validationCABundle: ""
    
        # For istioctl usage to disable istio config crds in base
        enableIstioConfigCRDs: true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    	apiServiceName := groupVersion.Version + "." + groupVersion.Group
    
    	// check all CRDs.  There shouldn't that many, but if we have problems later we can index them
    	crds, err := c.crdLister.List(labels.Everything())
    	if err != nil {
    		return err
    	}
    	for _, crd := range crds {
    		if crd.Spec.Group != groupVersion.Group {
    			continue
    		}
    		for _, version := range crd.Spec.Versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. manifests/charts/README.md

    in that cluster. Currently, the minimum we require is the security provider (node agent or citadel).
    
    ### Install Istio CRDs
    
    This is the first step of the installation. Please do not remove or edit any CRD - config currently requires
    all CRDs to be present. On each upgrade it is recommended to reapply the file, to make sure
    you get all CRDs.  CRDs are separated by release and by component type in the CRD directory.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. pilot/pkg/features/xds.go

    	// EnableRDSCaching determines if RDS caching is enabled. This is explicitly split out of ENABLE_XDS_CACHE,
    	// so that in case there are issues with the RDS cache we can just disable the RDS cache.
    	EnableRDSCaching = env.Register("PILOT_ENABLE_RDS_CACHE", true,
    		"If true, Pilot will cache RDS responses. Note: this depends on PILOT_ENABLE_XDS_CACHE.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. pkg/adsc/delta_test.go

    					ConfigType: &listener.Filter_TypedConfig{
    						TypedConfig: protoconv.MessageToAny(&hcm.HttpConnectionManager{
    							RouteSpecifier: &hcm.HttpConnectionManager_Rds{
    								Rds: &hcm.Rds{
    									RouteConfigName: "test-rds-config",
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top