Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for cbr0 (0.35 sec)

  1. cmd/kube-proxy/app/init_windows.go

    	fs.BoolVar(&o.config.Winkernel.EnableDSR, "enable-dsr", o.config.Winkernel.EnableDSR, "If true make kube-proxy apply DSR policies for service VIP")
    	fs.StringVar(&o.config.Winkernel.RootHnsEndpointName, "root-hnsendpoint-name", "cbr0", "The name of the hns endpoint name for root namespace attached to l2bridge")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:41:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/provider_test.go

    	assert.EqualValues(t, seed+offsetNetTxErrors, *stats.Interfaces[0].TxErrors, label+".Net.TxErrors")
    
    	assert.EqualValues(t, "cbr0", stats.Interfaces[1].Name, "cbr0 interface name is not cbr0")
    	assert.EqualValues(t, 100, *stats.Interfaces[1].RxBytes, label+".Net.TxErrors")
    	assert.EqualValues(t, 100, *stats.Interfaces[1].RxErrors, label+".Net.TxErrors")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. cmd/kube-proxy/app/server_windows.go

    	if config.Mode == "" {
    		config.Mode = proxyconfigapi.ProxyModeKernelspace
    	}
    	if config.Winkernel.RootHnsEndpointName == "" {
    		config.Winkernel.RootHnsEndpointName = "cbr0"
    	}
    }
    
    // platformSetup is called after setting up the ProxyServer, but before creating the
    // Proxier. It should fill in any platform-specific fields and perform other
    // platform-specific setup.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. pkg/util/iptables/save_restore_test.go

    		-A OUTPUT -m addrtype --dst-type LOCAL -m comment --comment "handle service NodePorts; NOTE: this must be the last rule in the chain" -j KUBE-NODEPORT-HOST
    		-A POSTROUTING -s 10.246.1.0/24 ! -o cbr0 -j MASQUERADE
    		-A POSTROUTING -s 10.0.2.15 -d 10.0.2.15 -m comment --comment "handle pod connecting to self" -j MASQUERADE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. cmd/kube-proxy/app/server_test.go

      minSyncPeriod: 10s
      syncPeriod: 60s
    kind: KubeProxyConfiguration
    metricsBindAddress: "%s"
    mode: "%s"
    oomScoreAdj: 17
    portRange: "2-7"
    detectLocalMode: "ClusterCIDR"
    detectLocal:
      bridgeInterface: "cbr0"
      interfaceNamePrefix: "veth"
    nodePortAddresses:
      - "10.20.30.40/16"
      - "fd00:1::0/64"
    `
    
    	testCases := []struct {
    		name               string
    		mode               string
    		bindAddress        string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

    * The deprecated kubelet --configure-cbr0 flag has been removed, and with that the "classic" networking mode as well.  If you depend on this mode, please investigate whether the other network plugins `kubenet` or `cni` meet your needs. ([#34906](https://github.com/kubernetes/kubernetes/pull/34906),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/types.go

    	//   "none":               do nothing.
    	// Generally, one must set --hairpin-mode=hairpin-veth to achieve hairpin NAT,
    	// because promiscuous-bridge assumes the existence of a container bridge named cbr0.
    	HairpinMode string
    	// maxPods is the number of pods that can run on this Kubelet.
    	MaxPods int32
    	// The CIDR to use for pod IP addresses, only used in standalone mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      # The first network ("External") with hardcoded values in the script is just
      # a placeholder to create an external vSwitch. This is purely for convenience
      # to be able to remove/modify the actual HNS network ("cbr0") or rejoin the
      # nodes without a network blip. Creating a vSwitch takes time, causes network
      # blips, and it makes it more likely to hit the issue where flanneld is
      # stuck, so we want to do this as rarely as possible."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. src/math/cbrt.go

    // is preserved.
    // ====================================================
    
    // Cbrt returns the cube root of x.
    //
    // Special cases are:
    //
    //	Cbrt(±0) = ±0
    //	Cbrt(±Inf) = ±Inf
    //	Cbrt(NaN) = NaN
    func Cbrt(x float64) float64 {
    	if haveArchCbrt {
    		return archCbrt(x)
    	}
    	return cbrt(x)
    }
    
    func cbrt(x float64) float64 {
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      if [[ "${NETWORK_PROVIDER:-}" == "kubenet" || "${NETWORK_PROVIDER:-}" == "cni" ]]; then
        # set docker0 cidr to private ip address range to avoid conflict with cbr0 cidr range
        addockeropt "\"bip\": \"169.254.123.1/24\","
      else
        addockeropt "\"bridge\": \"cbr0\","
      fi
    
      echo "setting registry mirror"
      # TODO (vteratipally)  move the registry-mirror completely to /etc/docker/daemon.json
      local docker_opts=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top