Open
Description
Edit (July 11, 2022): now that we have tproxy, we should default to the targetPort
of the kube service instead of looking at the pod ports array
If a pod doesn't have a port set, e.g.
spec:
containers:
# This name will be the service name in Consul.
- name: static-server
image: hashicorp/http-echo:latest
args:
- -text="hello world"
- -listen=:8080
# ports:
# - containerPort: 8080
# name: http
Then we register it as running on port 0
. This breaks connect because the envoy proxy can't route to port 0 but there are no error logs so it's hard to debug.
Instead we should either return an error during the mutating webhook call for that pod so it doesn't get scheduled and users can use kubectl describe
to see a status event that states the error (pod has no containers with ports set).