Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for InternalAddressConfig (2.01 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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