Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for disovery (0.46 sec)

  1. pilot/pkg/xds/discovery.go

    // limitations under the License.
    
    package xds
    
    import (
    	"context"
    	"fmt"
    	"sort"
    	"strconv"
    	"sync"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"github.com/google/uuid"
    	"go.uber.org/atomic"
    	"golang.org/x/time/rate"
    	"google.golang.org/grpc"
    
    	"istio.io/istio/pilot/pkg/autoregistration"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/aggregate/controller_test.go

    		ClusterID:           "cluster-1",
    		DiscoveryController: discovery1,
    	}
    
    	registry2 := serviceregistry.Simple{
    		ProviderID:          provider.Kubernetes,
    		ClusterID:           "cluster-2",
    		DiscoveryController: discovery2,
    	}
    
    	ctls := NewController(Options{})
    	ctls.AddRegistry(registry1)
    	ctls.AddRegistry(registry2)
    
    	return ctls, discovery1, discovery2
    }
    
    func TestServicesForMultiCluster(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/ads.go

    type DeltaDiscoveryStream = discovery.AggregatedDiscoveryService_DeltaAggregatedResourcesServer
    
    // DiscoveryClient is a client interface for XDS.
    type DiscoveryClient = discovery.AggregatedDiscoveryService_StreamAggregatedResourcesClient
    
    // DeltaDiscoveryClient is a client interface for Delta XDS.
    type DeltaDiscoveryClient = discovery.AggregatedDiscoveryService_DeltaAggregatedResourcesClient
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. pkg/controlplane/instance_test.go

    	c := &restclient.Config{
    		Host:          server.URL,
    		APIPath:       "/api",
    		ContentConfig: restclient.ContentConfig{NegotiatedSerializer: legacyscheme.Codecs},
    	}
    	discover := discovery.NewDiscoveryClientForConfigOrDie(c).WithLegacy()
    	_, all, err := discover.ServerGroupsAndResources()
    	if err != nil {
    		t.Error(err)
    	}
    	var count int
    	apiResources := sets.NewString()
    	for _, g := range all {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds_test
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy.go

    )
    
    type (
    	DiscoveryStream      = discovery.AggregatedDiscoveryService_StreamAggregatedResourcesServer
    	DeltaDiscoveryStream = discovery.AggregatedDiscoveryService_DeltaAggregatedResourcesServer
    	DiscoveryClient      = discovery.AggregatedDiscoveryService_StreamAggregatedResourcesClient
    	DeltaDiscoveryClient = discovery.AggregatedDiscoveryService_DeltaAggregatedResourcesClient
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. Makefile.core.mk

    	cp manifests/charts/istio-control/istio-discovery/files/injection-template.yaml manifests/charts/istiod-remote/files
    	cp manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml manifests/charts/istiod-remote/files
    	cp manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml manifests/charts/istiod-remote/templates
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/number_generated_rules_test.go

    	baseEp := netutils.BigForIP(netutils.ParseIPSloppy("172.16.0.1"))
    	epPort := 8080
    
    	eps := &discovery.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "ep",
    			Namespace: "namespace",
    		},
    		AddressType: discovery.AddressTypeIPv4,
    		Endpoints:   []discovery.Endpoint{},
    		Ports: []discovery.EndpointPort{{
    			Name:     ptr.To(fmt.Sprintf("%d", epPort)),
    			Port:     ptr.To(int32(epPort)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/sds/sdsservice.go

    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	sds "github.com/envoyproxy/go-control-plane/envoy/service/secret/v3"
    	"github.com/google/uuid"
    	uberatomic "go.uber.org/atomic"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller.go

    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/labels"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    	discoveryinformers "k8s.io/client-go/informers/discovery/v1"
    	clientset "k8s.io/client-go/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top