k8s_resource(name='pgadmin', port_forwards='4810') currently maps localhost:4810 to port 80 in your container.
A future version of Tilt will change this default and will map localhost:4810 to port 4810 in your container.
To keep your project working, change your Tiltfile to k8s_resource(name='pgadmin', port_forwards='4810:80')
Don't have time to look into this right now, so making an issue so that this doesn't get lost.
BTW, I would imagine the same warning would apply to other resources in our Tiltfile, like hg which has port_forward(8088, name='hg'), but interestingly Tilt didn't warn about the hg port.
Just saw this in the Tilt logs:
Don't have time to look into this right now, so making an issue so that this doesn't get lost.
BTW, I would imagine the same warning would apply to other resources in our Tiltfile, like
hg
which hasport_forward(8088, name='hg')
, but interestingly Tilt didn't warn about the hg port.