* added crds directory for helm 3 compability * added eventsource-crd for helm2 * updated image tags to newer version, added new property for additionalRules for compability * updated SA Rules to match installation yaml from events repo * introduced shortnames to match upstream crds * updated env var names to match events installation yml from upstream repo * updated chart and app version
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
# docker registry
|
|
registry: argoproj
|
|
|
|
# The image pull policy
|
|
imagePullPolicy: Always
|
|
|
|
# If set to false, skip installing the CRDs. Requires user to have them installed prior to helm chart installation.
|
|
installCRD: true
|
|
|
|
# ServiceAccount to use for running controller.
|
|
serviceAccount: argo-events-sa
|
|
|
|
# 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
|
|
- apiextensions.k8s.io/v1beta1
|
|
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: sensor-controller
|
|
tag: v0.12
|
|
replicaCount: 1
|
|
|
|
gatewayController:
|
|
name: gateway-controller
|
|
image: gateway-controller
|
|
tag: v0.12
|
|
replicaCount: 1
|