Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ParseIPSloppy (0.13 sec)

  1. pkg/kubelet/nodestatus/setters_test.go

    			// config like that.
    			name:              "Dual-stack cloud, with dual-stack nodeIPs",
    			nodeIP:            netutils.ParseIPSloppy("2600:1f14:1d4:d101::ba3d"),
    			secondaryNodeIP:   netutils.ParseIPSloppy("10.1.1.2"),
    			cloudProviderType: cloudProviderExternal,
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    	info := &endpointInfo{
    		ip:         baseInfo.IP(),
    		port:       uint16(baseInfo.Port()),
    		isLocal:    baseInfo.IsLocal(),
    		macAddress: conjureMac("02-11", netutils.ParseIPSloppy(baseInfo.IP())),
    		refCount:   new(uint16),
    		hnsID:      "",
    		hns:        proxier.hns,
    
    		ready:       baseInfo.IsReady(),
    		serving:     baseInfo.IsServing(),
    		terminating: baseInfo.IsTerminating(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    	// from documentation is not unheard of, so the restriction to not use the TEST-NET-2 range
    	// must be documented.
    	vs := utilipvs.VirtualServer{
    		Address:   netutils.ParseIPSloppy("198.51.100.0"),
    		Protocol:  "TCP",
    		Port:      20000,
    		Scheduler: scheduler,
    	}
    	if err := ipvs.AddVirtualServer(&vs); err != nil {
    		logger.Error(err, "Could not create dummy VS", "scheduler", scheduler)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    				ConcurrentPolicySyncs: 9,
    			},
    		},
    		SecureServing: (&apiserveroptions.SecureServingOptions{
    			BindPort:    10001,
    			BindAddress: netutils.ParseIPSloppy("192.168.4.21"),
    			ServerCert: apiserveroptions.GeneratableKeyCert{
    				CertDirectory: "/a/b/c",
    				PairName:      "kube-controller-manager",
    			},
    			HTTP2MaxStreamsPerConnection: 47,
    		}).WithLoopback(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    	// start the kubelet server
    	if enableServer {
    		go k.ListenAndServe(kubeCfg, kubeDeps.TLSOptions, kubeDeps.Auth, kubeDeps.TracerProvider)
    	}
    	if kubeCfg.ReadOnlyPort > 0 {
    		go k.ListenAndServeReadOnly(netutils.ParseIPSloppy(kubeCfg.Address), uint(kubeCfg.ReadOnlyPort), kubeDeps.TracerProvider)
    	}
    	go k.ListenAndServePodResources()
    }
    
    func createAndInitKubelet(kubeServer *options.KubeletServer,
    	kubeDeps *kubelet.Dependencies,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top