Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for cds (0.14 sec)

  1. pilot/pkg/networking/grpcgen/cds.go

    	var port *model.Port
    	svc := push.ServiceForHostname(node, hostname)
    	if svc == nil {
    		return nil, fmt.Errorf("cds gen for %s: did not find service for cluster %s", node.ID, defaultClusterName)
    	}
    
    	port, ok := svc.Ports.GetByPort(portNum)
    	if !ok {
    		return nil, fmt.Errorf("cds gen for %s: did not find port %d in service for cluster %s", node.ID, portNum, defaultClusterName)
    	}
    
    	return &clusterBuilder{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds.go

    // Map of all configs that do not impact CDS
    var skippedCdsConfigs = sets.New(
    	kind.Gateway,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    )
    
    // Map all configs that impact CDS for gateways when `PILOT_FILTER_GATEWAY_CLUSTER_CONFIG = true`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. releasenotes/notes/cds-cache.yaml

    John Howard <******@****.***> 1625772841 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 08 19:34:01 UTC 2021
    - 245 bytes
    - Viewed (0)
  4. releasenotes/notes/cds-nack-passthrough.yaml

    John Howard <******@****.***> 1657032928 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 05 14:55:28 UTC 2022
    - 224 bytes
    - Viewed (0)
  5. releasenotes/notes/push-cds-and-eds-on-virtualservice-update.yaml

    ---
    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 27650
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 02 00:07:10 UTC 2020
    - 176 bytes
    - Viewed (0)
  6. releasenotes/notes/push-cds-on-auto-passthrough-gateway-change.yaml

    Jacek Ewertowski <******@****.***> 1715273579 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:59 UTC 2024
    - 181 bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/ready/probe_test.go

    			"config not fully received from XDS server: cds updates: 0 successful, 0 rejected; lds updates: 1 successful, 0 rejected",
    		},
    		{
    			"only cds",
    			"cluster_manager.cds.update_success: 1",
    			"config not fully received from XDS server: cds updates: 1 successful, 0 rejected; lds updates: 0 successful, 0 rejected",
    		},
    		{
    			"reject CDS",
    			`cluster_manager.cds.update_rejected: 1
    listener_manager.lds.update_success: 1`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/xds_cache.go

    	Cacheable() bool
    }
    
    const (
    	CDSType = "cds"
    	EDSType = "eds"
    	RDSType = "rds"
    	SDSType = "sds"
    )
    
    // NewXdsCache returns an instance of a cache.
    func NewXdsCache() XdsCache {
    	cache := XdsCacheImpl{
    		eds: newTypedXdsCache[uint64](),
    	}
    	if features.EnableCDSCaching {
    		cache.cds = newTypedXdsCache[uint64]()
    	} else {
    		cache.cds = disabledCache[uint64]{}
    	}
    	if features.EnableRDSCaching {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 07:02:05 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. pkg/adsc/delta.go

    //	  CDS/A:
    //	    EDS/C:
    //	  CDS/B:
    //	    EDS/C:
    //
    // Here, CDS/A and CDS/B become parents of EDS/C, and EDS/C is a child of both CDS/A and CDS/B.
    //
    // If a response later indicates that the CDS resource A is removed, all relationships originating from A are also removed.
    // The updated tree would then be:
    //
    //	CDS/*:
    //	  CDS/B:
    //	    EDS/C:
    //
    // This change reflects the removal of CDS/A and its associated child link to EDS/C.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. pkg/adsc/delta_test.go

    					Resources: []*discovery.Resource{
    						{
    							Name:     "test-eds",
    							Resource: protoconv.MessageToAny(testClusterNoSecret),
    						},
    					},
    				},
    			},
    			expectedTree: `CDS/:
      CDS/test-eds:
        EDS/test-eds:
    LDS/:
    `,
    		},
    		{
    			desc: "initial request cluster with secret",
    			serverResponses: []*discovery.DeltaDiscoveryResponse{
    				{
    					TypeUrl: v3.ClusterType,
    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