argocd-helm/charts/argo-events/values.yaml
Paul Ayling 6ff8ee14f5
feat(argo-events): Update Argo Events to 1.5.0 (#995)
* Update image and tag for argo events deployments

Signed-off-by: Paul Ayling <paul.ayling@sky.uk>

* Update Nats images

Signed-off-by: Paul Ayling <paul.ayling@sky.uk>

* Update sensorImage and eventSourceImage

Signed-off-by: Paul Ayling <paul.ayling@sky.uk>

* Update Chart.yaml

Signed-off-by: Paul Ayling <paul.ayling@sky.uk>

* Place new argument at end to work with old images

Signed-off-by: Paul Ayling <paul.ayling@sky.uk>

* Update chart appversion and RBAC

Signed-off-by: Paul Ayling <paulayling.dev@gmail.com>

* Apply suggestions from code review

Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
Signed-off-by: Paul Ayling <paulayling.dev@gmail.com>

* Default to Chart AppVersion if tag does not exist

Signed-off-by: Paul Ayling <paulayling.dev@gmail.com>

* Update Chart AppVersion to v1.5.0

Signed-off-by: Paul Ayling <paulayling.dev@gmail.com>

* Update changelog

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>

Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
2021-10-27 17:13:40 +02:00

99 lines
2.1 KiB
YAML

# docker registry
registry: quay.io
# The image pull policy
imagePullPolicy: Always
# Secrets with credentials to pull images from a private registry
imagePullSecrets: []
# - name: argo-pull-secret
# ServiceAccount to use for running controller.
serviceAccount: argo-events-sa
# serviceAccountAnnotations can be used to enable GKE workload identity, or other use-cases
serviceAccountAnnotations: {}
# Create service accounts in additional namespaces specified
# The SA will always be created in the release namespaces
additionalSaNamespaces: []
# - argo-prod
additionalServiceAccountRules:
- apiGroups:
- apiextensions.k8s.io
verbs:
- create
- delete
- deletecollection
- get
- list
- patch
- update
- watch
resources:
- customresourcedefinitions
instanceID: argo-events
# set `singleNamespace` to false to have the controllers
# listen on all namespaces. Otherwise the controllers will listen
# on the namespace provided
namespace: argo-events
singleNamespace: true
# sensor controller
sensorController:
name: sensor-controller
image: argoproj/argo-events
tag: ""
replicaCount: 1
extraEnv: []
# - name: DEBUG_LOG
# value: "true"
sensorImage: argoproj/argo-events
podAnnotations: {}
nodeSelector: {}
podLabels: {}
priorityClassName: ""
tolerations: []
affinity: {}
resources: {}
eventsourceController:
name: eventsource-controller
image: argoproj/argo-events
tag: ""
replicaCount: 1
extraEnv: []
# - name: DEBUG_LOG
# value: "true"
eventsourceImage: argoproj/argo-events
podAnnotations: {}
nodeSelector: {}
podLabels: {}
priorityClassName: ""
tolerations: []
affinity: {}
resources: {}
eventbusController:
name: eventbus-controller
image: argoproj/argo-events
tag: ""
replicaCount: 1
extraEnv: []
# - name: DEBUG_LOG
# value: "true"
podAnnotations: {}
nodeSelector: {}
podLabels: {}
priorityClassName: ""
tolerations: []
affinity: {}
resources: {}
natsStreamingImage: nats-streaming:0.22.1
natsMetricsExporterImage: natsio/prometheus-nats-exporter:0.8.0
securityContext:
runAsNonRoot: true
runAsUser: 9731