Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for DualStack (0.16 sec)

  1. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		return allErrs
    	}
    	switch {
    	// if DualStack only 2 CIDRs allowed
    	case len(subnets) > 2:
    		allErrs = append(allErrs, field.Invalid(fldPath, subnetStr, "expected one (IPv4 or IPv6) CIDR or two CIDRs from each family for dual-stack networking"))
    	// if DualStack and there are 2 CIDRs validate if there is at least one of each IP family
    	case len(subnets) == 2:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    s3.cn-north-1.amazonaws.com.cn
    s3.dualstack.ap-northeast-1.amazonaws.com
    s3.dualstack.ap-northeast-2.amazonaws.com
    s3.ap-northeast-2.amazonaws.com
    s3-website.ap-northeast-2.amazonaws.com
    s3.dualstack.ap-south-1.amazonaws.com
    s3.ap-south-1.amazonaws.com
    s3-website.ap-south-1.amazonaws.com
    s3.dualstack.ap-southeast-1.amazonaws.com
    s3.dualstack.ap-southeast-2.amazonaws.com
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  3. pkg/bootstrap/config.go

    					option.Wildcard(option.WildcardIPv4),
    					option.AdditionalWildCard(option.WildcardIPv6),
    					option.DNSLookupFamily(option.DNSLookupFamilyIPS))
    			}
    			opts = append(opts, option.DualStack(true))
    		} else {
    			// keep the original logic if Dual Stack is disabled
    			opts = append(opts,
    				option.Localhost(option.LocalhostIPv4),
    				option.Wildcard(option.WildcardIPv4),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    }
    
    func isOverlay(hnsNetworkInfo *hnsNetworkInfo) bool {
    	return strings.EqualFold(hnsNetworkInfo.networkType, NETWORK_TYPE_OVERLAY)
    }
    
    // StackCompatTester tests whether the required kernel and network are dualstack capable
    type StackCompatTester interface {
    	DualStackCompatible(networkName string) bool
    }
    
    type DualStackCompatTester struct{}
    
    func (t DualStackCompatTester) DualStackCompatible(networkName string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    				log.Warnf("buildSidecarOutboundListeners: skipping sidecar port %d for node %s as it conflicts with static listener",
    					egressListener.IstioListener.Port.Number, node.ID)
    				continue
    			}
    
    			// TODO: dualstack wildcards
    
    			for _, service := range services {
    				listenerOpts := outboundListenerOpts{
    					push:    push,
    					proxy:   node,
    					bind:    bind,
    					port:    listenPort,
    					service: service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/net/dnsclient_unix.go

    					continue
    				}
    			}
    		}
    		if hitStrictError {
    			// If either family hit an error with StrictErrors enabled,
    			// discard all addresses. This ensures that network flakiness
    			// cannot turn a dualstack hostname IPv4/IPv6-only.
    			addrs = nil
    			break
    		}
    		if len(addrs) > 0 || network == "CNAME" && cname.Length > 0 {
    			break
    		}
    	}
    	if lastErr, ok := lastErr.(*DNSError); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  7. pkg/proxy/apis/config/validation/validation_test.go

    			},
    			expectedErrs: field.ErrorList{field.Invalid(newPath.Child("ClusterCIDR"), "192.168.59.0/24,fd00:192:168::/64,10.0.0.0/16", "only one CIDR allowed or a valid DualStack CIDR (e.g. 10.100.0.0/16,fde4:8dba:82e1::/48)")},
    		},
    		"ConfigSyncPeriod must be > 0": {
    			mutateConfigFunc: func(config *kubeproxyconfig.KubeProxyConfiguration) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    			podIPs = append(podIPs, podIP.IP)
    		}
    
    		dualStack, err := netutils.IsDualStackIPStrings(podIPs)
    		if err != nil {
    			allErrs = append(allErrs, field.InternalError(podIPsField, fmt.Errorf("failed to check for dual stack with error:%v", err)))
    		}
    
    		// We only support one from each IP family (i.e. max two IPs in this list).
    		if !dualStack || len(podIPs) > 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    		}, {
    			expectError: true,
    			pod:         makePod("dualstack-same-ip-family-6", "ns", []core.PodIP{{IP: "::1"}, {IP: "::2"}}),
    		}, {
    			expectError: true,
    			pod:         makePod("dualstack-same-ip-family-4", "ns", []core.PodIP{{IP: "1.1.1.1"}, {IP: "2.2.2.2"}}),
    		}, {
    			expectError: true,
    			pod:         makePod("dualstack-repeated-ip-family-6", "ns", []core.PodIP{{IP: "1.1.1.1"}, {IP: "::1"}, {IP: "::2"}}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    			options: printers.GenerateOptions{},
    			// Columns: Name, PerNodeHostBits, IPv4, IPv6, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"test5", ipv6CIDR, "<unknown>"}}},
    		},
    		{
    			// Test name, DualStack.
    			ccc: networking.ServiceCIDR{
    				ObjectMeta: metav1.ObjectMeta{Name: "test9"},
    				Spec: networking.ServiceCIDRSpec{
    					CIDRs: []string{ipv4CIDR, ipv6CIDR},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top