forked from parano/yatai-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
110 lines (96 loc) · 2.39 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Default values for YataiService.
# Database URL following RFC-1738, and usually can
# include username, password, hostname, database name as
# well as optional keyword arguments for additional
# configuration
# (leave empty for SQLite)
db_url: {}
# Base URL for storing saved BentoService bundle files,
# this can be a filesystem path(POSIX/Windows), or an S3
# URL, usually starts with "s3://"
repo_base_url: {}
# Yatai Service
yatai:
replicaCount: 1 # only supports 1 at the moment
image:
repo: bentoml/yatai-service
version: 0.13.0
pullPolicy: IfNotPresent
service:
type: LoadBalancer
ports:
grpc: 50051
web: 3000
livenessProbe:
httpGet:
path: /
port: 3000
initialDelaySeconds: 3
periodSeconds: 5
readinessProbe:
httpGet:
path: /
port: 3000
initialDelaySeconds: 3
periodSeconds: 5
# Local Postgres Service
postgres:
enabled: false
port: "5432"
image:
repo: postgres
version: latest
pullPolicy: IfNotPresent
data:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password123
storageCapacity: 5Gi
pvReclaimPolicy: Retain
# Ingress Resource
ingress:
enabled: false
hostname: {}
tls:
enabled: false
secretName: {}
### Advanced Settings ###
# Only change these if you know what you're doing
# Secrets if using self-hosted Docker repository
imagePullSecrets: []
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
name: "yatai-service-account"
podSecurityContext: {}
# fsGroup: 2000
securityContext:
yatai: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
postgres: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}