i've setup a minio tenant using the minio operator and was following the getting started guide. Now if i create an IngressRoute to for the ui i'm just getting redirected to 0.0.0.0:9443.
This is the IngressRoute:
apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
name: minio-console-ui-http
namespace: default
spec:
entryPoints:
- web
routes:
- match: Host(`minio-console.mysecretdomain.tld`)
kind: Rule
services:
- name: minio-cluster-console
port: 9090
do i miss a config parameter for the console?