@@ -11,4 +11,52 @@ metadata:
1111 heritage : {{ .Release.Service }}
1212data :
1313 config : |
14- {{ toYaml core.config | indent 4 }}
14+
15+ # Please see gojek/feast/core/src/main/resources/application.yml for an explanation of config
16+
17+ grpc:
18+ port: {{ .Values.core.service.grpc.port }}
19+ enable-reflection: {{ .Values.core.enableReflection }}
20+
21+ feast:
22+ store:
23+ serving-type: {{ .Values.core.store.serving.type }}
24+ serving-options:
25+ host: {{ .Values.core.store.serving.options.redis.host }}
26+ port: {{ .Values.core.store.serving.options.redis.port }}
27+ subscriptions: ".*:>0"
28+ warehouse-type: ""
29+ jobs:
30+ runner: {{ .Values.core.jobs.runner }}
31+ options: {{ .Values.core.jobs.options }}
32+ stream:
33+ # Feature stream type. Only kafka is supported.
34+ type: {{ .Values.stream.type }}
35+ # Feature stream options.
36+ options:
37+ bootstrapServers: {{ .Values.stream.options.bootstrapServers }}
38+ replicationFactor: {{ .Values.stream.options.replicationFactor }}
39+ partitions: {{ .Values.stream.options.partitions }}
40+ statsd:
41+ host: {{ .Values.statsd.host }}
42+ port: {{ .Values.statsd.port }}
43+
44+ spring:
45+ jpa:
46+ properties.hibernate.format_sql: true
47+ hibernate.naming.physical-strategy=org.hibernate.boot.model.naming: PhysicalNamingStrategyStandardImpl
48+ hibernate.ddl-auto: update
49+ datasource:
50+ url: jdbc:postgresql://{{ .Values.core.postgres.host }}:{{ .Values.core.postgres.port }}/{{ .Values.core.postgres.database }}
51+ username: {{ .Values.core.postgres.username }}
52+ password: {{ .Values.core.postgres.password }}
53+
54+ management:
55+ metrics:
56+ export:
57+ simple:
58+ enabled: false
59+ statsd:
60+ enabled: true
61+ host: {{ .Values.statsd.host }}
62+ port: {{ .Values.statsd.port }}
0 commit comments