Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for cds (0.02 sec)

  1. 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)
  2. pilot/cmd/pilot-agent/status/util/stats.go

    	"net"
    	"strconv"
    	"strings"
    	"time"
    
    	multierror "github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/http"
    )
    
    const (
    	statCdsRejected    = "cluster_manager.cds.update_rejected"
    	statsCdsSuccess    = "cluster_manager.cds.update_success"
    	statLdsRejected    = "listener_manager.lds.update_rejected"
    	statLdsSuccess     = "listener_manager.lds.update_success"
    	statServerState    = "server.state"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 15:50:49 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. releasenotes/notes/30181.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 30181
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 04 02:18:31 UTC 2021
    - 193 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. istioctl/pkg/writer/pilot/testdata/multiXdsStatusSinglePilot.txt

    NAME       CLUSTER      CDS       LDS        EDS        RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE     SYNCED     SYNCED     NOT SENT     NOT SENT     istiod1     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 300 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

                    [":authority"] = "internal.org.net"
                   },
                  "authorize call",
                  5000)
                end
      # The second patch adds the cluster that is referenced by the lua code
      # cds match is omitted as a new cluster is being added
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: ADD
          value: # cluster specification
            name: "lua_cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/pilot/testdata/multiXdsStatusMultiPilot.txt

    NAME       CLUSTER      CDS          LDS         EDS         RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE        SYNCED      SYNCED      NOT SENT     SYNCED       istiod1     1.20
    proxy2     cluster2     STALE        SYNCED      STALE       SYNCED       STALE        istiod2     1.19
    proxy3     cluster3     NOT SENT     ERROR       STALE       NOT SENT     NOT SENT     istiod3     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 522 bytes
    - Viewed (0)
  10. releasenotes/notes/39726.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    issue:
      - 39726
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 07 03:52:19 UTC 2022
    - 222 bytes
    - Viewed (0)
Back to top