-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathvalues.yaml
More file actions
127 lines (120 loc) · 2.77 KB
/
Copy pathvalues.yaml
File metadata and controls
127 lines (120 loc) · 2.77 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
---
core:
projectId: "gcp-project-id"
image:
pullPolicy: IfNotPresent
registry: gcr.io/kf-feast
repository: feast-core
tag: "0.1.2"
replicaCount: 1
resources:
limits:
cpu: 4
memory: 6G
requests:
cpu: 1
memory: 2G
rollingUpdate:
maxSurge: 2
maxUnavailable: 0
service:
type: ClusterIP
grpc:
port: 6565
targetPort: 6565
http:
port: 80
targetPort: 8080
# loadBalancerSourceRanges sets the accepted IP ranges for firewall ingress rule
# this firewall rule is usually created when the service type is "LoadBalancer"
# loadBalancerSourceRanges: ["10.0.0.0/8"]
jobs:
workspace: "/tmp"
# runner specifies the Beam pipeline runner, use either DirectRunner (for development) or DataflowRunner (for production)
runner: DirectRunner
options: "{}"
errorStoreType: "stdout"
errorStoreOptions: "{}"
monitoring:
period: 5000
initialDelay: 60000
trainingDatasetPrefix: "fs"
# logType: JSON
livenessProbe:
initialDelaySeconds: 120
failureThreshold: 3
readinessProbe:
initialDelaySeconds: 60
failureThreshold: 1
# dataflow configuration is required when core.jobs.runner=DataflowRunner
# dataflow:
# projectID: ${GCP_PROJECT}
# location: ${GCP_REGION}
store:
errors:
type: "stdout"
warehouse:
type: "bigquery"
# options: '{"project": "gcp-project-id", "dataset": "feast"}'
serving:
type: "redis"
# options: '{"host": "redis-master", "port": "6379"}'
postgresql:
provision: true
persistence:
enabled: true
redis:
provision: false
cluster:
enabled: false
serving:
config:
maxEntityPerBatch: 2000
maxNumberOfThread: 128
redisPool:
maxIdle: 16
maxSize: 128
timeout: 5
image:
pullPolicy: IfNotPresent
registry: gcr.io/kf-feast
repository: feast-serving
tag: "0.1.2"
replicaCount: 1
resources:
limits:
cpu: 2
memory: 4G
requests:
cpu: 1
memory: 1G
rollingUpdate:
maxSurge: 2
maxUnavailable: 0
service:
type: ClusterIP
grpc:
port: 6565
targetPort: 6565
http:
port: 80
targetPort: 8080
# loadBalancerSourceRanges sets the accepted IP ranges for firewall ingress rule
# this firewall rule is usually created when the service type is "LoadBalancer"
# loadBalancerSourceRanges: ["10.0.0.0/8"]
jaeger:
enabled: false
livenessProbe:
initialDelaySeconds: 120
failureThreshold: 3
readinessProbe:
initialDelaySeconds: 30
failureThreshold: 1
# Enable only if you have an existing service account you
# want to mount the secret of.
# serviceAccount:
# name: feast-service-account
# key: service-account.json
statsd:
host: "localhost"
port: 8125