Skip to content
Merged
Show file tree
Hide file tree
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
Binary file added charts/feast/charts/redis-6.0.0.tgz
Binary file not shown.
7 changes: 5 additions & 2 deletions charts/feast/requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ dependencies:
- name: postgresql
repository: https://kubernetes-charts.storage.googleapis.com
version: 0.19.0
digest: sha256:1bb5f2d0e2d39c87144d257c9d862e7f9686f0603fdfd4d145d0af38beda0903
generated: 2018-10-10T15:48:27.20614361+08:00
- name: redis
repository: https://kubernetes-charts.storage.googleapis.com
version: 6.0.0
digest: sha256:cb4801425432b544a54462d657daf5ffb8bc18eb5f25b39ef5560a66ae4975eb
generated: 2019-02-07T10:54:57.715495851+08:00
6 changes: 5 additions & 1 deletion charts/feast/requirements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@ dependencies:
- name: postgresql
version: ^0.19.0
repository: "@stable"
condition: provisionDataStore.postgres
condition: postgres.provision
- name: redis
version: ^6.0.0
repository: "@stable"
condition: redis.provision
2 changes: 1 addition & 1 deletion charts/feast/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ If release name contains chart name it will be used as a full name.
{{- end -}}

{{/*
Generate postgres secret name
Generate postgresql secret name
*/}}
{{- define "postgresql.secretName" -}}
{{ default (include "postgresql.fullname" .) .Values.existingSecret }}
Expand Down
4 changes: 3 additions & 1 deletion charts/feast/templates/core-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ spec:
secretKeyRef:
name: {{ template "postgresql.fullname" . }}
key: postgres-password
- name: LOG_TYPE
value: {{ .Values.core.logType }}
- name: PROJECT_ID
value: "{{ .Values.core.projectId}}"
- name: TRAINING_DATASET_PREFIX
Expand All @@ -90,7 +92,7 @@ spec:
- name: JOB_MONITOR_INITIAL_DELAY_MS
value: "{{ .Values.core.jobs.monitoring.initialDelay }}"
- name: JOB_ERRORS_STORE_TYPE
value: {{ .Values.core.jobs.errorsStoreType }}
value: {{ .Values.core.jobs.errorStoreType }}
- name: JOB_ERRORS_STORE_OPTIONS
value: {{ .Values.core.jobs.errorStoreOptions | toJson}}
- name: STATSD_HOST
Expand Down
20 changes: 12 additions & 8 deletions charts/feast/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ core:
projectId: "gcp-project-id"
image:
pullPolicy: IfNotPresent
registry: feast
registry: gcr.io/kf-feast
repository: feast-core
tag: "0.1.0"
tag: "1234"
replicaCount: 3
resources:
limits:
Expand All @@ -27,19 +27,23 @@ core:
jobs:
runner: DirectRunner
options: "{}"
errorsStoreType: "stdout"
errorStoreType: "stdout"
errorStoreOptions: "{}"
monitoring:
period: 5000
initialDelay: 60000
trainingDatasetPrefix: "fs"
# logType: JSON

postgresql:
name: feast-metadata
provision: true
imageTag: 9.6.11
service:
port: 5432
provisionDataStore:
postgres: true

redis:
name: feast-redis
provision: true

serving:
config:
Expand All @@ -51,9 +55,9 @@ serving:
timeout: 5
image:
pullPolicy: IfNotPresent
registry: feast
registry: gcr.io/kf-feast
repository: feast-serving
tag: "0.1.0"
tag: "1234"
replicaCount: 4
resources:
limits:
Expand Down