Skip to content

If container does not specify port, port 0 is registered #195

Open
@lkysow

Description

@lkysow

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).

Metadata

Metadata

Assignees

No one assigned

    Labels

    area/connectRelated to Connect service mesh, e.g. injectionhacktoberfesttype/bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions