Rancher K8S ingress not working

Hello,

I am using the following ingress declaration :

apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: global-lb-ingress
annotations:
io.rancher.scheduler.global: “true”
# Search for a host that has label foo=bar and schedule the load balancer on that host.
io.rancher.scheduler.affinity.host_label: “zone=web”
# Prioritize traffic to containers that are on the same host as the load balancer container
io.rancher.lb_service.target: “prefer-local”
https.port: “443”
spec:
rules:

  • host: docker.domain.local
    http:
    paths:
    • path: /test
      backend:
      serviceName: nginx-service
      servicePort: 90
    • path: /wp
      backend:
      serviceName: wordpress
      servicePort: 80
    • path: /bar
      backend:
      serviceName: nginx-service-2
      servicePort: 80
      tls:
  • secretName: rancher.domain.local

the service is being created but the configuration is wrong. See the screenshot from rancher point of view

Is there something wrong with my configuration or is this kind of a bug ?

Regards

I’m the only one shocked by the fact that only path /test is configured in this screenshot ?

should have /wp and /bar path configured too !

Can’t reproduce this on v1.6.14. What version are you using? (Rancher and K8s) Can you also share the exact steps you took to get into this state and upload the definition to github gists or something so I can try to reproduce.