Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for badgateway (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		{"gatewaymiddle", gatewaymiddle, 1, &ipv4Route, ""},
    		{"gatewaylast", gatewaylast, 1, &ipv4Route, ""},
    		{"no routes", nothing, 0, nil, ""},
    		{"badDestination", badDestination, 0, nil, "invalid IPv4"},
    		{"badGateway", badGateway, 0, nil, "invalid IPv4"},
    		{"route_Invalidhex", route_Invalidhex, 0, nil, "odd length hex string"},
    		{"no default routes", noInternetConnection, 0, nil, ""},
    	}
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    		// This is a negative test, ensuring gateways with tags other
    		// than my tags do not get controlled by me.
    		nsConfig, err := namespace.New(t, namespace.Config{
    			Prefix: "badgateway",
    			Inject: false,
    			Labels: map[string]string{
    				constants.DataplaneModeLabel: "ambient",
    			},
    		})
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      $pod_endpoint_gateway = Get_Endpoint_Gateway_From_CIDR(${env:POD_CIDR})
      Log-Output ("Setting up Windows node HNS networking: " +
                  "podCidr = ${env:POD_CIDR}, podGateway = ${pod_gateway}, " +
                  "podEndpointGateway = ${pod_endpoint_gateway}")
    
      $hns_network = Get-HnsNetwork | Where-Object Name -eq ${env:KUBE_NETWORK}
      if ($hns_network) {
        if ($REDO_STEPS) {
    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/config/validation/validation_test.go

    			Hosts: []string{"foo.bar"},
    		}, valid: false},
    		{name: "bad gateway", in: &networking.VirtualService{
    			Hosts:    []string{"foo.bar"},
    			Gateways: []string{"b@dgateway"},
    			Http: []*networking.HTTPRoute{{
    				Route: []*networking.HTTPRouteDestination{{
    					Destination: &networking.Destination{Host: "foo.baz"},
    				}},
    			}},
    		}, valid: false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top