Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for DualStack (0.16 sec)

  1. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

    Peter Jausovec <******@****.***> 1717444445 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-details-dualstack.yaml

    Peter Jausovec <******@****.***> 1717444445 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/bookinfo-ratings-dualstack.yaml

    Peter Jausovec <******@****.***> 1717444445 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. cmd/cloud-controller-manager/nodeipamcontroller.go

    	}
    
    	// failure: bad cidrs in config
    	clusterCIDRs, dualStack, err := processCIDRs(ccmConfig.ComponentConfig.KubeCloudShared.ClusterCIDR)
    	if err != nil {
    		return nil, false, err
    	}
    
    	// failure: more than one cidr but they are not configured as dual stack
    	if len(clusterCIDRs) > 1 && !dualStack {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 14 19:06:22 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/config/config.go

    	NetworkNamespace        string        `json:"NETWORK_NAMESPACE"`
    	CNIMode                 bool          `json:"CNI_MODE"`
    	TraceLogging            bool          `json:"IPTABLES_TRACE_LOGGING"`
    	DualStack               bool          `json:"DUAL_STACK"`
    	HostIP                  netip.Addr    `json:"HOST_IP"`
    	HostIPv4LoopbackCidr    string        `json:"HOST_IPV4_LOOPBACK_CIDR"`
    }
    
    func (c *Config) String() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/options/validation.go

    	if secondaryServiceClusterIPRangeUsed {
    		// Should be dualstack IPFamily(PrimaryServiceClusterIPRange) != IPFamily(SecondaryServiceClusterIPRange)
    		dualstack, err := netutils.IsDualStackCIDRs([]*net.IPNet{&options.PrimaryServiceClusterIPRange, &options.SecondaryServiceClusterIPRange})
    		if err != nil {
    			errs = append(errs, fmt.Errorf("error attempting to validate dualstack for --service-cluster-ip-range value error:%v", err))
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. cni/pkg/plugin/sidecar_iptables_linux.go

    	cfg.DryRun = dependencies.DryRunFilePath.Get() != ""
    	cfg.RedirectDNS = rdrct.dnsRedirect
    	cfg.CaptureAllDNS = rdrct.dnsRedirect
    	cfg.DropInvalid = rdrct.invalidDrop
    	cfg.DualStack = rdrct.dualStack
    	if err := cfg.FillConfigFromEnvironment(); err != nil {
    		return err
    	}
    
    	netNs, err := getNs(netns)
    	if err != nil {
    		err = fmt.Errorf("failed to open netns %q: %s", netns, err)
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/cmd/root.go

    	flag.AdditionalEnv(fs, constants.DropInvalid, InvalidDropByIptables)
    
    	flag.BindEnv(fs, constants.DualStack, "", "Enable ipv4/ipv6 redirects for dual-stack.", &cfg.DualStack)
    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.DualStack, "ISTIO_DUAL_STACK")
    
    	flag.BindEnv(fs, constants.CaptureAllDNS, "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/internal/nettrace/nettrace.go

    	// actually be for circular dependency reasons.
    	DNSDone func(netIPs []any, coalesced bool, err error)
    
    	// ConnectStart is called before a Dial, excluding Dials made
    	// during DNS lookups. In the case of DualStack (Happy Eyeballs)
    	// dialing, this may be called multiple times, from multiple
    	// goroutines.
    	ConnectStart func(network, addr string)
    
    	// ConnectDone is called after a Dial with the results, excluding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/net/http/httptrace/trace.go

    	// If net.Dialer.DualStack (IPv6 "Happy Eyeballs") support is
    	// enabled, this may be called multiple times.
    	ConnectStart func(network, addr string)
    
    	// ConnectDone is called when a new connection's Dial
    	// completes. The provided err indicates whether the
    	// connection completed successfully.
    	// If net.Dialer.DualStack ("Happy Eyeballs") support is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top