Kong proxy issue affecting others ingresses

Hi,

I got an issue where Kong-Ingress put the proxy-http port 8000 on the host ingress declared.

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  annotations:
    kubernetes.io/ingress.class: kong
  name: jenkins
  namespace: jenkins
spec:
  rules:
  - host: jenkinsk8s.myserver.io
    http:
      paths:
      - backend:
          serviceName: jenkins
          servicePort: 8080
        path: /

This’s the ingress I created for the Jenkins deployment at an EKS. When I access http://jenkinsk8s.myserver.io, kong-ingress puts the proxy-http port 8000 at the host like http://jenkinsk8s.myserver.io:8000

Ps: This Jenkins installation is with the default values using helm 3.0

Any thoughs?

You should consider adding a Load Balancer in front of Kong which listens on port 80 and forwards traffic on port 8000 to Kong.