Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 148 for PORT (0.07 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.ReplicaSet.json

                    "port": "portValue",
                    "host": "hostValue",
                    "scheme": "schemeValue",
                    "httpHeaders": [
                      {
                        "name": "nameValue",
                        "value": "valueValue"
                      }
                    ]
                  },
                  "tcpSocket": {
                    "port": "portValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. tests/integration/security/authz_test.go

    					cases := []struct {
    						ports []echo.Port
    						path  string
    						allow allowValue
    					}{
    						{
    							ports: []echo.Port{ports.GRPC, ports.TCP},
    							allow: allow,
    						},
    						{
    							ports: []echo.Port{ports.HTTP, ports.HTTP2},
    							path:  "/allow",
    							allow: allow,
    						},
    						{
    							ports: []echo.Port{ports.HTTP, ports.HTTP2},
    							path:  "/allow?param=value",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    		"http": 80,
    	}
    
    	for _, port := range ingress.service.Spec.Ports {
    		if port.Protocol != "TCP" || !portsToShow[port.Name] {
    			continue
    		}
    
    		// Get port number
    		_, err := pilotcontroller.FindPort(ingress.pods[0], &port)
    		if err == nil {
    			nport := int(port.Port)
    			protocol := string(configKube.ConvertProtocol(port.Port, port.Name, port.Protocol, port.AppProtocol))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

                "path": "pathValue",
                "port": "portValue",
                "host": "hostValue",
                "scheme": "schemeValue",
                "httpHeaders": [
                  {
                    "name": "nameValue",
                    "value": "valueValue"
                  }
                ]
              },
              "tcpSocket": {
                "port": "portValue",
                "host": "hostValue"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.json

                          }
                        ]
                      },
                      "tcpSocket": {
                        "port": "portValue",
                        "host": "hostValue"
                      },
                      "grpc": {
                        "port": 1,
                        "service": "serviceValue"
                      },
                      "initialDelaySeconds": 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.json

                    "port": "portValue",
                    "host": "hostValue",
                    "scheme": "schemeValue",
                    "httpHeaders": [
                      {
                        "name": "nameValue",
                        "value": "valueValue"
                      }
                    ]
                  },
                  "tcpSocket": {
                    "port": "portValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute_test.go

    		assert.Equal(t, out, want)
    	}
    
    	for _, c := range cases {
    		c := c
    		t.Run(c.name, func(t *testing.T) {
    			test.SetForTest[bool](t, &features.EnableDualStack, c.enableDualStack)
    			testFn(t, c.service, c.port, c.node, c.want)
    		})
    	}
    }
    
    func TestSidecarOutboundHTTPRouteConfigWithDuplicateHosts(t *testing.T) {
    	virtualServiceSpec := &networking.VirtualService{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    				t.Fatalf("expected %d listeners, found %d", len(tc.expectedListener), len(listeners))
    			}
    			for _, port := range tc.expectedListener {
    				l := findListenerByPort(listeners, uint32(port))
    				if l == nil {
    					t.Fatalf("found no listener with port %d", port)
    				}
    			}
    		})
    	}
    }
    
    func TestOutboundListenerDualStackWildcard(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    		}
    	}
    
    	// Now group these Services by port so that we can infer the destination.port if the user
    	// doesn't specify any port for a multiport service. We need to know the destination port in
    	// order to build the cluster name (outbound|<port>|<subset>|<serviceFQDN>)
    	// If the destination service is being accessed on port X, we set that as the default
    	// destination port
    	serviceByPort := make(map[int][]*model.Service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice_test.go

    			expected: true,
    		},
    		{
    			name: "port",
    			root: &networking.HTTPMatchRequest{
    				Port: 0,
    			},
    			leaf: &networking.HTTPMatchRequest{
    				Port: 8080,
    			},
    			expected: false,
    		},
    		{
    			name: "port",
    			root: &networking.HTTPMatchRequest{
    				Port: 8080,
    			},
    			leaf: &networking.HTTPMatchRequest{
    				Port: 0,
    			},
    			expected: false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top