-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathREADME.md.gotmpl
More file actions
66 lines (47 loc) · 2.46 KB
/
README.md.gotmpl
File metadata and controls
66 lines (47 loc) · 2.46 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
# Feast Java Helm Charts (alpha)
This repo contains Helm charts for Feast Java components that are being installed on Kubernetes:
* Feast (root chart): The complete Helm chart containing all Feast components and dependencies. Most users will use this chart, but can selectively enable/disable subcharts using the values.yaml file.
* [Feature Server](charts/feature-server): High performant JVM-based implementation of feature server.
* [Transformation Service](charts/transformation-service): Transformation server for calculating on-demand features
* Redis: (Optional) One of possible options for an online store used by Feature Server
## Chart: Feast
{{ template "chart.description" . }} Current chart version is `{{ template "chart.version" . }}`
## Installation
Charts are published to `https://feast-helm-charts.storage.googleapis.com`. Please note that this URL is different from the URL we previously used (`feast-charts`)
Run the following commands to add the repository
```
helm repo add feast-charts https://feast-helm-charts.storage.googleapis.com
helm repo update
```
Install Feast
```
helm install feast-release feast-charts/feast
```
## Customize your installation
This Feast chart comes with a [values.yaml](values.yaml) that allows for configuration and customization of all sub-charts.
In order to modify the default configuration of Feature Server, please use the `application-override.yaml` key in the `values.yaml` file in this chart. A code snippet example
```
feature-server:
application-override.yaml:
enabled: true
feast:
active_store: online
stores:
- name: online
type: REDIS
config:
host: localhost
port: 6379
entityKeySerializationVersion: 3
global:
registry:
path: gs://[YOUR GCS BUCKET]/demo-repo/registry.db
cache_ttl_seconds: 60
project: feast_java_demo
```
For the default configuration, please see the [Feature Server Configuration](https://github.com/feast-dev/feast/blob/master/java/serving/src/main/resources/application.yml).
For more details, please see: https://docs.feast.dev/how-to-guides/running-feast-in-production
## Example
See [here](https://github.com/feast-dev/feast/tree/master/examples/java-demo) for a sample tutorial on testing this helm chart with a demo feature repository and a local Redis instance.
{{ template "chart.requirementsSection" . }}
{{ template "chart.valuesSection" . }}