Skip to content

Commit

Permalink
fix: removed default event expiration ttl
Browse files Browse the repository at this point in the history
  • Loading branch information
antoninguyot committed Oct 4, 2024
1 parent 529be89 commit 63bae8b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions templates/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,14 @@ spec:
{{- end }}
- name: EVENT_CHAINSIGN
value: {{ .Values.events.chainsign | quote }}
{{- if .Values.events.ttl }}
- name: EVENT_TTL
value: {{ .Values.events.ttl }}
{{- end }}
{{- if .Values.events.discoveryTtl }}
- name: EVENT_DISCOVERY_TTL
value: {{ .Values.events.discoveryTtl }}
{{- end }}
{{- if .Values.events.chainsign }}
- name: EVENT_SEAL_SECRET
{{- include "horizon.eventSealSecret" (dict "context" .) | nindent 14 }}
Expand Down
4 changes: 2 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -512,8 +512,8 @@ events:
## key: eventSealSecret
##
secret: {}
ttl: 90 days
discoveryTtl: 30 days
ttl: ""
discoveryTtl: ""

## @param logFormat Format in which logs will be outputted. Can be set either to "console" or "json" for structured logging.
logFormat: console
Expand Down

0 comments on commit 63bae8b

Please sign in to comment.