Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 367 for Subnets (0.11 sec)

  1. cluster/gce/upgrade-aliases.sh

      if [ "${allow_subnet_cidr_routes_overlap,,}" = "${allow_overlap}" ]; then
        echo "Subnet ${IP_ALIAS_SUBNETWORK}'s allowSubnetCidrRoutesOverlap is already set as $1"
        return
      fi
    
      echo "Setting subnet \"${IP_ALIAS_SUBNETWORK}\" allowSubnetCidrRoutesOverlap to $1"
      local fingerprint
      fingerprint=$(gcloud compute networks subnets describe \
        "${IP_ALIAS_SUBNETWORK}" --project="${PROJECT}" --region="${REGION}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs := field.ErrorList{}
    	// subnets were already validated
    	subnets, _ := netutils.ParseCIDRs(strings.Split(subnetStr, ","))
    	for _, serviceSubnet := range subnets {
    		ones, bits := serviceSubnet.Mask.Size()
    		if bits-ones > constants.MaximumBitsForServiceSubnet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/hns_test.go

    	sp := &hcn.SubnetPolicy{
    		Type: hcn.VSID,
    	}
    	sp.Settings = vsidJson
    
    	spJson, err := json.Marshal(sp)
    	if err != nil {
    		return nil, err
    	}
    
    	network.Ipams[0].Subnets[0].Policies = append(network.Ipams[0].Subnets[0].Policies, spJson)
    
    	return network.Create()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

                                rule to only apply to traffic that originates from (or
                                terminates at) IP addresses in any of the given subnets.
                              items:
                                type: string
                              type: array
                            notNets:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  5. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                rule to only apply to traffic that originates from (or
                                terminates at) IP addresses in any of the given subnets.
                              items:
                                type: string
                              type: array
                            notNets:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

           exit 1;;
      esac
    
      # Look for the alias subnet, it must exist and have a secondary
      # range configured.
      local subnet
      subnet=$(gcloud compute networks subnets describe \
        --project "${NETWORK_PROJECT}" \
        --region "${REGION}" \
        "${IP_ALIAS_SUBNETWORK}" 2>/dev/null || true)
      if [[ -z "${subnet}" ]]; then
        echo "Creating subnet ${NETWORK}:${IP_ALIAS_SUBNETWORK}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/cidrset/cidr_set.go

    	used big.Int
    	// label is used to identify the metrics
    	label string
    }
    
    const (
    	// The subnet mask size cannot be greater than 16 more than the cluster mask size
    	// TODO: https://github.com/kubernetes/kubernetes/issues/44918
    	// clusterSubnetMaxDiff limited to 16 due to the uncompressed bitmap
    	// Due to this limitation the subnet mask for IPv6 cluster cidr needs to be >= 48
    	// as default mask size for IPv6 is 64.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/cidrallocator.go

    	c.muTree.Lock()
    	defer c.muTree.Unlock()
    
    	address := ipToAddr(ip)
    	prefix := netip.PrefixFrom(address, address.BitLen())
    	// Use the largest subnet to allocate addresses because
    	// all the other subnets will be contained.
    	_, allocator, ok := c.tree.ShortestPrefixMatch(prefix)
    	if !ok {
    		klog.V(2).Infof("Could not get allocator for IP %s", ip.String())
    		return nil, ErrMismatchedNetwork
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tls.go

    			// give preference to the user provided one
    			virtualServiceDestinationSubnets := make([]string, 0)
    
    			for _, match := range tcp.Match {
    				if matchTCP(match, node.Labels, gateways, listenPort.Port, node.Metadata.Namespace) {
    					// Scan all the match blocks
    					// if we find any match block without a runtime destination subnet match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. common/scripts/kind_provisioner.sh

      if [ -z "${METALLB_IPS4+x}" ]; then
        # Take IPs from the end of the docker kind network subnet to use for MetalLB IPs
        DOCKER_KIND_SUBNET="$(docker inspect kind | jq '.[0].IPAM.Config[0].Subnet' -r)"
        METALLB_IPS4=()
        while read -r ip; do
          METALLB_IPS4+=("$ip")
        done < <(cidr_to_ips "$DOCKER_KIND_SUBNET" | tail -n 100)
        METALLB_IPS6=()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top