Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

After upgrading to Kubernetes 1.11 external #2740

Closed
vetm73 opened this issue Jul 3, 2018 · 1 comment
Closed

After upgrading to Kubernetes 1.11 external #2740

vetm73 opened this issue Jul 3, 2018 · 1 comment

Comments

@vetm73
Copy link

vetm73 commented Jul 3, 2018

Is this a BUG REPORT or FEATURE REQUEST? (choose one):
I think it's a bug ( or configuration issue )

NGINX Ingress controller version:
0.16.2

Kubernetes version (use kubectl version):
1.11.0

Environment:
arm

  • Cloud provider or hardware configuration:
    Raspberry Pi 3
  • OS (e.g. from /etc/os-release):
    Raspbian Stretch
  • Kernel (e.g. uname -a):
    Linux PI01 4.14.50-v7+ Fix broken link #1122 SMP Tue Jun 19 12:26:26 BST 2018 armv7l GNU/Linux
  • Install tools:
    flannel
  • Others:

What happened:
On 1.10.2 I have the following ingress-nginx service to get external traffic from 192.168.1.201 port 80 to my pod.

apiVersion: v1
kind: Service
metadata:
  name: ingress-nginx
  namespace: ingress-nginx
spec:
  type: NodePort
  ports:
  - name: http
    port: 80
    targetPort: 80
    protocol: TCP
  - name: https
    port: 443
    targetPort: 443
    protocol: TCP
  selector:
    app: ingress-nginx
  externalIPs:
  - 192.168.1.201

After upgrading to 1.11.0 this configuration does not work. The page timed out or gets a connection refused.

What you expected to happen:
Traffic for port 80 is send to my pod

How to reproduce it (as minimally and precisely as possible):
Install 1.11.0 flannel ingress-nginx with service above. Pod must show website on port 80.

Anything else we need to know:
My cluster is running on PI hardware. Ingress from the pod:

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: the-ingress
  namespace: the-namespace
spec:
  rules:
  - host: my-host.com
    http:
      paths:
      - backend:
          serviceName: web-server
          servicePort: http
@aledbf
Copy link
Member

aledbf commented Jul 5, 2018

@vetm73 this is not an issue with the ingress controller itself but with k8s.

@aledbf aledbf closed this as completed Jul 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants