Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 202 for l2bridge (0.14 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.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)
  8. cni/test/testdata/expected/minikube_cni.conflist.expected

    {
      "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: Tue May 21 18:32:01 UTC 2024
    - 875 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MethodSet.java

            if (currentAbstract != newAbstract) {
                // Prefer non-abstract over abstract
                return currentAbstract;
            }
            // Prefer non-bridge over bridge
            return current.isBridge() && !method.isBridge();
        }
    
        @Override
        public Iterator<Method> iterator() {
            return getValues().iterator();
        }
    
        public Collection<Method> getValues() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/bridge.h

    Mason Chang <******@****.***> 1698187099 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 24 22:46:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top