Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 221 for discoveryv1 (0.32 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/apiserver.go

    		delegateHandler = http.NotFoundHandler()
    	}
    
    	versionDiscoveryHandler := &versionDiscoveryHandler{
    		discovery: map[schema.GroupVersion]*discovery.APIVersionHandler{},
    		delegate:  delegateHandler,
    	}
    	groupDiscoveryHandler := &groupDiscoveryHandler{
    		discovery: map[string]*discovery.APIGroupHandler{},
    		delegate:  delegateHandler,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 14:31:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    		Connection:   xds.NewConnection(peerAddr, nil),
    		deltaStream:  stream,
    		deltaReqChan: make(chan *discovery.DeltaDiscoveryRequest, 1),
    	}
    }
    
    // To satisfy methods that need DiscoveryRequest. Not suitable for real usage
    func deltaToSotwRequest(request *discovery.DeltaDiscoveryRequest) *discovery.DiscoveryRequest {
    	return &discovery.DiscoveryRequest{
    		Node:          request.Node,
    		ResourceNames: request.ResourceNamesSubscribe,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// Defaults to "/etc/kubernetes/pki/ca.crt".
    	// +optional
    	CACertPath string `json:"caCertPath,omitempty"`
    
    	// Discovery specifies the options for the kubelet to use during the TLS Bootstrap process
    	Discovery Discovery `json:"discovery"`
    
    	// ControlPlane defines the additional control plane instance to be deployed on the joining node.
    	// If nil, no additional control plane instance will be deployed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. pilot/pkg/xds/eds_sh_test.go

    	"fmt"
    	"sort"
    	"testing"
    	"time"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/protobuf/types/known/structpb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_test.go

    	s.MemRegistry.RemoveService("removeservice.com")
    
    	if _, ok := s.Discovery.Env.EndpointIndex.ShardsForService("removeservice.com", ""); ok {
    		t.Fatalf("Expected service key %s to be deleted in EndpointIndex. But is still there %v",
    			"removeservice.com", s.Discovery.Env.EndpointIndex.Shardz())
    	}
    }
    
    func fullPush(s *xdsfake.FakeDiscoveryServer) {
    	s.Discovery.Push(&model.PushRequest{Full: true})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. pilot/test/xds/fake.go

    package xds
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"strings"
    	"time"
    
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials/insecure"
    	"google.golang.org/grpc/test/bufconn"
    	authorizationv1 "k8s.io/api/authorization/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/aggregator.go

    			// this prevents the autoregistration controller's initial sync from deleting APIServices for CRDs that still exist.
    			// we only need to do this if CRDs are enabled on this server.  We can't use discovery because we are the source for discovery.
    			if crdAPIEnabled {
    				klog.Infof("waiting for initial CRD sync...")
    				crdRegistrationController.WaitForInitialSync()
    				klog.Infof("initial CRD sync complete...")
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. pilot/pkg/xds/eds.go

    package xds
    
    import (
    	"fmt"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pilot/pkg/xds/endpoints"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // SvcUpdate is a callback from service discovery when service info changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. pilot/pkg/model/typed_xds_cache_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package model
    
    import (
    	"reflect"
    	"testing"
    	"time"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/hash"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/config/common_test.go

    			input: []any{&kubeadmapi.JoinConfiguration{
    				Discovery: kubeadmapi.Discovery{
    					Timeout: &metav1.Duration{
    						Duration: 1234 * time.Microsecond,
    					},
    				},
    				Timeouts: &kubeadmapi.Timeouts{
    					Discovery: &metav1.Duration{},
    				},
    			}},
    			expected: []any{&kubeadmapi.JoinConfiguration{
    				Timeouts: &kubeadmapi.Timeouts{
    					Discovery: &metav1.Duration{
    						Duration: 1234 * time.Microsecond,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top