Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 394 for xds (0.07 sec)

  1. releasenotes/notes/max-rps-xds.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issues:
    - 35263
    releaseNotes:
    - |
      **Improved** the default `PILOT_MAX_REQUESTS_PER_SECOND`, which limits the number of **new** XDS connections per second,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 02 01:54:20 UTC 2022
    - 305 bytes
    - Viewed (0)
  2. releasenotes/notes/xds-partial-full.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 37989
    - 37974
    
    releaseNotes:
    - |
      **Improved** XDS generation to send less resource when possible, sometimes omitting a response entirely.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 317 bytes
    - Viewed (0)
  3. releasenotes/notes/agent-xds-proxy.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue: []
    releaseNotes:
    - |
      **Updated** XDS connections from Envoy will be proxied through the Istio sidecar agent. Doing so allows
      for consolidation of multiple connections from a pod to Istiod into a single connection, in addition to
      other planned future improvements. This feature (and change) is transparent to users and is enabled by default.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 13 03:21:34 UTC 2020
    - 551 bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/discovery.go

    	generators[v3.ClusterType] = &xds.CdsGenerator{ConfigGenerator: cg}
    	generators[v3.ListenerType] = &xds.LdsGenerator{ConfigGenerator: cg}
    	generators[v3.RouteType] = &xds.RdsGenerator{ConfigGenerator: cg}
    	generators[v3.EndpointType] = edsGen
    	ecdsGen := &xds.EcdsGenerator{ConfigGenerator: cg}
    	if env.CredentialsController != nil {
    		generators[v3.SecretType] = xds.NewSecretGen(env.CredentialsController, s.Cache, clusterID, env.Mesh())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. istioctl/pkg/clioptions/central.go

    )
    
    // CentralControlPlaneOptions holds options common to all subcommands
    // that invoke Istiod via xDS REST endpoint
    type CentralControlPlaneOptions struct {
    	// Xds is XDS endpoint, e.g. localhost:15010.
    	Xds string
    
    	// XdsPodLabel is a Kubernetes label on the Istiod pods
    	XdsPodLabel string
    
    	// XdsPodPort is a port exposing XDS (typically 15010 or 15012)
    	XdsPodPort int
    
    	// CertDir is the local directory containing certificates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 03:39:27 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/match/match.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package match
    
    import (
    	xds "github.com/cncf/xds/go/xds/core/v3"
    	matcher "github.com/cncf/xds/go/xds/type/matcher/v3"
    	network "github.com/envoyproxy/go-control-plane/envoy/extensions/matching/common_inputs/network/v3"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/pilot.libsonnet

        row.new('Push Information')
        + row.withPanels([
          panels.timeSeries.xdsPushes(
            'XDS Pushes', queries.xdsPushes, |||
              Rate of XDS push operations, by type. This is incremented on a per-proxy basis.
            |||
          ),
          panels.timeSeries.base(
            'Events', queries.pilotEvents, |||
              Size of each xDS push.
            |||
          ),
          panels.timeSeries.base(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/sds/sdsservice.go

    	w.Lock()
    	defer w.Unlock()
    	w.watch = &xds.WatchedResource{TypeUrl: typeURL, ResourceNames: names}
    }
    
    func (w *Watch) UpdateWatchedResource(_ string, f func(*xds.WatchedResource) *xds.WatchedResource) {
    	w.Lock()
    	defer w.Unlock()
    	w.watch = f(w.watch)
    }
    
    func (w *Watch) GetID() string {
    	// This always maps to the same local Envoy instance.
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. istioctl/pkg/proxystatus/proxystatus.go

      istioctl ps --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
    
      # Retrieve proxy status information via XDS from specific control plane in multi-control plane in-cluster configuration
      # (Select a specific control plane in an in-cluster canary Istio configuration.)
      istioctl ps --xds-label istio.io/rev=default
    `,
    		Aliases: []string{"ps"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. istioctl/pkg/multixds/gather.go

    		}
    		err = fw.Start()
    		if err != nil {
    			return nil, err
    		}
    		defer fw.Close()
    		xdsOpts.Xds = fw.Address()
    		// Use plaintext.
    		response, err := xds.GetXdsResponse(dr, istioNamespace, tokenServiceAccount, xdsOpts, []grpc.DialOption{})
    		if err != nil {
    			return nil, fmt.Errorf("could not get XDS from the agent pod %q: %v", pod.Name, err)
    		}
    		for _, resource := range response.GetResources() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top