Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 182 for xds (0.02 sec)

  1. architecture/ambient/ztunnel.md

      * In practice, this largely means that references are fully qualified in the API. IP Addresses (generally) have a network associated with them, node names have a cluster associated with them, etc.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	}
    
    	createConfigs([]*config.Config{httpDNS, httpDNSRR, tcpStatic}, store, t)
    
    	expectEvents(t, fx,
    		Event{Type: "xds full", ID: "*.google.com"},
    		Event{Type: "xds full", ID: "*.istio.io"},
    		Event{Type: "xds full", ID: "tcpstatic.com"},
    		Event{Type: "service", ID: "*.google.com", Namespace: httpDNS.Namespace},
    		Event{Type: "eds cache", ID: "*.google.com", Namespace: httpDNS.Namespace},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    // limitations under the License.
    
    package core
    
    import (
    	"fmt"
    	"net/netip"
    	"strconv"
    	"time"
    
    	xds "github.com/cncf/xds/go/xds/core/v3"
    	matcher "github.com/cncf/xds/go/xds/type/matcher/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. tests/integration/security/file_mounted_certs/main_test.go

      pilot:
        env:
          # We need to turn off the XDS Auth because test certificates only have a fixed/hardcoded identity, but the identity of the actual
          # deployed test services changes on each run due to a randomly generated namespace suffixes.
          # Turning the XDS-Auth ON will result in the error messages like:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. releasenotes/notes/51070.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 50808
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 144 bytes
    - Viewed (0)
  6. pilot/pkg/xds/bench_test.go

    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/route"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/mesh"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/auth.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"context"
    	"fmt"
    
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/security"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/ztunnel-dashboard.gen.json

                   "expr": "sum by (pod) (\n  rate(\n    istio_xds_connection_terminations_total{pod=~\"ztunnel-.*\"}\n  [$__rate_interval])\n)",
                   "legendFormat": "XDS Connection Terminations ({{pod}})"
                }
             ],
             "title": "XDS",
             "type": "timeseries"
          },
          {
             "datasource": {
                "type": "datasource",
                "uid": "-- Mixed --"
             },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. pkg/config/model_test.go

    			nil,
    		},
    		// mock type
    		{
    			&config.MockConfig{Key: "foobar"},
    			func(c Spec) Spec {
    				c.(*config.MockConfig).Key = "bar"
    				return c
    			},
    			protocmp.Transform(),
    		},
    		// XDS type, to test golang/proto
    		{
    			&cluster.Cluster{Name: "foobar"},
    			func(c Spec) Spec {
    				c.(*cluster.Cluster).Name = "bar"
    				return c
    			},
    			protocmp.Transform(),
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. 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 (0)
Back to top