Skip to content

Commit

Permalink
Add mlflow features
Browse files Browse the repository at this point in the history
  • Loading branch information
ukclivecox committed Sep 14, 2020
1 parent 3b591f1 commit 9077b9c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@
{{- if .Values.model.uri }}
"modelUri": "{{ .Values.model.uri }}",
{{- end}}
{{- if .Values.model.mlflow.xtype }}
"parameters": [
{
"name": "xtype",
"type": "STRING",
"value": "{{ .Values.model.mlflow.xtype }}"
}
],
{{- end}}
"type": "MODEL",
{{- if .Values.model.logger.enabled }}
"logger": {
Expand Down
2 changes: 2 additions & 0 deletions helm-charts/seldon-single-model/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ model:
enabled: false
# logger.url -- Remote URL for logger
url: ""
mlflow:
xtype: ""

# replicas -- Number of replicas for the predictor
replicas: 1
Expand Down

0 comments on commit 9077b9c

Please sign in to comment.