Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for listenerFilters (0.27 sec)

  1. pilot/pkg/networking/grpcgen/lds.go

    						PortValue: uint32(listenPort),
    					},
    				},
    			}},
    			FilterChains: buildInboundFilterChains(node, push, si, mtlsPolicy),
    			// the following must not be set or the client will NACK
    			ListenerFilters: nil,
    			UseOriginalDst:  nil,
    		}
    		// add extra addresses for the listener
    		extrAddresses := si.Service.GetExtraAddressesForProxy(node)
    		if len(extrAddresses) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/listener_test.go

    		desc       string
    		inFilter   *ListenerFilter
    		inListener *listener.Listener
    		expect     bool
    	}{
    		{
    			desc: "filter-fields-empty",
    			inFilter: &ListenerFilter{
    				Address: "",
    				Port:    0,
    				Type:    "",
    			},
    			inListener: &listener.Listener{},
    			expect:     true,
    		},
    		{
    			desc: "addrs-dont-match",
    			inFilter: &ListenerFilter{
    				Address: "0.0.0.0",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/monitoring.go

    const (
    	Error   Result = "error"
    	Applied Result = "applied"
    )
    
    type PatchType string
    
    const (
    	Cluster        PatchType = "cluster"
    	Listener       PatchType = "listener"
    	ListenerFilter PatchType = "listenerfilter"
    	FilterChain    PatchType = "filterchain"
    	NetworkFilter  PatchType = "networkfilter"
    	// nolint
    	HttpFilter  PatchType = "httpfilter"
    	Route       PatchType = "route"
    	VirtualHost PatchType = "vhost"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/filters/filters.go

    				},
    			}),
    		},
    	}
    	TLSInspector = &listener.ListenerFilter{
    		Name: wellknown.TLSInspector,
    		ConfigType: &listener.ListenerFilter_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&tlsinspector.TlsInspector{}),
    		},
    	}
    	HTTPInspector = &listener.ListenerFilter{
    		Name: wellknown.HTTPInspector,
    		ConfigType: &listener.ListenerFilter_TypedConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/listener.go

    	IPMatcher = "type.googleapis.com/xds.type.matcher.v3.IPMatcher"
    )
    
    // ListenerFilter is used to pass filter information into listener based config writer print functions
    type ListenerFilter struct {
    	Address string
    	Port    uint32
    	Type    string
    	Verbose bool
    }
    
    // Verify returns true if the passed listener matches the filter fields
    func (l *ListenerFilter) Verify(listener *listener.Listener) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  6. pkg/config/xds/xds.go

    	case networking.EnvoyFilter_EXTENSION_CONFIG:
    		obj = &core.TypedExtensionConfig{}
    	case networking.EnvoyFilter_BOOTSTRAP:
    		obj = &bootstrap.Bootstrap{}
    	case networking.EnvoyFilter_LISTENER_FILTER:
    		obj = &listener.ListenerFilter{}
    	default:
    		return nil, fmt.Errorf("Envoy filter: unknown object type for applyTo %s", applyTo.String()) // nolint: stylecheck
    	}
    
    	if err := StructToMessage(value, obj, strict); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. istioctl/pkg/authz/testdata/configdump.yaml

                 }
                },
                "path_with_escaped_slashes_action": "KEEP_UNCHANGED"
               }
              }
             ]
            }
           ],
           "listener_filters": [
            {
             "name": "envoy.filters.listener.tls_inspector",
             "typed_config": {
              "@type": "type.googleapis.com/envoy.extensions.filters.listener.tls_inspector.v3.TlsInspector"
             }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  8. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                          }
                        }
                      ],
                      "name": "inbound-vip|9080||details.default.svc.cluster.local-http"
                    }
                  ],
                  "listener_filters": [
                    {
                      "name": "envoy.filters.listener.original_dst",
                      "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/compare/testdata/configdump.json

                          }
                        }
                      ],
                      "name": "inbound-vip|9080||details.default.svc.cluster.local-http"
                    }
                  ],
                  "listener_filters": [
                    {
                      "name": "envoy.filters.listener.original_dst",
                      "typed_config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/envoy/configdump/configdump.go

    		return err
    	}
    
    	secretWriter := sdscompare.NewSDSWriter(c.Stdout, sdscompare.TABULAR)
    	return secretWriter.PrintSecretItems(secretItems)
    }
    
    func (c *ConfigWriter) PrintFullSummary(cf ClusterFilter, lf ListenerFilter, rf RouteFilter, epf EndpointFilter) error {
    	if err := c.PrintBootstrapSummary(); err != nil {
    		return err
    	}
    	_, _ = c.Stdout.Write([]byte("\n"))
    	if err := c.PrintClusterSummary(cf); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 20:46:41 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top