Actuator Endpoints should listen on a different port than application port
Support listening to actuators on a separate port than Application port.
This is already possible through the Action<IEndpointConventionBuilder> arg that is available on several extensions or by adding the startup filter more directly:
services.AddSingleton<IStartupFilter>(new AllActuatorsStartupFilter(c => c.RequireHost("*:5010")));
When we address this item, see about making it a config entry and update the documentation to include this approach regardless of the "best" option in 4.0 so it's clear how to do it in 3.x
We need to have the webserver also configured to listen on the port and then we can add a restriction on the particular endpoints as this convention is doing. And we also have to add a convention to all others to not listen on the "management host/port"
Can AddAllActuators should detect kubernetes and expose actuators on additional port?