argocd-helm/charts/argo-events/values.yaml

154 lines
4.8 KiB
YAML
Raw Permalink Normal View History

# -- docker registry
registry: quay.io
2019-02-13 22:14:36 +00:00
# -- The image pull policy
2018-08-03 08:18:31 +00:00
imagePullPolicy: Always
# -- Secrets with credentials to pull images from a private registry
imagePullSecrets: []
# - name: argo-pull-secret
# -- ServiceAccount to use for running controller.
2019-02-13 22:14:36 +00:00
serviceAccount: argo-events-sa
# -- Annotations applied to created service account. 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
# -- Additional rules
# @default -- (See [values.yaml])
additionalServiceAccountRules:
- apiGroups:
- apiextensions.k8s.io
verbs:
- create
- delete
- deletecollection
- get
- list
- patch
- update
- watch
resources:
- customresourcedefinitions
2019-02-13 22:14:36 +00:00
# -- Whether to run in namespaced scope.
# Set `singleNamespace` to false to have the controllers
# listen on all namespaces. Otherwise the controllers will listen
# on the namespace where the chart is installed in.
singleNamespace: true
2018-08-03 08:18:31 +00:00
2019-02-13 22:14:36 +00:00
# sensor controller
sensorController:
# -- Sensor controller name
2018-08-03 08:18:31 +00:00
name: sensor-controller
# -- Repository to use for the sensor controller
image: argoproj/argo-events
# -- Overrides the image tag
# @default -- `""` (default is the chart appVersion)
tag: ""
# -- The number of sensor controller pods to run
2018-08-03 08:18:31 +00:00
replicaCount: 1
# -- Additional environment variables to pass to sensor controller
extraEnv: []
# - name: DEBUG_LOG
# value: "true"
# -- Repository to use for the sensor image
sensorImage: argoproj/argo-events
# -- Annotations to be added to sensor controller pods
podAnnotations: {}
# -- [Node selector]
nodeSelector: {}
# -- Labels to be added to sensor controller pods
podLabels: {}
# -- Priority class for the sensor controller
priorityClassName: ""
# -- [Tolerations] for use with node taints
tolerations: []
# -- Assign custom [affinity] rules to the sensor controller
affinity: {}
# -- Resource limits and requests for the sensor controller pods
resources: {}
# -- Sensor controllers container-level security context
containerSecurityContext: {}
2018-08-03 08:18:31 +00:00
2020-07-24 22:28:01 +00:00
eventsourceController:
# -- Event source controller name
2020-07-24 22:28:01 +00:00
name: eventsource-controller
# -- Repository to use for the event source controller
image: argoproj/argo-events
# -- Overrides the image tag
# @default -- `""` (default is the chart appVersion)
tag: ""
# -- The number of event source controller pods to run
2019-02-13 22:14:36 +00:00
replicaCount: 1
# -- Additional environment variables to pass to event source controller
extraEnv: []
# - name: DEBUG_LOG
# value: "true"
# -- Repository to use for the event source image
eventsourceImage: argoproj/argo-events
# -- Annotations to be added to event source controller pods
podAnnotations: {}
# -- [Node selector]
nodeSelector: {}
# -- Labels to be added to event source controller pods
podLabels: {}
# -- Priority class for the event source controller
priorityClassName: ""
# -- [Tolerations] for use with node taints
tolerations: []
# -- Assign custom [affinity] rules to the event source controller
affinity: {}
# -- Resource limits and requests for the event source controller pods
resources: {}
# -- Event source controller container-level security context
containerSecurityContext: {}
2020-07-24 22:28:01 +00:00
eventbusController:
# -- Event bus controller name
2020-07-24 22:28:01 +00:00
name: eventbus-controller
# -- Repository to use for the event bus controller
image: argoproj/argo-events
# -- Overrides the image tag
# @default -- `""` (default is the chart appVersion)
tag: ""
# -- The number of event bus controller pods to run
2020-07-24 22:28:01 +00:00
replicaCount: 1
# -- Additional environment variables to pass to event bus controller
extraEnv: []
# - name: DEBUG_LOG
# value: "true"
# -- Annotations to be added to event bus controller pods
podAnnotations: {}
# -- [Node selector]
nodeSelector: {}
# -- Labels to be added to event event bus controller pods
podLabels: {}
# -- Priority class for the event bus controller
priorityClassName: ""
# -- [Tolerations] for use with node taints
tolerations: []
# -- Assign custom [affinity] rules to the event bus controller
affinity: {}
# -- Resource limits and requests for the event bus controller pods
resources: {}
# -- NATS streaming container image to use for the event bus
natsStreamingImage: nats-streaming:0.22.1
# -- NATS metrics exporter container image to use for the event bus
natsMetricsExporterImage: natsio/prometheus-nats-exporter:0.8.0
# -- Event bus controller container-level security context
containerSecurityContext: {}
# -- Common PodSecurityContext for all controllers
securityContext:
runAsNonRoot: true
runAsUser: 9731