-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathfeast.yaml
More file actions
55 lines (55 loc) · 1.23 KB
/
feast.yaml
File metadata and controls
55 lines (55 loc) · 1.23 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
apiVersion: v1
kind: Secret
metadata:
name: feast-data-stores
namespace: feast
stringData:
redis: |
connection_string: redis.feast.svc.cluster.local:6379
sql: |
path: postgresql+psycopg://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres.feast.svc.cluster.local:5432/${POSTGRES_DB}
cache_ttl_seconds: 60
sqlalchemy_config_kwargs:
echo: false
pool_pre_ping: true
---
apiVersion: feast.dev/v1alpha1
kind: FeatureStore
metadata:
name: example
namespace: feast
spec:
feastProject: credit_scoring_local
feastProjectDir:
git:
url: https://github.com/feast-dev/feast-credit-score-local-tutorial
ref: 598a270
services:
offlineStore:
persistence:
file:
type: duckdb
onlineStore:
persistence:
store:
type: redis
secretRef:
name: feast-data-stores
server:
envFrom:
- secretRef:
name: postgres-secret
env:
- name: MPLCONFIGDIR
value: /tmp
resources:
requests:
cpu: 150m
memory: 128Mi
registry:
local:
persistence:
store:
type: sql
secretRef:
name: feast-data-stores