Skip to content

Commit

Permalink
chore: setting default params
Browse files Browse the repository at this point in the history
  • Loading branch information
nemo83 committed May 7, 2024
1 parent ccb4fad commit f3664f8
Showing 1 changed file with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
- name: STORE_CARDANO_PROTOCOL_MAGIC
value: {{ .Values.storeCardanoProtocolMagic | default "1" | quote }}
{{- end }}

## Postgres
{{- with .Values.aggregation.postgres }}
- name: POSTGRES_HOST
Expand Down Expand Up @@ -102,8 +102,28 @@ spec:
key: {{ .passwordKey }}
{{- end }}

- name: HEALTH_CHECK_ENABLED
value: "true"
- name: EVENT_TIME_THRESHOLD_IN_SECOND
value: "600"
- name: BLOCK_TIME_CHECK_ENABLED
value: "true"
- name: BLOCK_TIME_THRESHOLD_IN_SECOND
value: "180"

- name: STORE_ACCOUNT_HISTORYCLEANUPENABLED
value: {{ .Values.aggregation.store.account.history_cleanup_enabled | quote }}
- name: STORE_ACCOUNT_INITIALBALANCESNAPSHOTBLOCK
value: "0"
- name: STORE_ACCOUNT_BALANCECALCJOBBATCHSIZE
value: "500"
- name: STORE_ACCOUNT_BALANCECALCJOBPARTITIONSIZE
value: "5"
- name: STORE_ADMIN_HEALTHCHECKINTERVAL
value: "120"
- name: STORE_ADMIN_AUTORECOVERYENABLED
value: "true"

resources:
{{- toYaml .Values.aggregation.resources | nindent 12 }}
{{ end }}

0 comments on commit f3664f8

Please sign in to comment.