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