File tree 4 files changed +12
-4
lines changed
templates/argo-events-controller
4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
- appVersion : v1.9.2
2
+ appVersion : v1.9.3
3
3
description : A Helm chart for Argo Events, the event-driven workflow automation framework
4
4
name : argo-events
5
- version : 2.4.8
5
+ version : 2.4.9
6
6
home : https://github.com/argoproj/argo-helm
7
7
icon : https://avatars.githubusercontent.com/u/30269780?s=200&v=4
8
8
keywords :
@@ -18,5 +18,5 @@ annotations:
18
18
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
19
19
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
20
20
artifacthub.io/changes : |
21
- - kind: fixed
22
- description: events-webhook Service using non-default port
21
+ - kind: changed
22
+ description: Bump argo-events to v1.9.3
Original file line number Diff line number Diff line change 60
60
| -----| ------| ---------| -------------|
61
61
| configs.jetstream.settings.maxFileStore | int | ` -1 ` | Maximum size of the file storage (e.g. 20G) |
62
62
| configs.jetstream.settings.maxMemoryStore | int | ` -1 ` | Maximum size of the memory storage (e.g. 1G) |
63
+ | configs.jetstream.streamConfig.discard | int | ` 0 ` | 0: DiscardOld, 1: DiscardNew |
63
64
| configs.jetstream.streamConfig.duplicates | string | ` "300s" ` | Not documented at the moment |
64
65
| configs.jetstream.streamConfig.maxAge | string | ` "72h" ` | Maximum age of existing messages, i.e. “72h”, “4h35m” |
65
66
| configs.jetstream.streamConfig.maxBytes | string | ` "1GB" ` | |
66
67
| configs.jetstream.streamConfig.maxMsgs | int | ` 1000000 ` | Maximum number of messages before expiring oldest message |
67
68
| configs.jetstream.streamConfig.replicas | int | ` 3 ` | Number of replicas, defaults to 3 and requires minimal 3 |
69
+ | configs.jetstream.streamConfig.retention | int | ` 0 ` | 0: Limits, 1: Interest, 2: WorkQueue |
68
70
| configs.jetstream.versions[ 0] .configReloaderImage | string | ` "natsio/nats-server-config-reloader:0.14.0" ` | |
69
71
| configs.jetstream.versions[ 0] .metricsExporterImage | string | ` "natsio/prometheus-nats-exporter:0.14.0" ` | |
70
72
| configs.jetstream.versions[ 0] .natsImage | string | ` "nats:2.10.10" ` | |
Original file line number Diff line number Diff line change 32
32
maxBytes: {{ .Values.configs.jetstream.streamConfig.maxBytes }}
33
33
replicas: {{ .Values.configs.jetstream.streamConfig.replicas }}
34
34
duplicates: {{ .Values.configs.jetstream.streamConfig.duplicates }}
35
+ retention: {{ .Values.configs.jetstream.streamConfig.retention }}
36
+ discard: {{ .Values.configs.jetstream.streamConfig.discard }}
35
37
versions:
36
38
{{- range .Values.configs.jetstream.versions }}
37
39
- version: {{ .version }}
Original file line number Diff line number Diff line change @@ -94,6 +94,10 @@ configs:
94
94
replicas : 3
95
95
# -- Not documented at the moment
96
96
duplicates : 300s
97
+ # -- 0: Limits, 1: Interest, 2: WorkQueue
98
+ retention : 0
99
+ # -- 0: DiscardOld, 1: DiscardNew
100
+ discard : 0
97
101
# Supported versions of JetStream eventbus
98
102
versions :
99
103
- version : latest
You can’t perform that action at this time.
0 commit comments