Skip to content

Commit

Permalink
add --host 0.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robkooper committed Apr 26, 2022
1 parent b70498a commit 972c638
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/mlflow/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.1
version: 1.0.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down Expand Up @@ -43,4 +43,4 @@ annotations:
- name: Helm Chart
url: https://github.com/ncsa/charts
artifacthub.io/changes: |
- Use existing secrets for mlflow pod
- Fix deployment to listen on 0.0.0.0 interface
3 changes: 2 additions & 1 deletion charts/mlflow/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ spec:
{{- end }}
args: ["server",
"--backend-store-uri", "{{- template "services.postgres.uri" .}}",
"--default-artifact-root", "{{- template "services.minio.uri" . }}"]
"--default-artifact-root", "{{- template "services.minio.uri" . }}",
"--host", "0.0.0.0"]
ports:
- name: mlflow
containerPort: 5000
Expand Down

0 comments on commit 972c638

Please sign in to comment.