Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for _rds (0.04 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. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    	if err := wait.PollImmediateUntil(time.Second, func() (bool, error) {
    		crds, err := c.crdLister.List(labels.Everything())
    		if err != nil {
    			utilruntime.HandleError(fmt.Errorf("failed to initially list CRDs: %v", err))
    			return false, nil
    		}
    		for _, crd := range crds {
    			for _, v := range crd.Spec.Versions {
    				gv := schema.GroupVersion{Group: crd.Spec.Group, Version: v.Name}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/aggregator.go

    		}
    		go func() {
    			// let the CRD controller process the initial set of CRDs before starting the autoregistration controller.
    			// this prevents the autoregistration controller's initial sync from deleting APIServices for CRDs that still exist.
    			// we only need to do this if CRDs are enabled on this server.  We can't use discovery because we are the source for discovery.
    			if crdAPIEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    }
    
    // gatewayRDSRouteName generates the RDS route config name for gateway's servers.
    // Unlike sidecars where the RDS route name is the listener port number, gateways have a different
    // structure for RDS.
    // HTTP servers have route name set to http.<portNumber>.
    //
    //	Multiple HTTP servers can exist on the same port and the code will combine all of them into
    //	one single RDS payload for http.<portNumber>
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_builder.go

    	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,
    				},
    				RouteConfigName: httpOpts.rds,
    			},
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. pilot/pkg/features/experimental.go

    			" be enabled. In addition to this being enabled, the gateway-api CRDs need to be installed.").Get()
    
    	EnableAlphaGatewayAPI = env.Register("PILOT_ENABLE_ALPHA_GATEWAY_API", false,
    		"If this is set to true, support for alpha APIs in the Kubernetes gateway-api (github.com/kubernetes-sigs/gateway-api) will "+
    			" be enabled. In addition to this being enabled, the gateway-api CRDs need to be installed.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    			},
    		)
    
    	require.NoError(t, err)
    
    	err = env.FakeResourceManager.WaitForActions(ctx, 1*time.Second)
    	require.NoError(t, err)
    }
    
    // Test that having multiple CRDs in the same version will add both
    // versions to discovery.
    func TestMultipleCRDSameVersion(t *testing.T) {
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	env := setup()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. Makefile.core.mk

    	@bin/check_samples.sh
    	@testlinter
    	@envvarlinter istioctl pilot security
    
    # Allow-list:
    # (k8s) some Machinery, utils, klog
    # (proto) Istio API non-CRDs, MeshConfig and ProxyConfig
    # (proto) Envoy TLS proto for SDS
    # (proto) Envoy Wasm filters for wasm xDS proxy
    # (proto) xDS discovery service for xDS proxy
    # (proto) SDS secret and contrib QAT and cryptomb
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. architecture/networking/pilot.md

    #### CRD Watcher
    
    For watches against custom types (CRDs), we want to gracefully handle missing CRDs. Naively starting informers against the missing types would result in errors and blocking startup. Instead, we introduce a "CRD Watcher" component that watches the CRDs in the cluster to determine if they are available or not.
    
    This is consumed in two ways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top