Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions tasks/mlflow-installing.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@
<step>
<para>
Replace <filename>mlflow/values.yaml</filename> with the following
content. Replace <replaceable>CHART_VERSION</replaceable> with the
current chart version.
content. Replace <replaceable>CONTAINER_VERSION</replaceable> with the
current container version.
</para>
<screen># values.yaml
replicaCount: 1
image:
repository: dp.apps.rancher.io/containers/mlflow
pullPolicy: IfNotPresent
tag: "<replaceable>CHART_VERSION</replaceable>"
tag: "<replaceable>CONTAINER_VERSION</replaceable>"
imagePullSecrets:
- name: application-collection
nameOverride: ""
Expand Down Expand Up @@ -305,10 +305,10 @@ suse-private-ai pen-webui nginx suse-ollama-webui 10.0.3.184 80, 443 8h</
<step>
<para>
Download the &mlflow; container. Replace
<replaceable>CHART_VERSION</replaceable> with the current chart
<replaceable>CONTAINER_VERSION</replaceable> with the current container
version.
</para>
<screen>&prompt.user;<command>docker pull dp.apps.rancher.io/containers/mlflow:<replaceable>CHART_VERSION</replaceable></command></screen>
<screen>&prompt.user;<command>docker pull dp.apps.rancher.io/containers/mlflow:<replaceable>CONTAINER_VERSION</replaceable></command></screen>
</step>
<step performance="optional">
<para>
Expand All @@ -321,11 +321,11 @@ dp.apps.rancher.io/containers/mlflow 3.6.0 d984124afc22 33 hours ago 715MB</scr
<step>
<para>
Run the &mlflow; server by starting the container at port 5000.
Replace <replaceable>CHART_VERSION</replaceable> with the current
chart version.
Replace <replaceable>CONTAINER_VERSION</replaceable> with the current
container version.
</para>
<screen>&prompt.user;<command> docker run -p 5000:5000 \
dp.apps.rancher.io/containers/mlflow:<replaceable>CHART_VERSION</replaceable> mlflow server \
dp.apps.rancher.io/containers/mlflow:<replaceable>CONTAINER_VERSION</replaceable> mlflow server \
--host 0.0.0.0 --port 5000</command>
[2025-11-27 18:34:15 +0000] [12] [INFO] Starting gunicorn 23.0.0
[2025-11-27 18:34:15 +0000] [12] [INFO] Listening at: http://0.0.0.0:5000 (12)
Expand All @@ -345,7 +345,7 @@ dp.apps.rancher.io/containers/mlflow 3.6.0 d984124afc22 33 hours ago 715MB</scr
</para>
<screen>services:
mlflow:
image: dp.apps.rancher.io/containers/mlflow:<replaceable>CHART_VERSION</replaceable>
image: dp.apps.rancher.io/containers/mlflow:<replaceable>CONTAINER_VERSION</replaceable>
container_name: mlflow
restart: always
ports:
Expand Down