forked from falcosecurity/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
68 lines (57 loc) · 2.17 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Default values for event-generator.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# -- Number of replicas of the event-generator (meaningful when installed as a deployment).
replicasCount: 1
image:
# -- Repository from where the image is pulled.
repository: falcosecurity/event-generator
# -- Pull policy for the event-generator image
pullPolicy: IfNotPresent
# -- Images' tag to select a development/custom version of event-generator instead of a release.
# Overrides the image tag whose default is the chart appVersion.
tag: "latest"
# -- Secrets used to pull the image from a private repository.
imagePullSecrets: []
# -- Used to override the chart name.
nameOverride: ""
# -- Used to override the chart full name.
fullnameOverride: ""
# -- Annotations to be added to the pod.
podAnnotations: {}
# -- Security context for the pod.
podSecurityContext: {}
# fsGroup: 2000
# -- Security context for the containers.
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
# -- Selectors to choose a given node where to run the pods.
nodeSelector: {}
# -- Tolerations to allow the pods to be scheduled on nodes whose taints the pod tolerates.
tolerations: []
# -- Affinity, like the nodeSelector but with more expressive syntax.
affinity: {}
config:
# -- The event-generator accepts two commands (run, test):
# run: runs actions.
# test: runs and tests actions.
# For more info see: https://github.com/falcosecurity/event-generator.
command: run
# -- Regular expression used to select the actions to be run.
actions: "^syscall"
# -- Runs in a loop the actions.
# If set to "true" the event-generator is deployed using a k8s deployment otherwise a k8s job.
loop: true
# -- The length of time to wait before running an action. Non-zero values should contain
# a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means no sleep. (default 100ms)
sleep: ""
grpc:
# -- Set it to true if you are deploying in "test" mode.
enabled: false
# -- Path to the Falco grpc socket.
bindAddress: "unix:///var/run/falco/falco.sock"