Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 227 for discoveryv1 (0.16 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    // SetDefaults_Discovery assigns default values for the discovery process
    func SetDefaults_Discovery(obj *Discovery) {
    	if len(obj.TLSBootstrapToken) == 0 && obj.BootstrapToken != nil {
    		obj.TLSBootstrapToken = obj.BootstrapToken.Token
    	}
    
    	if obj.File != nil {
    		SetDefaults_FileDiscovery(obj.File)
    	}
    }
    
    // SetDefaults_FileDiscovery assigns default values for file based discovery
    func SetDefaults_FileDiscovery(obj *FileDiscovery) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apimachinery/pkg/version"
    	"k8s.io/apiserver/pkg/endpoints/discovery"
    	discoveryendpoint "k8s.io/apiserver/pkg/endpoints/discovery/aggregated"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    
    	apiextensionshelpers "k8s.io/apiextensions-apiserver/pkg/apihelpers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K 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. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	nsB := "nsB"
    
    	// Create a namespace with discovery selector enabled
    	createNamespace(t, client.Kube(), nsA, map[string]string{"discovery-selectors": "enabled"})
    	// Create a namespace without discovery selector enabled
    	createNamespace(t, client.Kube(), nsB, map[string]string{})
    	expectConfigMap(t, nc.configmaps, CACertNamespaceConfigMap, nsA, expectedData)
    	// config map should not be created for discovery selector disabled namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/xds/workload.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config/schema/kind"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/input-tracking/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "Configuration input discovery code"
    
    dependencies {
        api(libs.jsr305)
        api(libs.guava)
    
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 229 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top