Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 592 for disovery (0.3 sec)

  1. cmd/kubeadm/app/discovery/file/file.go

    	if err := kubeconfigutil.EnsureCertificateAuthorityIsEmbedded(currentCluster); err != nil {
    		return nil, err
    	}
    
    	// If the discovery file config contains authentication credentials
    	if kubeconfigutil.HasAuthenticationCredentials(config) {
    		klog.V(1).Info("[discovery] Using authentication credentials from the discovery file for validating TLS connection")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/join.go

    	)
    	flagSet.BoolVar(
    		&cfg.Discovery.BootstrapToken.UnsafeSkipCAVerification, options.TokenDiscoverySkipCAHash, false,
    		"For token-based discovery, allow joining without --discovery-token-ca-cert-hash pinning.",
    	)
    	//	discovery via kube config file flag
    	flagSet.StringVar(
    		&cfg.Discovery.File.KubeConfigPath, options.FileDiscovery, "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    	emptyEndpointSlices := []*discovery.EndpointSlice{
    		makeTestEndpointSlice("ns1", "ep1", 1, func(*discovery.EndpointSlice) {}),
    	}
    	subset1 := func(eps *discovery.EndpointSlice) {
    		eps.AddressType = discovery.AddressTypeIPv4
    		eps.Endpoints = []discovery.Endpoint{{
    			Addresses: []string{"10.1.1.1"},
    		}}
    		eps.Ports = []discovery.EndpointPort{{
    			Name:     ptr.To("p11"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  4. pkg/apis/discovery/install/install.go

    */
    
    // Package install installs the discovery API group, making it available as
    // an option to all of the API encoding/decoding machinery.
    package install
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/discovery"
    	v1 "k8s.io/kubernetes/pkg/apis/discovery/v1"
    	"k8s.io/kubernetes/pkg/apis/discovery/v1beta1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 06:31:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/conversion.go

    	err := autoConvert_v1beta4_JoinConfiguration_To_kubeadm_JoinConfiguration(in, out, s)
    	out.Discovery.Timeout = in.Timeouts.Discovery.DeepCopy()
    	return err
    }
    
    // Convert_kubeadm_Discovery_To_v1beta4_Discovery is required because there is no Discovery.Timeout in v1beta4
    func Convert_kubeadm_Discovery_To_v1beta4_Discovery(in *kubeadm.Discovery, out *Discovery, s conversion.Scope) error {
    	return autoConvert_kubeadm_Discovery_To_v1beta4_Discovery(in, out, s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/join_test.go

    		},
    		{
    			name: "pass if file discovery is set",
    			flags: map[string]string{
    				options.FileDiscovery: "https://foo",
    			},
    			validate: func(t *testing.T, data *joinData) {
    				// validate that file discovery settings are set into join data
    				if data.cfg.Discovery.File == nil || data.cfg.Discovery.File.KubeConfigPath != "https://foo" {
    					t.Error("Invalid data.cfg.Discovery.File")
    				}
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. pkg/proxy/metaproxier/meta_proxier.go

    // is observed.
    func (proxier *metaProxier) OnEndpointSliceAdd(endpointSlice *discovery.EndpointSlice) {
    	switch endpointSlice.AddressType {
    	case discovery.AddressTypeIPv4:
    		proxier.ipv4Proxier.OnEndpointSliceAdd(endpointSlice)
    	case discovery.AddressTypeIPv6:
    		proxier.ipv6Proxier.OnEndpointSliceAdd(endpointSlice)
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/xds/deltaadstest.go

    		return
    	case resp := <-a.responses:
    		a.t.Fatalf("got unexpected response: %v", resp)
    	}
    }
    
    func (a *DeltaAdsTest) fillInRequestDefaults(req *discovery.DeltaDiscoveryRequest) *discovery.DeltaDiscoveryRequest {
    	if req == nil {
    		req = &discovery.DeltaDiscoveryRequest{}
    	}
    	if req.TypeUrl == "" {
    		req.TypeUrl = a.Type
    	}
    	if req.Node == nil {
    		req.Node = &core.Node{
    			Id:       a.ID,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. pkg/istio-agent/xds_proxy_delta_test.go

    }
    
    func deltaStream(t *testing.T, conn *grpc.ClientConn) discovery.AggregatedDiscoveryService_DeltaAggregatedResourcesClient {
    	t.Helper()
    	adsClient := discovery.NewAggregatedDiscoveryServiceClient(conn)
    	downstream, err := adsClient.DeltaAggregatedResources(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return downstream
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top