Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for InternalAddressConfig (0.31 sec)

  1. pkg/config/analysis/analyzers/testdata/envoy-filter-remove-operation.yaml

        match:
          context: GATEWAY
          listener:
            filterChain:
              sni: app.example.com
              filter:
                name: "envoy.filters.network.http_connection_manager.InternalAddressConfig"
        patch:
          operation: REMOVE
    
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-remove-2
      namespace: bookinfo
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

          proxy:
            proxyVersion: '^1\.11.*'
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager.InternalAddressConfig"
        patch:
          operation: INSERT_AFTER
          value: # Lua filter specification
           name: envoy.lua1
           typed_config:
              "@type": "type.googleapis.com/envoy.extensions.filters.http.lua.v3.Lua"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_builder_test.go

    			}
    			httpConnManager := lb.buildHTTPConnectionManager(&httpListenerOpts{})
    			if !reflect.DeepEqual(tt.expectedconfig, httpConnManager.InternalAddressConfig) {
    				t.Errorf("unexpected internal address config, expected: %v, got :%v", tt.expectedconfig, httpConnManager.InternalAddressConfig)
    			}
    		})
    	}
    }
    
    func TestAdditionalAddressesForIPv6(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder.go

    			for _, ne := range internalnetwork.Endpoints {
    				if cidr := util.ConvertAddressToCidr(ne.GetFromCidr()); cidr != nil {
    					iac.CidrRanges = append(iac.CidrRanges, cidr)
    				}
    			}
    			connectionManager.InternalAddressConfig = iac
    		}
    	}
    	connectionManager.Proxy_100Continue = features.Enable100ContinueHeaders
    	return connectionManager
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_test.go

    			httpConnManager := buildGatewayConnectionManager(&meshconfig.ProxyConfig{}, proxy, false, push)
    			if !reflect.DeepEqual(tt.expectedconfig, httpConnManager.InternalAddressConfig) {
    				t.Errorf("unexpected internal address config, expected: %v, got :%v", tt.expectedconfig, httpConnManager.InternalAddressConfig)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    			for _, ne := range internalnetwork.Endpoints {
    				if cidr := util.ConvertAddressToCidr(ne.GetFromCidr()); cidr != nil {
    					iac.CidrRanges = append(iac.CidrRanges, cidr)
    				}
    			}
    			httpConnManager.InternalAddressConfig = iac
    		}
    	}
    
    	return httpConnManager
    }
    
    // sdsPath: is the path to the mesh-wide workload sds uds path, and it is assumed that if this path is unset, that sds is
    // disabled mesh-wide
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top