Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for netutils (0.2 sec)

  1. cmd/kube-controller-manager/app/core.go

    	cidrsSplit := strings.Split(strings.TrimSpace(cidrsList), ",")
    
    	cidrs, err := netutils.ParseCIDRs(cidrsSplit)
    	if err != nil {
    		return nil, false, err
    	}
    
    	// if cidrs has an error then the previous call will fail
    	// safe to ignore error checking on next call
    	dualstack, _ := netutils.IsDualStackCIDRs(cidrs)
    
    	return cidrs, dualstack, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/common.go

    	}
    	return nil
    }
    
    // ChooseAPIServerBindAddress is a wrapper for netutil.ResolveBindAddress that also handles
    // the case where no default routes were found and an IP for the API server could not be obtained.
    func ChooseAPIServerBindAddress(bindAddress net.IP) (net.IP, error) {
    	ip, err := netutil.ResolveBindAddress(bindAddress)
    	if err != nil {
    		if netutil.IsNoRoutesError(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. pkg/proxy/util/utils_test.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"net"
    	"reflect"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	netutils "k8s.io/utils/net"
    )
    
    func TestValidateWorks(t *testing.T) {
    	if isValidEndpoint("", 0) {
    		t.Errorf("Didn't fail for empty set")
    	}
    	if isValidEndpoint("foobar", 0) {
    		t.Errorf("Didn't fail with invalid port")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/controller/repairip.go

    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/registry/core/service/ipallocator"
    	"k8s.io/kubernetes/pkg/util/iptree"
    	"k8s.io/utils/clock"
    	netutils "k8s.io/utils/net"
    )
    
    const (
    	// maxRetries is the number of times a service will be retried before it is dropped out of the queue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. pkg/apis/networking/validation/validation.go

    	"k8s.io/apimachinery/pkg/util/validation/field"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	apivalidation "k8s.io/kubernetes/pkg/apis/core/validation"
    	"k8s.io/kubernetes/pkg/apis/networking"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    )
    
    const (
    	annotationIngressClass       = "kubernetes.io/ingress.class"
    	maxLenIngressClassController = 250
    )
    
    var (
    	supportedPathTypes = sets.NewString(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	runtimeutil "k8s.io/kubernetes/pkg/kubelet/kuberuntime/util"
    	"k8s.io/kubernetes/pkg/kubelet/util"
    	"k8s.io/kubernetes/pkg/kubelet/util/format"
    	netutils "k8s.io/utils/net"
    )
    
    // createPodSandbox creates a pod sandbox and returns (podSandBoxID, message, error).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. pkg/kubelet/network/dns/dns_test.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/client-go/tools/record"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/kubernetes/pkg/apis/core/validation"
    	netutils "k8s.io/utils/net"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    )
    
    var (
    	// testHostNameserver and testHostDomain are also being used in dns_windows_test.go.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    import (
    	"crypto"
    	"crypto/x509"
    	"fmt"
    	"net"
    	"os"
    	"path/filepath"
    	"testing"
    	"time"
    
    	"k8s.io/client-go/tools/clientcmd"
    	certutil "k8s.io/client-go/util/cert"
    	"k8s.io/client-go/util/keyutil"
    	netutils "k8s.io/utils/net"
    
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeconfigutil "k8s.io/kubernetes/cmd/kubeadm/app/util/kubeconfig"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier.go

    	var providerAddress string
    	for _, rs := range network.remoteSubnets {
    		_, ipNet, err := netutils.ParseCIDRSloppy(rs.destinationPrefix)
    		if err != nil {
    			klog.ErrorS(err, "Failed to parse CIDR")
    		}
    		if ipNet.Contains(netutils.ParseIPSloppy(ip)) {
    			providerAddress = rs.providerAddress
    		}
    		if ip == rs.providerAddress {
    			providerAddress = rs.providerAddress
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    import (
    	"crypto"
    	"crypto/ecdsa"
    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/x509"
    	"fmt"
    	"net"
    	"os"
    	"path/filepath"
    	"reflect"
    	"testing"
    
    	certutil "k8s.io/client-go/util/cert"
    	netutils "k8s.io/utils/net"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    )
    
    var (
    	// TestMain generates the bellow certs and keys so that
    	// they are reused in tests whenever possible
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top