fix(argo-events): Added missing NATS version in values.yaml (#1735)
Signed-off-by: Ramin Akhbari <ramin@akhbari.us> Co-authored-by: Petr Drastil <petr.drastil@gmail.com>
This commit is contained in:
parent
10e3af1bcf
commit
daba66b68c
3 changed files with 7 additions and 3 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v1.7.4
|
appVersion: v1.7.4
|
||||||
description: A Helm chart for Argo Events, the event-driven workflow automation framework
|
description: A Helm chart for Argo Events, the event-driven workflow automation framework
|
||||||
name: argo-events
|
name: argo-events
|
||||||
version: 2.0.10
|
version: 2.0.11
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argoproj.github.io/argo-events/assets/logo.png
|
icon: https://argoproj.github.io/argo-events/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -15,4 +15,4 @@ maintainers:
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Upgrade Argo events controller to v1.7.4"
|
- "[Fixed]: Added missing NATS version in values.yaml"
|
||||||
|
|
|
@ -57,7 +57,7 @@ done
|
||||||
| configs.jetstream.versions[0].natsImage | string | `"nats:latest"` | |
|
| configs.jetstream.versions[0].natsImage | string | `"nats:latest"` | |
|
||||||
| configs.jetstream.versions[0].startCommand | string | `"/nats-server"` | |
|
| configs.jetstream.versions[0].startCommand | string | `"/nats-server"` | |
|
||||||
| configs.jetstream.versions[0].version | string | `"latest"` | |
|
| configs.jetstream.versions[0].version | string | `"latest"` | |
|
||||||
| configs.nats.versions | list | `[{"metricsExporterImage":"natsio/prometheus-nats-exporter:latest","natsStreamingImage":"nats-streaming:latest","version":"latest"}]` | Supported versions of NATS event bus |
|
| configs.nats.versions | list | See [values.yaml] | Supported versions of NATS event bus |
|
||||||
| crds.annotations | object | `{}` | Annotations to be added to all CRDs |
|
| crds.annotations | object | `{}` | Annotations to be added to all CRDs |
|
||||||
| crds.install | bool | `true` | Install and upgrade CRDs |
|
| crds.install | bool | `true` | Install and upgrade CRDs |
|
||||||
| crds.keep | bool | `true` | Keep CRDs on chart uninstall |
|
| crds.keep | bool | `true` | Keep CRDs on chart uninstall |
|
||||||
|
|
|
@ -62,10 +62,14 @@ configs:
|
||||||
## NATS event bus
|
## NATS event bus
|
||||||
nats:
|
nats:
|
||||||
# -- Supported versions of NATS event bus
|
# -- Supported versions of NATS event bus
|
||||||
|
# @default -- See [values.yaml]
|
||||||
versions:
|
versions:
|
||||||
- version: latest
|
- version: latest
|
||||||
natsStreamingImage: nats-streaming:latest
|
natsStreamingImage: nats-streaming:latest
|
||||||
metricsExporterImage: natsio/prometheus-nats-exporter:latest
|
metricsExporterImage: natsio/prometheus-nats-exporter:latest
|
||||||
|
- version: 0.22.1
|
||||||
|
natsStreamingImage: nats-streaming:0.22.1
|
||||||
|
metricsExporterImage: natsio/prometheus-nats-exporter:0.8.0
|
||||||
|
|
||||||
## JetStream event bus
|
## JetStream event bus
|
||||||
jetstream:
|
jetstream:
|
||||||
|
|
Loading…
Reference in a new issue