Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Add additional env vars for error store
  • Loading branch information
Mansi Bhargava committed Jan 14, 2019
commit ffab53d256ed260a338f01897ff4a41e9c689741
6 changes: 4 additions & 2 deletions charts/feast/templates/core-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,14 @@ spec:
value: {{ .Values.core.jobs.runner }}
- name: JOB_OPTIONS
value: {{ .Values.core.jobs.options | toJson}}
- name: JOB_ERRORS_STORE_ID
value: {{ .Values.core.jobs.errorsStoreId }}
- name: JOB_MONITOR_PERIOD_MS
value: "{{ .Values.core.jobs.monitoring.period }}"
- name: JOB_MONITOR_INITIAL_DELAY_MS
value: "{{ .Values.core.jobs.monitoring.initialDelay }}"
- name: JOB_ERRORS_STORE_TYPE
value: {{ .Values.core.jobs.errorsStoreType }}
- name: JOB_ERRORS_STORE_OPTIONS
value: {{ .Values.core.jobs.errorStoreOptions | toJson}}
- name: STATSD_HOST
value: {{ .Values.statsd.host }}
- name: STATSD_PORT
Expand Down
9 changes: 7 additions & 2 deletions charts/feast/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ core:
jobs:
runner: DirectRunner
options: "{}"
errorsStoreId: "STDOUT"
errorsStoreType: "STDOUT"
errorStoreOptions: "{}"
monitoring:
period: 5000
initialDelay: 60000
Expand Down Expand Up @@ -74,4 +75,8 @@ serving:

serviceAccount:
name: feast-service-account
key: feast-service-account-key
key: feast-service-account-key

statsd:
host: "localhost"
port: 8125