forked from larribas/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
90 lines (72 loc) · 2.55 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# backendStore -- Either a filepath, a database or the default value. At present, postgres is the only database engine supported by the official image. Should you want to connect to any other database, please refer to the README.
backendStore:
# backendStore.filepath -- A local or remote filesystem path (e.g. /mnt/persistent-disk)
filepath:
# backendStore.postgres -- A map with the values for (username, password, host, port and database).
postgres:
# username:
# password:
# host:
# port:
# database:
# defaultArtifactRoot -- A local or remote filepath (e.g. s3://my-bucket). It is mandatory when specifying a database backend store
defaultArtifactRoot:
# extraArgs -- A map of arguments and values to pass to the `mlflow server` command
extraArgs: {}
# workers: 2
# expose-prometheus: yes
replicaCount: 1
image:
pullPolicy: IfNotPresent
# image.repository -- The fully qualified name of the docker image to use
repository: delcacho/mlflow
# image.tag -- The tag for the repository (e.g. 'latest')
tag:
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# serviceAccount.create -- Specifies whether a service account should be created
create: true
# serviceAccount.annotations -- Annotations to add to the service account
annotations: {}
# serviceAccount.name -- The name of the service account to use. If not set and create is true, a name is generated using the fullname template
name:
podSecurityContext: {}
# fsGroup: 2000
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
service:
type: NodePort
port: 5000
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
# ingress.hosts[0].paths -- A list of objects. Each object should contain a `path` key, and may contain a `serviceNameOverride` and a `servicePortOverride` key. If you do not specify any overrides, the Chart will use the ones for the service it creates automatically. We allow overrides to allow advanced behavior like SSL redirection on the AWS ALB Ingress Controller.
paths: []
# - path: "/*"
# serviceNameOverride: chart-example
# servicePortOverride: 80
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}