Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 394 for xds (0.08 sec)

  1. tools/packaging/common/envoy_bootstrap.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: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/discovery.go

    	ProxyNeedsPush func(proxy *model.Proxy, req *model.PushRequest) bool
    
    	// concurrentPushLimit is a semaphore that limits the amount of concurrent XDS pushes.
    	concurrentPushLimit chan struct{}
    	// RequestRateLimit limits the number of new XDS requests allowed. This helps prevent thundering hurd of incoming requests.
    	RequestRateLimit *rate.Limiter
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (1)
  3. pilot/pkg/xds/ecds.go

    				return nil, model.DefaultXdsLogDetails, nil
    			}
    			// Inserts Wasm pull secrets in ECDS response, which will be used at xds proxy for image pull.
    			// Before forwarding to Envoy, xds proxy will remove the secret from ECDS response.
    			secrets = e.GeneratePullSecrets(proxy, wasmSecrets, secretController)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/queries.libsonnet

                    istio_dns_requests_total{%(podLabels)s}
                  [$__rate_interval])
                )
              |||
            ),
    
          ztunnelXdsConnections:
            self.query(
              'XDS Connection Terminations ({{pod}})',
              |||
                sum by (pod) (
                  rate(
                    istio_xds_connection_terminations_total{%(podLabels)s}
                  [$__rate_interval])
                )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pilot/pkg/features/security.go

    	XDSAuth = env.Register("XDS_AUTH", true,
    		"If true, will authenticate XDS clients.").Get()
    
    	EnableXDSIdentityCheck = env.Register(
    		"PILOT_ENABLE_XDS_IDENTITY_CHECK",
    		true,
    		"If enabled, pilot will authorize XDS clients, to ensure they are acting only as namespaces they have permissions for.",
    	).Get()
    
    	// TODO: Move this to proper API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 13 03:50:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ads_test.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/status/distribution"
    	"istio.io/istio/pilot/pkg/xds"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	xdsfake "istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/adsc"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/protocol"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. architecture/ambient/peer-authentication.md

    ## PeerAuthentication and ztunnel
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. pkg/test/echo/client.go

    	"fmt"
    	"io"
    	"strings"
    	"time"
    
    	"go.uber.org/atomic"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials"
    	"google.golang.org/grpc/credentials/insecure"
    	xdscreds "google.golang.org/grpc/credentials/xds"
    
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    var _ io.Closer = &Client{}
    
    // Client of an Echo server that simplifies request/response processing for Forward commands.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  9. pkg/config/xds/filter_types.go

    //go:generate sh -c "echo '// limitations under the License.\n' >> filter_types.gen.go"
    //go:generate sh -c "echo '// Code generated by filter_types.go. DO NOT EDIT.\n' >> filter_types.gen.go"
    //go:generate sh -c "echo 'package xds\n\nimport (' >> filter_types.gen.go"
    //go:generate sh -c "go list github.com/envoyproxy/go-control-plane/... | grep 'v3' | grep -v /pkg/ | xargs -I{} echo '\t_ \"{}\"' >> filter_types.gen.go"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/typed_xds_cache.go

    		"xds_cache_reads",
    		"Total number of xds cache xdsCacheReads.",
    		monitoring.WithEnabled(enableStats),
    	)
    
    	xdsCacheEvictions = monitoring.NewSum(
    		"xds_cache_evictions",
    		"Total number of xds cache evictions.",
    		monitoring.WithEnabled(enableStats),
    	)
    
    	xdsCacheSize = monitoring.NewGauge(
    		"xds_cache_size",
    		"Current size of xds cache",
    		monitoring.WithEnabled(enableStats),
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top