Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for ip_family (0.21 sec)

  1. common/scripts/kind_provisioner.sh

        # Kubernetes 1.15+
        CONFIG=${DEFAULT_CLUSTER_YAML}
      fi
    
      # Configure the cluster IP Family if explicitly set
      if [ "${IP_FAMILY}" != "ipv4" ]; then
        grep "ipFamily: ${IP_FAMILY}" "${CONFIG}" || \
        cat <<EOF >> "${CONFIG}"
    networking:
      ipFamily: ${IP_FAMILY}
    EOF
      fi
    
      KIND_WAIT_FLAG="--wait=180s"
      KIND_DISABLE_CNI="false"
      if [[ -n "${KUBERNETES_CNI:-}" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. prow/integ-suite-kind.sh

          shift
          ;;
      esac
    done
    
    if [ -f /proc/cpuinfo ]; then
      echo "Checking CPU..."
      grep 'model' /proc/cpuinfo || true
    fi
    
    # Default IP family of the cluster is IPv4
    export IP_FAMILY="${IP_FAMILY:-ipv4}"
    
    # LoadBalancer in Kind is supported using metallb
    export TEST_ENV=kind-metallb
    
    # See https://kind.sigs.k8s.io/docs/user/quick-start/#loading-an-image-into-your-cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. tests/integration/tests.mk

    ifneq ($(JOB_TYPE),postsubmit)
    	_INTEGRATION_TEST_SELECT_FLAGS:="$(_INTEGRATION_TEST_SELECT_FLAGS),-postsubmit"
    endif
    
    # both ipv6 only and dual stack support ipv6
    support_ipv6 =
    ifeq ($(IP_FAMILY),ipv6)
    	support_ipv6 = yes
    else ifeq ($(IP_FAMILY),dual)
    	support_ipv6 = yes
    	_INTEGRATION_TEST_FLAGS += --istio.test.enableDualStack
    endif
    ifdef support_ipv6
    	_INTEGRATION_TEST_SELECT_FLAGS:="$(_INTEGRATION_TEST_SELECT_FLAGS),-ipv4"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    var ipLibraryDecls = map[string][]cel.FunctionOpt{
    	"ip": {
    		cel.Overload("string_to_ip", []*cel.Type{cel.StringType}, apiservercel.IPType,
    			cel.UnaryBinding(stringToIP)),
    	},
    	"family": {
    		cel.MemberOverload("ip_family", []*cel.Type{apiservercel.IPType}, cel.IntType,
    			cel.UnaryBinding(family)),
    	},
    	"ip.isCanonical": {
    		cel.Overload("ip_is_canonical", []*cel.Type{cel.StringType}, cel.BoolType,
    			cel.UnaryBinding(ipIsCanonical)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. pkg/proxy/serviceport.go

    	info.externalIPs = ipFamilyMap[ipFamily]
    
    	// Log the IPs not matching the ipFamily
    	if ips, ok := ipFamilyMap[proxyutil.OtherIPFamily(ipFamily)]; ok && len(ips) > 0 {
    		klog.V(4).InfoS("Service change tracker ignored the following external IPs for given service as they don't match IP Family",
    			"ipFamily", ipFamily, "externalIPs", ips, "service", klog.KObj(service))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

            // above to be initialized first, but the code style imposes the public constants to be
            // defined above the private ones...
            OS_FAMILY = getOsFamily();
            IS_WINDOWS = isFamily(FAMILY_WINDOWS);
        }
    
        private Os() {}
    
        /**
         * Determines if the OS on which Maven is executing matches the
         * given OS family.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

            // above to be initialized first, but the code style imposes the public constants to be
            // defined above the private ones...
            OS_FAMILY = getOsFamily();
            IS_WINDOWS = isFamily(FAMILY_WINDOWS);
        }
    
        private Os() {}
    
        /**
         * Determines if the OS on which Maven is executing matches the
         * given OS family.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    		return nil, err
    	}
    
    	proxier := &Proxier{
    		ipFamily:            ipFamily,
    		svcPortMap:          make(proxy.ServicePortMap),
    		serviceChanges:      proxy.NewServiceChangeTracker(newServiceInfo, ipFamily, recorder, nil),
    		endpointsMap:        make(proxy.EndpointsMap),
    		endpointsChanges:    proxy.NewEndpointsChangeTracker(hostname, newEndpointInfo, ipFamily, recorder, nil),
    		syncPeriod:          syncPeriod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. pkg/proxy/util/utils.go

    func convertToV1IPFamily(ipFamily netutils.IPFamily) v1.IPFamily {
    	switch ipFamily {
    	case netutils.IPv4:
    		return v1.IPv4Protocol
    	case netutils.IPv6:
    		return v1.IPv6Protocol
    	}
    
    	return v1.IPFamilyUnknown
    }
    
    // OtherIPFamily returns the other ip family
    func OtherIPFamily(ipFamily v1.IPFamily) v1.IPFamily {
    	if ipFamily == v1.IPv6Protocol {
    		return v1.IPv4Protocol
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage_test.go

    		name            string
    		clusterFamilies []api.IPFamily
    		svc             *api.Service
    	}{{
    		name:            "singlestack:v4_clusterip:unset",
    		clusterFamilies: []api.IPFamily{api.IPv4Protocol},
    		svc:             svctest.MakeService("foo"),
    	}, {
    		name:            "singlestack:v4_clusterip:set",
    		clusterFamilies: []api.IPFamily{api.IPv4Protocol},
    		svc: svctest.MakeService("foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top