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
2 changes: 1 addition & 1 deletion charts/events/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: events
description: Data Analysis event triggering
type: application

version: 0.3.2
version: 0.3.3

dependencies:
- name: argo-events
Expand Down
28 changes: 12 additions & 16 deletions charts/events/templates/event-bus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,17 @@ metadata:
namespace: {{ $eventBus.namespace }}
name: {{ $eventBus.name }}
spec:
nats:
native:
# Optional, defaults to 3. If it is < 3, set it to 3, that is the minimal requirement.
replicas: 3
# Optional, auth strategy, "none" or "token", defaults to "none"
auth: token
{{- if $eventBus.resources }}
containerTemplate:
resources:
{{- $eventBus.resources | toYaml | nindent 10 }}
{{- end }}
{{- if $eventBus.metricsresources }}
metricsContainerTemplate:
resources:
{{- $eventBus.metricsresources | toYaml | nindent 10 }}
{{- end }}
jetstream:
version: "2.10.10"
{{- if $eventBus.resources }}
containerTemplate:
resources:
{{- $eventBus.resources | toYaml | nindent 10 }}
{{- end }}
{{- if $eventBus.metricsresources }}
metricsContainerTemplate:
resources:
{{- $eventBus.metricsresources | toYaml | nindent 10 }}
{{- end }}
{{- end }}
{{- end }}
Loading