Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 366 for xds (0.14 sec)

  1. pkg/xds/server.go

    		// By XDS spec, these are not wildcard
    		return false
    	case model.ClusterType, model.ListenerType:
    		// By XDS spec, these are wildcard
    		return true
    	default:
    		// All of our internal types use wildcard semantics
    		return true
    	}
    }
    
    // DiscoveryStream is a server interface for XDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/deltatest.go

    // limitations under the License.
    
    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pilot/pkg/features/tuning.go

    	XDSCacheMaxSize = env.Register("PILOT_XDS_CACHE_SIZE", 60000,
    		"The maximum number of cache entries for the XDS cache.").Get()
    
    	XDSCacheIndexClearInterval = env.Register("PILOT_XDS_CACHE_INDEX_CLEAR_INTERVAL", 5*time.Second,
    		"The interval for xds cache index clearing.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (1)
  4. pkg/bootstrap/testdata/all_golden.json

                    }
                  }
                }]
              }]
            }
          },
          {
            "name": "xds-grpc",
            "type" : "STATIC",
            "connect_timeout": "1s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "xds-grpc",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/deferred_cluster_creation_golden.json

                    }
                  }
                }]
              }]
            }
          },
          {
            "name": "xds-grpc",
            "type" : "STATIC",
            "connect_timeout": "1s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "xds-grpc",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
                    "address":{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/pilot-dashboard.gen.json

                   "legendFormat": "{{type}}"
                }
             ],
             "title": "XDS Pushes",
             "type": "timeseries"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
             "description": "Size of each xDS push.\n",
             "fieldConfig": {
                "defaults": {
                   "custom": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/ztunnel.libsonnet

          panels.timeSeries.dns('DNS Request', queries.dns, 'DNS queries recieved per instance'),
        ]),
        row.new('Operations')
        + row.withPanels([
          panels.timeSeries.base(
            'XDS', queries.ztunnelXdsConnections, |||
              Count of XDS connection terminations.
              This will typically spike every 30min for each instance.
            |||
          ),
          panels.timeSeries.base('Workload Manager', queries.workloadManager, |||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. pkg/proxy/proxyinfo.go

    package proxy
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/kube"
    	istioVersion "istio.io/istio/pkg/version"
    )
    
    type sidecarSyncStatus struct {
    	// nolint: structcheck, unused
    	pilot string
    	xds.SyncStatus
    }
    
    // GetProxyInfo retrieves infos of proxies that connect to the Istio control plane of specific revision.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 22:41:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. pkg/test/echo/cmd/server/main.go

    // limitations under the License.
    
    package main
    
    import (
    	"os"
    	"os/signal"
    	"strconv"
    	"syscall"
    
    	"github.com/spf13/cobra"
    	// To install the xds resolvers and balancers.
    	_ "google.golang.org/grpc/xds"
    
    	"istio.io/istio/pkg/cmd"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/server"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. pkg/test/echo/common/model.go

    	// XDSServer, for gRPC servers, will use the xds.NewGRPCServer constructor to rely on XDS configuration.
    	// If this flag is set but the environment variable feature gates aren't, we should fail due to gRPC internals.
    	XDSServer bool
    
    	// XDSTestBootstrap allows settings per-endpoint bootstrap without using the GRPC_XDS_BOOTSTRAP env var
    	XDSTestBootstrap []byte
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top