parent
3e1b02da23
commit
d0b5926c0b
|
@ -1,8 +1,8 @@
|
|||
apiVersion: v2
|
||||
appVersion: v1.9.2
|
||||
appVersion: v1.9.3
|
||||
description: A Helm chart for Argo Events, the event-driven workflow automation framework
|
||||
name: argo-events
|
||||
version: 2.4.8
|
||||
version: 2.4.9
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://avatars.githubusercontent.com/u/30269780?s=200&v=4
|
||||
keywords:
|
||||
|
@ -18,5 +18,5 @@ annotations:
|
|||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||
artifacthub.io/changes: |
|
||||
- kind: fixed
|
||||
description: events-webhook Service using non-default port
|
||||
- kind: changed
|
||||
description: Bump argo-events to v1.9.3
|
||||
|
|
|
@ -60,11 +60,13 @@ done
|
|||
|-----|------|---------|-------------|
|
||||
| configs.jetstream.settings.maxFileStore | int | `-1` | Maximum size of the file storage (e.g. 20G) |
|
||||
| configs.jetstream.settings.maxMemoryStore | int | `-1` | Maximum size of the memory storage (e.g. 1G) |
|
||||
| configs.jetstream.streamConfig.discard | int | `0` | 0: DiscardOld, 1: DiscardNew |
|
||||
| configs.jetstream.streamConfig.duplicates | string | `"300s"` | Not documented at the moment |
|
||||
| configs.jetstream.streamConfig.maxAge | string | `"72h"` | Maximum age of existing messages, i.e. “72h”, “4h35m” |
|
||||
| configs.jetstream.streamConfig.maxBytes | string | `"1GB"` | |
|
||||
| configs.jetstream.streamConfig.maxMsgs | int | `1000000` | Maximum number of messages before expiring oldest message |
|
||||
| configs.jetstream.streamConfig.replicas | int | `3` | Number of replicas, defaults to 3 and requires minimal 3 |
|
||||
| configs.jetstream.streamConfig.retention | int | `0` | 0: Limits, 1: Interest, 2: WorkQueue |
|
||||
| configs.jetstream.versions[0].configReloaderImage | string | `"natsio/nats-server-config-reloader:0.14.0"` | |
|
||||
| configs.jetstream.versions[0].metricsExporterImage | string | `"natsio/prometheus-nats-exporter:0.14.0"` | |
|
||||
| configs.jetstream.versions[0].natsImage | string | `"nats:2.10.10"` | |
|
||||
|
|
|
@ -32,6 +32,8 @@ data:
|
|||
maxBytes: {{ .Values.configs.jetstream.streamConfig.maxBytes }}
|
||||
replicas: {{ .Values.configs.jetstream.streamConfig.replicas }}
|
||||
duplicates: {{ .Values.configs.jetstream.streamConfig.duplicates }}
|
||||
retention: {{ .Values.configs.jetstream.streamConfig.retention }}
|
||||
discard: {{ .Values.configs.jetstream.streamConfig.discard }}
|
||||
versions:
|
||||
{{- range .Values.configs.jetstream.versions }}
|
||||
- version: {{ .version }}
|
||||
|
|
|
@ -94,6 +94,10 @@ configs:
|
|||
replicas: 3
|
||||
# -- Not documented at the moment
|
||||
duplicates: 300s
|
||||
# -- 0: Limits, 1: Interest, 2: WorkQueue
|
||||
retention: 0
|
||||
# -- 0: DiscardOld, 1: DiscardNew
|
||||
discard: 0
|
||||
# Supported versions of JetStream eventbus
|
||||
versions:
|
||||
- version: latest
|
||||
|
|
Loading…
Reference in New Issue