Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for cbr0 (0.34 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. 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)
  7. 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)
  8. 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)
  9. src/cmd/asm/internal/asm/testdata/386enc.s

    	ADDL 2147483648(AX), AX  // 038000000080
    	ADDL -2147483648(AX), AX // 038000000080
    	// Make sure MOV CR/DR continues to work after changing its movtabs.
    	MOVL CR0, AX // 0f20c0
    	MOVL CR0, DX // 0f20c2
    	MOVL CR4, DI // 0f20e7
    	MOVL AX, CR0 // 0f22c0
    	MOVL DX, CR0 // 0f22c2
    	MOVL DI, CR4 // 0f22e7
    	MOVL DR0, AX // 0f21c0
    	MOVL DR6, DX // 0f21f2
    	MOVL DR7, SI // 0f21fe
    	// Test other movtab entries.
    	PUSHL SS // 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/internal/bytealg/compare_ppc64x.s

    	LXVLL	R6,R9,V4
    	VCMPUQ	V3,V4,CR0	// Compare as a 128b integer.
    	SETB_CR0(R6)
    	ISEL	CR0EQ,R3,R6,R3	// If equal, length determines the return value.
    	RET
    #else
    	CMP	R9,$8
    	BLT	cmp4
    	ANDCC	$7,R9,R9
    	_LDBEX	(R0)(R5),R10
    	_LDBEX	(R0)(R6),R11
    	_LDBEX	(R9)(R5),R12
    	_LDBEX	(R9)(R6),R14
    	CMPU	R10,R11,CR0
    	SETB_CR0(R5)
    	CMPU	R12,R14,CR1
    	SETB_CR1(R6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top