blog » self-hosted » services » mlflow
Self-Hosting MLflow Guest User
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: mlflow-admin
namespace: mlflow
spec:
entryPoints:
- websecure
routes:
- match: Host('mlflow.mathieuduchesneau.ca') && !Header(<!--CODE_BLOCK_114-->, <!--CODE_BLOCK_115-->)
kind: Rule
services:
- name: mlflow
port: 80
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: mlflow-guest-authorized
namespace: mlflow
spec:
entryPoints:
- websecure
routes:
- match: Host(<!--CODE_BLOCK_116-->) && Header(<!--CODE_BLOCK_117-->, <!--CODE_BLOCK_118-->) && Method(<!--CODE_BLOCK_119-->)
kind: Rule
services:
- name: mlflow
port: 80
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: mlflow-guest-authorized-post
namespace: mlflow
spec:
entryPoints:
- websecure
routes:
- match: |
Host(<!--CODE_BLOCK_120-->) &&
Header(<!--CODE_BLOCK_121-->, <!--CODE_BLOCK_122-->) &&
Method(<!--CODE_BLOCK_123-->) && (
Path(<!--CODE_BLOCK_124-->) ||
PathPrefix(<!--CODE_BLOCK_125-->) ||
PathPrefix(<!--CODE_BLOCK_126-->) ||
PathPrefix(<!--CODE_BLOCK_127-->) ||
PathPrefix(<!--CODE_BLOCK_128-->))
kind: Rule
services:
- name: mlflow
port: 80