Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for PortNumber (0.23 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    				Context: networking.EnvoyFilter_GATEWAY,
    				ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Listener{
    					Listener: &networking.EnvoyFilter_ListenerMatch{
    						PortNumber: 80,
    						FilterChain: &networking.EnvoyFilter_ListenerMatch_FilterChainMatch{
    							Filter: &networking.EnvoyFilter_ListenerMatch_FilterMatch{
    								Name:      wellknown.HTTPConnectionManager,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    				matchCondition: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    					ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_Cluster{
    						Cluster: &networking.EnvoyFilter_ClusterMatch{
    							PortNumber: 80,
    							Service:    "foo.bar",
    							Subset:     "v1",
    						},
    					},
    				},
    				cluster: &cluster.Cluster{Name: "outbound|80|v2|foo.bar"},
    			},
    			want: false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

          app: reviews1
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						ObjectTypes: &networking.EnvoyFilter_EnvoyConfigObjectMatch_RouteConfiguration{
    							RouteConfiguration: &networking.EnvoyFilter_RouteConfigurationMatch{PortNumber: 80},
    						},
    					},
    				},
    				rc: &route.RouteConfiguration{Name: "80"},
    			},
    			want: true,
    		},
    		{
    			name: "sidecar port mismatch",
    			args: args{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    	pm := GatewayPortMap{}
    	for r, s := range serversByRouteName {
    		portNumber, _, _ := ParseGatewayRDSRouteName(r)
    		if _, f := pm[portNumber]; !f {
    			pm[portNumber] = sets.New[int]()
    		}
    		for _, se := range s {
    			if se.Port == nil {
    				continue
    			}
    			pm[portNumber].Insert(int(se.Port.Number))
    		}
    	}
    	return pm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    			} else {
    				gwConflictingMap[mapKey][gwName] = server.GetHosts()
    			}
    		}
    		return true
    	})
    	return gwConflictingMap
    }
    
    func genGatewayMapKey(selector, portNumber string) string {
    	key := selector + "~" + portNumber
    	return key
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-operation.yaml

      priority: 10
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/absolute-envoy-filter-operation.yaml

          app: reviews
      configPatches:
        # The first patch adds the lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 12:58:54 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pkg/test/echo/server/endpoint/grpc.go

    			}
    		}
    	}
    
    	id := uuid.New()
    	epLog.WithLabels("message", req.GetMessage(), "headers", md, "id", id).Infof("GRPC Request")
    
    	portNumber := 0
    	if h.Port != nil {
    		portNumber = h.Port.Port
    	}
    
    	ip := "0.0.0.0"
    	if peerInfo, ok := peer.FromContext(ctx); ok {
    		ip, _, _ = net.SplitHostPort(peerInfo.Addr.String())
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 17:30:37 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

          app: reviews
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
        patch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top