File tree Expand file tree Collapse file tree 4 files changed +37
-4
lines changed Expand file tree Collapse file tree 4 files changed +37
-4
lines changed Original file line number Diff line number Diff line change
1
+ # Patterns to ignore when building packages.
2
+ # This supports shell glob matching, relative path matching, and
3
+ # negation (prefixed with !). Only one pattern per line.
4
+ .DS_Store
5
+ # Common VCS dirs
6
+ .git/
7
+ .gitignore
8
+ .bzr/
9
+ .bzrignore
10
+ .hg/
11
+ .hgignore
12
+ .svn/
13
+ # Common backup files
14
+ *.swp
15
+ *.bak
16
+ *.tmp
17
+ *.orig
18
+ *~
19
+ # Various IDEs
20
+ .project
21
+ .idea/
22
+ *.tmproj
23
+ .vscode/
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ type: application
22
22
# to the chart and its templates, including the app version.
23
23
# Versions are expected to follow Semantic Versioning (https://semver.org/)
24
24
25
- version : 1.0 .0
25
+ version : 1.1 .0
26
26
27
27
dependencies :
28
28
- name : postgresql
Original file line number Diff line number Diff line change 37
37
- --host=0.0.0.0
38
38
- --port=8000
39
39
- --backend-store-uri=postgresql://{{ .Values.postgresql.auth.username }}:{{ .Values.postgresql.auth.password }}@{{ .Values.postgresql.fullnameOverride }}:5432/{{ .Values.postgresql.auth.database}}
40
+ {{ if .Values.service.proxyArtifact.enabled -}}
41
+ - --artifacts-destination={{ .Values.service.directory }}
42
+ {{- else -}}
40
43
- --default-artifact-root={{ .Values.service.directory }}
41
- - --workers=2
44
+ {{- end -}}
45
+ {{ range .Values.service.customArgs }}
46
+ - {{ . }}
47
+ {{- end }}
42
48
imagePullPolicy : {{ .Values.service.image.pullPolicy }}
43
49
envFrom :
44
50
{{- if .Values.s3.enabled }}
Original file line number Diff line number Diff line change @@ -6,12 +6,16 @@ replicaCount: 1
6
6
7
7
service :
8
8
image :
9
- version : " "
9
+ version : " inseefrlab/mlflow:v2.2.2 "
10
10
pullPolicy : IfNotPresent
11
11
custom :
12
12
enabled : false
13
13
version : " "
14
14
directory : /tmp/mlflow/artifacts/
15
+ proxyArtifact :
16
+ enabled : false
17
+ customArgs : # []
18
+ - --workers=2
15
19
16
20
s3 :
17
21
# Specifies whether a config map should be created
@@ -47,7 +51,7 @@ security:
47
51
48
52
postgresql :
49
53
image :
50
- tag : " 12 "
54
+ tag : " 15 "
51
55
auth :
52
56
username : " admin"
53
57
password : " changeme"
You can’t perform that action at this time.
0 commit comments