Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 394 for xds (0.11 sec)

  1. pilot/pkg/networking/grpcgen/grpcecho_test.go

    	"fmt"
    	"math"
    	"net"
    	"runtime"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	"google.golang.org/grpc"
    	//  To install the xds resolvers and balancers.
    	_ "google.golang.org/grpc/xds"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/test/echo"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/adstest.go

    	"google.golang.org/grpc"
    
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/test"
    )
    
    func NewAdsTest(t test.Failer, conn *grpc.ClientConn) *AdsTest {
    	return NewXdsTest(t, conn, func(conn *grpc.ClientConn) (DiscoveryClient, error) {
    		xds := discovery.NewAggregatedDiscoveryServiceClient(conn)
    		return xds.StreamAggregatedResources(context.Background())
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/grpcgen.go

    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config/host"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    // Support generation of 'ApiListener' LDS responses, used for native support of gRPC.
    // The same response can also be used by other apps using XDS directly.
    
    // GRPC proposal:
    // https://github.com/grpc/proposal/blob/master/A27-xds-global-load-balancing.md
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/eventhandler.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 (
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // EventType represents the type of object we are tracking, mapping to envoy TypeUrl.
    type EventType = string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. pilot/pkg/xds/rds_test.go

    // limitations under the License.
    package xds_test
    
    import (
    	"fmt"
    	"testing"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    )
    
    func TestRDS(t *testing.T) {
    	tests := []struct {
    		name   string
    		node   string
    		routes []string
    	}{
    		{
    			"sidecar_new",
    			sidecarID(app3Ip, "app3"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/vm_test.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // TestRegistration is an e2e test for registration. Most tests are in autoregister package, but this
    // exercises the full XDS flow.
    func TestRegistration(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. pilot/pkg/xds/debug_test.go

    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/istioctl/pkg/util/configdump"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/xds"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	xdsfake "istio.io/istio/pilot/test/xds"
    )
    
    func TestSyncz(t *testing.T) {
    	t.Run("return the sent and ack status of adsClient connections", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/grpcgen/grpcgen_test.go

    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/credentials/insecure"
    	xdscreds "google.golang.org/grpc/credentials/xds"
    	"google.golang.org/grpc/metadata"
    	"google.golang.org/grpc/resolver"
    	"google.golang.org/grpc/serviceconfig"
    	"google.golang.org/grpc/status"
    	xdsgrpc "google.golang.org/grpc/xds" // To install the xds resolvers and balancers.
    	"google.golang.org/protobuf/proto"
    
    	networking "istio.io/api/networking/v1alpha3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads.go

    	"KNative revision, set if running in knative").Get()
    
    // DiscoveryStream is a server interface for XDS.
    type DiscoveryStream = xds.DiscoveryStream
    
    // DeltaDiscoveryStream is a server interface for Delta XDS.
    type DeltaDiscoveryStream = discovery.AggregatedDiscoveryService_DeltaAggregatedResourcesServer
    
    // DiscoveryClient is a client interface for XDS.
    type DiscoveryClient = discovery.AggregatedDiscoveryService_StreamAggregatedResourcesClient
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy.go

    		// Increase metric when xds connection error, for example: forgot to restart ingressgateway or sidecar after changing root CA.
    		metrics.IstiodConnectionErrors.Increment()
    		return err
    	}
    	log.Infof("connected to upstream XDS server: %s", p.istiodAddress)
    	defer log.Debugf("disconnected from XDS server: %s", p.istiodAddress)
    
    	con.upstream = upstream
    
    	// Handle upstream xds recv
    	go func() {
    		for {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top