Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for filter_chain_match (0.3 sec)

  1. istioctl/pkg/authz/testdata/configdump.yaml

           "address": {
            "socket_address": {
             "address": "0.0.0.0",
             "port_value": 9080
            }
           },
           "filter_chains": [
            {
             "filter_chain_match": {
              "transport_protocol": "raw_buffer",
              "application_protocols": [
               "http/1.1",
               "h2c"
              ]
             },
             "filters": [
              {
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jun 21 14:20:23 GMT 2023
    - 206.7K bytes
    - Viewed (2)
  2. istioctl/pkg/writer/envoy/configdump/listener.go

    		fc := filterchain{
    			destination: getFilterType(filterChain.GetFilters()),
    			match:       getMatches(filterChain.FilterChainMatch),
    		}
    		resp = append(resp, fc)
    	}
    	return resp
    }
    
    func getMatches(f *listener.FilterChainMatch) string {
    	match := f
    	if match == nil {
    		match = &listener.FilterChainMatch{}
    	}
    	// filterChaince also has SuffixLen, SourceType, SourcePrefixRanges which are not rendered.
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
Back to top