I'm trying to get an ingressroute (IR) to work with kibana (8.11.1) - bitnnami charts and getting 404 issues.
I can install kibana and portforward it just fine. I can add the basepath /kibana and have it rewritebasepath so all other pages inculde the basepath. ie http://127.0.0.1:8080/kibana
When i try to create a IR i can get it to initally connect via ie - match: Path(/kibana) but when it redirects say to `/kibana/spaces/enter' I get a 404 error.
Note: I'm using my own domain with certs it would be https//mydomain/kibana/spaces/enter
I'm fairly new to traefik so learning as I go.
(I'm not 100% sure that the /kibana is passed through to the app which is expecting `http://172.20.0.54:5601/kibana/spaces/enter' etc.
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: kibana-ir
namespace: elasticsearch
spec:
entryPoints:
- web
- websecure
routes:
- match: Path(/kibana)
kind: Rule
services: # Service to redirect requests to
- kind: Service
name: kibana
namespace: elasticsearch
port: 5601
tls:
secretName: internal-ca
Blockquote
Any help would be great.
(side question.. is there a way to see more detail on what traefik is passing in between... kibani logs are not either really simple or so much its too much to trace..)