Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update values-demo.yaml to make Minikube installation simpler #298

Merged
merged 2 commits into from
Nov 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 44 additions & 2 deletions infra/charts/feast/values-demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,68 @@
# to be durable
# - Only online serving (no batch serving) is installed to remove dependency
# on Google Cloud services. Batch serving requires BigQuery dependency.
# - Replace all occurrences of "feast.example.com" with the domain name or
# external IP pointing to your cluster
#

feast-core:
enabled: true

gcpServiceAccount:
useExistingSecret: false

service:
type: NodePort
grpc:
nodePort: 32090


resources:
requests:
cpu: 250m
memory: 256Mi

postgresql:
persistence:
enabled: false


kafka:
enabled: true
persistence:
enabled: false
external:
enabled: true
type: NodePort
domain: feast.example.com
configurationOverrides:
"advertised.listeners": |-
EXTERNAL://feast.example.com:$((31090 + ${KAFKA_BROKER_ID}))
"listener.security.protocol.map": |-
PLAINTEXT:PLAINTEXT,EXTERNAL:PLAINTEXT

application.yaml:
feast:
stream:
options:
bootstrapServers: feast.example.com:31090

feast-serving-online:
enabled: true
redis:
enabled: true

service:
type: NodePort
grpc:
nodePort: 32091

store.yaml:
name: redis
type: REDIS
subscriptions:
- name: ".*"
version: ">0"
- name: ".*"
version: ">0"

feast-serving-batch:
enabled: false