Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 228 for l2bridge (0.37 sec)

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

    	fs.StringVar(&o.config.Winkernel.RootHnsEndpointName, "root-hnsendpoint-name", "cbr0", "The name of the hns endpoint name for root namespace attached to l2bridge")
    	fs.BoolVar(&o.config.Winkernel.ForwardHealthCheckVip, "forward-healthcheck-vip", o.config.Winkernel.ForwardHealthCheckVip, "If true forward service VIP for health check port")
    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/proxy/winkernel/proxier_test.go

    	}
    }
    
    func TestCreateRemoteEndpointL2Bridge(t *testing.T) {
    	syncPeriod := 30 * time.Second
    	proxier := NewFakeProxier(syncPeriod, syncPeriod, "testhost", netutils.ParseIPSloppy("10.0.0.1"), "L2Bridge")
    	if proxier == nil {
    		t.Error()
    	}
    
    	svcIP := "10.20.30.41"
    	svcPort := 80
    	svcNodePort := 3001
    	svcPortName := proxy.ServicePortName{
    		NamespacedName: makeNSN("ns1", "svc1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      $INITIAL_HNS_NETWORK = 'External'
    
      # This comes from
      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/flannel/l2bridge/start.ps1#L74
      # (or
      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1#L206).
      #
      # daschott noted on Slack: "L2bridge networks require an external vSwitch.
      # The first network ("External") with hardcoded values in the script is just
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/types.go

    	// l2bridge for root network namespace
    	RootHnsEndpointName string
    	// forwardHealthCheckVip forwards service VIP for health check port on
    	// Windows
    	ForwardHealthCheckVip bool
    }
    
    // DetectLocalConfiguration contains optional settings related to DetectLocalMode option
    type DetectLocalConfiguration struct {
    	// bridgeInterface is a bridge interface name. When DetectLocalMode is set to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. pkg/proxy/winkernel/proxier.go

    				}
    			}
    			// For Overlay networks 'SourceVIP' on an Load balancer Policy can either be chosen as
    			// a) Source VIP configured on kube-proxy (or)
    			// b) Node IP of the current node
    			//
    			// For L2Bridge network the Source VIP is always the NodeIP of the current node and the same
    			// would be configured on kube-proxy as SourceVIP
    			//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/bridge.cc

        if (VLOG_IS_ON(2)) {
          tensorflow::tf2xla::internal::EnablePassIRPrinting(bridge,
                                                             kBridgeComponent);
        }
      }
      LogicalResult result = bridge.run(module);
      (void)result;
      if (enable_logging || VLOG_IS_ON(1))
        tensorflow::DumpMlirOpToFile(kStandardPipelineAfter, module, "", &bridge);
      return diag_handler.ConsumeStatus();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 17:16:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. cni/pkg/install/testdata/bridge.conf

    {
      "cniVersion": "0.4.0",
      "name": "dbnet",
      "type": "bridge",
      "bridge": "cni0",
      "ipam": {
        "type": "host-local",
        "subnet": "10.1.0.0/16",
        "gateway": "10.1.0.1"
      },
      "dns": {
        "nameservers": [ "10.1.0.1" ]
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 235 bytes
    - Viewed (0)
  8. cni/pkg/install/testdata/bridge.conf.golden

    {
      "cniVersion": "0.3.1",
      "name": "k8s-pod-network",
      "plugins": [
        {
          "bridge": "cni0",
          "dns": {
            "nameservers": [
              "10.1.0.1"
            ]
          },
          "ipam": {
            "gateway": "10.1.0.1",
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "name": "dbnet",
          "type": "bridge"
        },
        {
          "ambient_enabled": false,
          "cni_event_address": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 716 bytes
    - Viewed (0)
  9. cni/test/testdata/expected/minikube_cni.conflist.clean

    {
      "cniVersion": "0.3.1",
      "name": "k8s-pod-network",
      "plugins": [
        {
          "addIf": "true",
          "bridge": "mybridge",
          "ipMasq": true,
          "ipam": {
            "gateway": "10.1.0.1",
            "routes": [
              {
                "dst": "0.0.0.0/0"
              }
            ],
            "subnet": "10.1.0.0/16",
            "type": "host-local"
          },
          "isGateway": true,
          "mtu": 1460,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 468 bytes
    - Viewed (0)
  10. cni/test/testdata/pre/minikube_cni.conf

    {
      "addIf": "true",
      "bridge": "mybridge",
      "ipMasq": true,
      "ipam": {
        "type": "host-local",
        "subnet": "10.1.0.0/16",
        "gateway": "10.1.0.1",
        "routes": [
          {
            "dst": "0.0.0.0/0"
          }
        ]
      },
      "isGateway": true,
      "mtu": 1460,
      "name": "rkt.kubernetes.io",
      "type": "bridge"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 315 bytes
    - Viewed (0)
Back to top