Skip to content

Commit

Permalink
feat: mlflow ai gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
ahgraber committed Oct 26, 2024
1 parent e55a413 commit ad78607
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions kubernetes/apps/datasci/mlflow/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,21 +133,11 @@ spec:
# renovate: datasource=docker image=ghcr.io/...
repository: ghcr.io/ninerealmlabs/mlflow-server
tag: 2.17.0@sha256:37ea0b12fd5d06adad1e865475b49b68c081d9f2f9c0679b077b15b5ce1432a8
# -- Override the command(s) for the default container
# command: [/bin/bash, -c, mlflow gateway start]
# # -- Override the args for the default container
# args:
# - "--config-path"
# - "/config/config.yaml"
# - "--host"
# - "0.0.0.0"
# - "--port"
# - "5000"
command: ["mlflow", "gateway", "start"]
args:
- "--config-path=/config/config.yaml"
- "--host=0.0.0.0"
- "--port=5000"
- "--port=5001"
env:
TZ: ${TIMEZONE}
MLFLOW_GATEWAY_CONFIG: "/config/config.yaml"
Expand All @@ -165,7 +155,7 @@ spec:
failureThreshold: 3
httpGet:
path: /health
port: *port
port: &gport 5001
readiness: *probes
startup:
enabled: true
Expand All @@ -177,7 +167,7 @@ spec:
failureThreshold: 30
httpGet:
path: /health
port: *port
port: *gport
resources:
requests:
cpu: 25m
Expand All @@ -193,7 +183,7 @@ spec:
controller: mlflow
ports:
http:
port: *port
port: *gport
ingress:
main:
className: internal
Expand Down

0 comments on commit ad78607

Please sign in to comment.