Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for cds (0.02 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/features/xds.go

    		"If true, Pilot will cache XDS responses.").Get()
    
    	// EnableCDSCaching determines if CDS caching is enabled. This is explicitly split out of ENABLE_XDS_CACHE,
    	// so that in case there are issues with the CDS cache we can just disable the CDS cache.
    	EnableCDSCaching = env.Register("PILOT_ENABLE_CDS_CACHE", true,
    		"If true, Pilot will cache CDS 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)
  8. tools/bug-report/pkg/content/content.go

    	if err != nil {
    		return nil, err
    	}
    	var cds []string
    	for _, cd := range strings.Split(out, "\n") {
    		if strings.TrimSpace(cd) != "" {
    			cds = append(cds, cd)
    		}
    	}
    	return cds, nil
    }
    
    func getCRDList(p *Params) ([]string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/pilot/status.go

    				continue
    			}
    			cds, lds, eds, rds, ecds := getSyncStatus(&clientConfig)
    			cp := multixds.CpInfo(dr)
    			fullStatus = append(fullStatus, &xdsWriterStatus{
    				proxyID:               clientConfig.GetNode().GetId(),
    				clusterID:             meta.ClusterID.String(),
    				istiodID:              cp.ID,
    				istiodVersion:         meta.IstioVersion,
    				clusterStatus:         cds,
    				listenerStatus:        lds,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/model/xds.go

    )
    
    // GetShortType returns an abbreviated form of a type, useful for logging or human friendly messages
    func GetShortType(typeURL string) string {
    	switch typeURL {
    	case ClusterType:
    		return "CDS"
    	case ListenerType:
    		return "LDS"
    	case RouteType:
    		return "RDS"
    	case EndpointType:
    		return "EDS"
    	case SecretType:
    		return "SDS"
    	case NameTableType:
    		return "NDS"
    	case ProxyConfigType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top