You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Determines whether a resource supports proxied endpoints/services. Returns true for non-container resources container resources with a lifetime other than <see cref="ContainerLifetime.Persistent"/>.
340
+
/// </summary>
341
+
/// <param name="resource">The resource to get proxy support for.</param>
342
+
/// <returns>True if the resource supports proxied endpoints/services, false otherwise.</returns>
thrownewInvalidOperationException($"Service '{svc.Metadata.Name}' needs to specify a port for endpoint '{sp.EndpointAnnotation.Name}' since it isn't using a proxy.");
_logger.LogWarning("You have unproxied container endpoints without an explicit host port set. By default these endpoints will attempt to bind a host port that matches the container target port. This can lead to port conflicts if multiple containers are using the same target port(s). For containers running with a persistent lifetime or container endpoints with IsProxied disabled, we recommend specifying explicit host ports. For more information on container networking in .NET Aspire see: https://aka.ms/dotnet/aspire/container-networking");
_logger.LogInformation("'{EndpointName}' endpoint for '{ResourceName}' doesn't have a host port set. Attempting to bind host port '{TargetPort}'.",endpoint.Name,resource.Name,endpoint.TargetPort);
"'{ResourceName}' is configured with a persistent lifetime, but has proxied endpoints. The target port(s) ({TargetPorts}) will be exposed via a proxy while your App Host project is running, but may not otherwise be accessible between App Host runs. It is recommended to configure fixed unproxied endpoint ports for persistent containers. For more information on networking in .NET Aspire see: https://aka.ms/dotnet/aspire/networking",
0 commit comments