-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvalues.yaml
More file actions
1614 lines (1382 loc) · 50.4 KB
/
values.yaml
File metadata and controls
1614 lines (1382 loc) · 50.4 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Default values for Trend Micro Vision One - Container Security.
# This is a YAML-formatted file.
visionOne:
## bootstrap token to be used with Trend Micro Vision One Container Security
##
## Default value: (none)
bootstrapToken:
## endpoint is the url of Trend Micro Vision One Container Security service
## Allows for full endpoint to be provided or the Vision One region (ex: us-1).
##
## Default value: https://api.xdr.trendmicro.com/external/v2/direct/vcs/external/vcs
endpoint: https://api.xdr.trendmicro.com/external/v2/direct/vcs/external/vcs
## Fields for automated cluster registration only
## Cluster name to be used during automated cluster registration. This takes precedence over clusterNamePrefix
## clusterName must be less than 64 characters
##
## Default value: (none)
clusterName:
## Cluster name prefix to be used during automated cluster registration
## clusterNamePrefix must be less than 16 characters
##
## Default value: (none)
clusterNamePrefix:
## Policy ID to be used when registering the cluster. Takes precedence over policy-as-code
##
## Default value: (none)
policyId:
## Group ID used during automated cluster registration. Defaults to the default cluster group
##
## This is required for automated cluster registration
groupId:
## Cluster registration key to be used with Trend Vision One Container Security
##
## Default value: (none)
clusterRegistrationKey: false
exclusion:
## List of namespaces for which events will not be generated.
## This setting helps reduce unnecessary runtime event counts for known privileged components.
##
## Openshift considers the namespaces listed in `osNsPrefixes` as privileged.
## These namespaces are excluded to prevent critical components from being affected by
## admission control policies or mitigation mechanisms.
## Meaning for each prefixes:
## - openshift: Excludes all namespaces with the openshift prefix
## - kube: Excludes all namespaces with the kube prefix
## - default: Excludes default namespace
## - dedicated-admin: Excludes OpenShift's dedicated admin namespace
namespaces:
- kube-system
osNsPrefixes:
- openshift
- kube
- default
- dedicated-admin
scanJobFIPSMode:
## Enable to use the FIPS-compliant scan job image instead of the standard scan job image.
##
## Default value: false
enabled: false
## The digest of the FIPS-compliant scan job image.
## Required when scanJobFIPSMode.enabled is true.
digest: sha256:af7346207631e8815088617665c32f13d1601362df34ec99c6f1de215e7c078f
pdigFIPSMode:
## Enable to use the FIPS-compliant pdig image instead of the standard pdig image.
##
## Default value: false
enabled: false
## The digest of the FIPS-compliant pdig image.
## Required when pdigFIPSMode.enabled is true.
digest: sha256:038af5fb530d28e84d70d557e2ab28b9b2683167e66f714486ba94059f7ef3a4
admissionController:
enabled: true
## validationNamespaceSelector is the namespace selector defined for the validating webhook configuration
##
## For more information about namespace selectors, please see
## https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
## https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/#matching-requests-namespaceselector
validationNamespaceSelector:
matchExpressions:
- key: ignoreAdmissionControl
operator: DoesNotExist
## failurePolicy defines the behavior if an unrecognized error or timeout occurs. Enabling
## this while not tagging kube-system to be ignored can easily cause the cluster to be
## unresponsive.
##
## Default value: Ignore
failurePolicy: Ignore
## When scannerValidation is enabled, admission-controller validates the user who handle scan jobs for runtime vulnerability scanning feature.
## After enabling this, only default scan-manager service account, kube-system components and usernames in the below trustedScanOperators list can handle scan jobs.
##
## Default value: false
scannerValidation: false
## Specify the source of the imagePullSecrets (kubernetes.io/dockerconfigjson secrets) that provide the private registry credentials needed for image signature verification deployment rules.
##
## Supported values are trendMicroNamespace and customerNamespace
## If source is trendMicroNamespace, ensure that the imagePullSecrets have been created in the trendmicro-system namespace.
##
## Default value if enabled is trendMicroNamespace.
readPullSecretsFrom: trendMicroNamespace
## List of K8s usernames that admission-controller will let handle scan jobs pods
##
## Default value:
## - aksService
trustedScanOperators:
- aksService
certificate:
## commonName is the common name to use in the default signed certificate.
##
## Default value:
commonName:
## ipAlternativeNames is a list of IP addresses to include as alternate names.
## in the default signed certificate.
##
## Default value: []
ipAlternativeNames: []
## dnsAlternativeNames is a list of DNS names to include as alternate names
## in the default signed certificate.
##
## Default value: []
dnsAlternativeNames: []
## lifetime is the lifetime in days of the default signed certificate.
##
## Default value: 3650
lifetime: 3650
## webhookTimeoutSeconds defines the timeout used in validating admission webhook.
##
## Default value: 30
webhookTimeoutSeconds: 30
## logLevel sets the log verbosity level. Supported values are debug, info, and error
##
## Default value: info
logLevel: info
gkeAllowlistSynchronizer:
enabled: false
oversight:
enabled: true
## syncPeriod is the time interval that how often Trend Micro Vision One Container Security will evaluate
## the running pods.
##
## Default value: 3600s
## Minimum value: 600s
##
syncPeriod: 3600s
## pageSize is the maximum page size when fetching list of pods.
##
## Default value: 100
## Minimum value: 1
##
pageSize: 100
## logLevel sets the log verbosity level. Supported values are debug, info, and error
##
## Default value: info
logLevel: info
workloadOperator:
## logLevel sets the log verbosity level. Supported values are debug, info, and error
##
## Default value: info
logLevel: info
scanManager:
## Maximum number of scan jobs running at once.
##
## Default value: 5
## Maximum value: 100
## Minimum value: 3
##
maxJobCount: 5
## activeDeadlineSeconds is the maximum duration a scan job can run before timing out.
##
## Default value: 300
##
activeDeadlineSeconds: 300
## malwareScanActiveDeadlineSeconds is the maximum duration a malware scan job can run before timing out.
##
## Default value: 3600
##
malwareScanActiveDeadlineSeconds: 3600
## secretScanActiveDeadlineSeconds is the maximum duration a secret scan job can run before timing out.
##
## Default value: 3600
##
secretScanActiveDeadlineSeconds: 3600
## logLevel sets the log verbosity level. Supported values are debug, info, and error
##
## Default value: info
logLevel: info
runtimeSecurity:
enabled: false
customRules:
rulesetTag: customrule
configmap:
name: ''
ociRepository:
# These fields are subject to change
enabled: false
every: 6h0m0s
ruleFiles: []
artifactUrls: []
basicAuthTokenSecretName: ''
registryCredsSecretName: ''
params:
clusterName: ''
complianceScan:
enabled: true
## activeDeadlineSeconds is the maximum duration a compliance scan job can run before timing out.
##
## Default value: 600
##
activeDeadlineSeconds: 600
vulnerabilityScanning:
enabled: false
fargateInjector:
enabled: false
logLevel: error
certificate:
## commonName is the common name to use in the default signed certificate.
##
## Default value:
commonName:
## ipAlternativeNames is a list of IP addresses to include as alternate names.
## in the default signed certificate.
##
## Default value: []
ipAlternativeNames: []
## dnsAlternativeNames is a list of DNS names to include as alternate names
## in the default signed certificate.
##
## Default value: []
dnsAlternativeNames: []
## lifetime is the lifetime in days of the default signed certificate.
##
## Default value: 3650
lifetime: 3650
## failurePolicy defines the behavior if an unrecognized error or timeout occurs. Enabling
## this while not tagging kube-system to be ignored can easily cause the cluster to be
## unresponsive.
##
## Default value: Ignore
failurePolicy: Ignore
inventoryCollection:
## Minimum value: 5m
## Maximum value: 1d
period: 5m
k8sMetaCollector:
## grpc authentication settings
grpcAuth:
## authentication mode, insecure or tls
type: tls
## certificate settings
certificate:
## lifetime is the lifetime in days of the default signed certificate.
##
## Default value: 3650
lifetime: 3650
## logLevel sets the log verbosity level. Supported values are debug, info, and error
##
## Default value: info
logLevel: info
## malwareScanning is a section that controls the malware scanning feature.
malwareScanning:
enabled: false
excludedPaths: []
scanTimeoutSeconds: 300
# maximum real-time scan events in scout
# Note: increasing this event count may increase memory usage in the Scout DaemonSet
maximumEventCount: 10000
scanner:
## scanner is a section that controls the malware scanner engine.
enableScanCache: false
scanLog: false
port: 50051
logLevel: info
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 2
targetCPUUtilization: 800
readinessProbe:
tcpSocket:
port: 50051
initialDelaySeconds: 10
## secretScanning is a section that controls the secret scanning feature
secretScanning:
enabled: false
## maxFileSize is the maximum file size in bytes that will be scanned
##
## Default value: 2097152
maxFileSize: 2097152 # Bytes
## scanTimeoutSeconds is the maximum duration a secret scan job can run before timing out.
##
## Default value: 300
scanTimeoutSeconds: 300
## fileIntegrityMonitoring is a section that controls the file integrity monitoring feature
fileIntegrityMonitoring:
enabled: false
## sweepInterval is the time interval at which FIM will refresh containers
sweepInterval: 1m
auditLogCollector:
## logLevel sets the log verbosity level. Supported values are debug, info, and error
##
## Default value: info
logLevel: info
## webhookPort is the port for the audit webhook endpoint
## Used by Falco to receive K8s audit logs
##
## Default value: 8030
webhookPort: 8030
## ringBufferSize is the size of the event ring buffer
## Only set this if you need to override the default value
##
## Default value: 10000
# ringBufferSize: 10000
## uploadBatchSize is the number of events to upload in a batch
## Only set this if you need to override the default value
##
## Default value: 10
# uploadBatchSize: 10
## uploadInterval is the interval between batch uploads
## Only set this if you need to override the default value
##
## Default value: 5s
# uploadInterval: 5s
apiServerModifier:
## logLevel sets the log verbosity level. Supported values are debug, info, and error
##
## Default value: info
logLevel: info
## failurePolicy defines the behavior if an unrecognized error or timeout occurs.
## For Gardener seed cluster deployment, use "Fail" to ensure audit configuration is always injected.
##
## Default value: Fail
failurePolicy: Fail
## webhookTimeoutSeconds defines the timeout used in mutating webhook.
##
## Default value: 30
webhookTimeoutSeconds: 30
## tlsConfig contains TLS configuration for the API server modifier webhook
tlsConfig:
## minTLSVersion is the minimum TLS version that the server will accept.
## Value must match version names from https://golang.org/pkg/crypto/tls/#pkg-constants.
##
## Default value: VersionTLS12
minTLSVersion: VersionTLS12
## cipherSuites is a list of supported secure go cipher suites for TLS 1.2 and 1.3.
##
## Default value: List of secure cipher suites
cipherSuites:
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
certificate:
## commonName is the common name to use in the default signed certificate.
##
## Default value:
commonName:
## ipAlternativeNames is a list of IP addresses to include as alternate names.
## in the default signed certificate.
##
## Default value: []
ipAlternativeNames: []
## dnsAlternativeNames is a list of DNS names to include as alternate names
## in the default signed certificate.
##
## Default value: []
dnsAlternativeNames: []
## lifetime is the lifetime in days of the default signed certificate.
##
## Default value: 3650
lifetime: 3650
## metricsPort is the port for the metrics endpoint
##
## Default value: 8040
metricsPort: 8040
## healthProbePort is the port for the health probe endpoint
##
## Default value: 8050
healthProbePort: 8050
## webhookPort is the port for the mutating webhook endpoint
##
## Default value: 8060
webhookPort: 8060
policyOperator:
## reconciliationPeriod is the time interval at which policy operator will reconcile the custom resources
## Minimum value: 5m
## Maximum value: 1h
reconciliationPeriod: 5m
## policySyncInterval is the time interval at which policy operator will sync the policy config from vision one
## Minimum value: 1m
## Maximum value: 1h
policySyncInterval: 5m
## clusterPolicyName is the name of the policy that will be reconciled by the policy operator
## Only one policy can be reconciled by the policy operator and applied to the cluster
## Use the name defined here as the name of the cluster policy custom resource
## The policy name will also be used as vision one policy name
##
## Default value: trendmicro-cluster-policy
clusterPolicyName: trendmicro-cluster-policy
## logLevel sets the log verbosity level. Supported values are debug, info, and error
##
## Default value: info
logLevel: info
## enableNetworkPolicyCreation allows policy operator to create the Kubernetes network policy if it doesn't exist.
## The created network policy is used to perform `isolate` mitigation. The created network policy will not be cleaned up automatically.
##
## Default value: true
##
enableNetworkPolicyCreation: true
## enableRuntimeMitigation allows policy operator to apply runtime mitigation to the pods that violate the policy.
## Mitigation sources can include runtime security, malware scans and continuous evaluation of pod spec.
## Supported mitigation types are: Terminate, Isolate, and IsolateRestore
##
## Default value: true
##
enableRuntimeMitigation: true
## servicePort is the port that the policy operator will run the http server on to serve the policy config and handle the mitigation requests
##
## Default value: 8070
servicePort: 8070
## metricsPort is the port for the metrics endpoint
##
## Default value: 8080
metricsPort: 8080
## healthProbePort is the port for the health probe endpoint
##
## Default value: 8090
healthProbePort: 8090
experimental:
## enable the experimental features. Experimental features are not supported in production environments,
## considered unstable and may be removed or changed in future releases.
enabled: false
## Audit Log Collection Configuration
## Enables collection of Kubernetes API server audit logs for RBAC tracking
auditLogCollection:
## enabled controls whether audit log collection is enabled
##
## Default value: false
enabled: false
## provider specifies the audit log provider type
## Supported values: selfManaged, eks, aks, gke, gardener
##
## Default value: ""
provider: ""
gardener:
## seedCluster determines whether this is a Gardener seed cluster deployment
## When true: deploys only seed cluster components (audit-log-collector, api-server-modifier, policy-operator)
## When false: deploys standard V1CS components with audit log collection enabled
##
## Default value: false
seedCluster: false
## CRD Installation Configuration for Seed Cluster
## Only applies when seedCluster is true
crds:
## install controls whether CRDs are created in seed cluster mode
## When true: CRDs are installed only if they don't already exist (auto-detection via lookup)
## When false: CRDs are never installed (force skip)
## In non-seed-cluster mode, CRDs are always installed regardless of this setting
##
## Default value: true
install: true
selfManaged:
## apiServerManifestPath is the path to the kube-apiserver static pod manifest
## Only used when provider is selfManaged
##
## Default value: /etc/kubernetes/manifests/kube-apiserver.yaml
apiServerManifestPath: "/etc/kubernetes/manifests/kube-apiserver.yaml"
## auditConfigPath is the directory where audit configuration files will be written
## Only used when provider is selfManaged
##
## Default value: /etc/kubernetes/audit
auditConfigPath: "/etc/kubernetes/audit"
eks:
## AWS region where the EKS cluster is located
## Required when provider is eks
##
## Default value: ""
region: ""
## EKS cluster name
## Required when provider is eks
##
## Default value: ""
clusterName: ""
aks:
## Azure Event Hub namespace connection string
## Required when provider is aks
##
## Default value: ""
eventHubConnectionString: ""
## Azure Event Hub name
## Required when provider is aks
##
## Default value: ""
eventHubName: ""
## Azure Blob Storage connection string
## Required when provider is aks
##
## Default value: ""
blobStorageConnectionString: ""
## Azure Blob Storage container name
## Required when provider is aks
##
## Default value: ""
blobStorageContainerName: ""
gke:
## GCP project ID
## Required when provider is gke
##
## Default value: ""
gcpProjectId: ""
## Pub/Sub subscription name for audit logs
## Required when provider is gke
##
## Default value: ""
pubSubSubscription: ""
## GCP service account name for Workload Identity
## Required when provider is gke
##
## Default value: ""
serviceAccount: ""
spc:
## enable the container security mode for Vision One Sovereign Private Cloud
enabled: false
## policySyncInterval is the time interval at which policy operator will sync the policy config from vision one
## Minimum value: 10s
## Maximum value: 5m
policySyncInterval: 1m
## encryptionKey is the key for encryption when spc is enabled
##
## Default value: (none)
encryptionKey:
securityContextConstraints:
# enable the Security Context Constraints creation in Openshift
create: true
serviceAccount:
## enable the service account creation. Each component with specific permission will use individual service account.
## If set to false, the default service account will be used, which might not have sufficient permission and introduce the failure.
##
## Default value: true
create: true
admissionController:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of admissionController template
name: ''
## Annotations to add to the service account
annotations: {}
oversight:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of oversight template
name: ''
## Annotations to add to the service account
annotations: {}
## Size of the buffer that will receive mitigation requests
##
## Default value: 50
mitigationHandlerBufferSize: 50
## Security context constraints to add to the service account
securityContextConstraints:
allowHostDirVolumePlugin: false
allowHostIPC: false
allowHostNetwork: false
allowHostPID: false
allowHostPorts: false
allowPrivilegedContainer: false
allowedCapabilities: []
apiVersion: security.openshift.io/v1
defaultAddCapabilities: []
kind: SecurityContextConstraints
priority:
readOnlyRootFilesystem: false
requiredDropCapabilities: []
runAsUser:
type: RunAsAny
seLinuxContext:
type: MustRunAs
supplementalGroups:
type: RunAsAny
seccompProfiles:
- '*'
usage:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of usage template
name: ''
## Annotations to add to the service account
annotations: {}
scout:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of scout template
name: ''
## Annotations to add to the service account
annotations: {}
scanManager:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of scanManager template
name: ''
## Annotations to add to the service account
annotations: {}
scanJob:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of scanJob template
name: ''
## Annotations to add to the service account
annotations: {}
complianceScanJob:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of complianceScanJob template
name: ''
## Annotations to add to the service account
annotations: {}
workloadOperator:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of jobManager template
name: ''
## Annotations to add to the service account
annotations: {}
fargateInjector:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of scout template
name: ''
## Annotations to add to the service account
annotations: {}
k8sMetaCollector:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of k8sMetaCollector template
name: ''
## Annotations to add to the service account
annotations: {}
policyOperator:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of policyOperator template
name: ''
## Annotations to add to the service account
annotations: {}
malwareScanner:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of malwareScanner template
name: ''
## Annotations to add to the service account
annotations: {}
runtimeRuleloader:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of runtimeRuleloader template
name: ''
## Annotations to add to the service account
annotations: {}
auditLogCollector:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of auditLogCollector template
name: ''
## Annotations to add to the service account
annotations: {}
apiServerModifier:
## The name of the service account to use.
## If not set and create is true, a name is generated using the fullname of apiServerModifier template
name: ''
## Annotations to add to the service account
annotations: {}
rbac:
# Create and use rbac resources
create: true
networkPolicy:
## enabled the network policy.
##
## Default value: true
enabled: true
## k8s-metacollector network policy, default false
k8sMetaCollector:
enabled: false
## malwareScanner network policy, default false
malwareScanner:
enabled: false
## securityContext specifies the security contexts that we'll apply to the pods.
##
## To use on bottlerocket, set
## securityContext.scout.scout.allowPrivilegeEscalation=true
## securityContext.scout.scout.privileged=true
securityContext:
## enabled is a global flag controlling whether security contexts are included at all in the manifest
## Default value: true
enabled: true
## default is the default security context that we'll apply at the pod and container level.
## if `securityContext.enabled` is true, the `pod` value will be inserted into the `Deployment` manifest
## as part of the pod template and the `container` value will be inserted at the container level.
default:
pod:
runAsNonRoot: true
container:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
privileged: false
readOnlyRootFilesystem: true
runAsNonRoot: true
# seLinuxOptions: "If unspecified, the container runtime will allocate a random SELinux context for each container": this seems appropriate.
runAsUser: 65532 # nonroot user
scanner:
pod:
runAsNonRoot: true
target:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
add: []
privileged: false
readOnlyRootFilesystem: true
runAsNonRoot: false
runAsUser: 0 #root user
init:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
privileged: false
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 65532 # nonroot user
scout:
pod:
runAsNonRoot: true
scout:
allowPrivilegeEscalation: true
capabilities:
drop:
- ALL
add:
- SYS_PTRACE
- SYS_ADMIN
- DAC_READ_SEARCH
privileged: false
readOnlyRootFilesystem: true
runAsNonRoot: false
runAsUser: 0
downloader:
privileged: true
readOnlyRootFilesystem: true
runAsNonRoot: false
runAsUser: 0
falco:
privileged: true
readOnlyRootFilesystem: true
runAsNonRoot: false
runAsUser: 0
malwareScanner:
pod:
runAsNonRoot: false
scanner:
privileged: false
runAsNonRoot: false
runAsUser: 0
runtimeRuleloader:
pod:
runAsNonRoot: false
ruleloader:
privileged: false
runAsNonRoot: false
runAsUser: 0
auditLogCollector:
pod:
runAsNonRoot: false
seccompProfile:
type: RuntimeDefault
container:
falco:
privileged: false
readOnlyRootFilesystem: true
runAsNonRoot: false
runAsUser: 0
auditLogCollector:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
privileged: false
readOnlyRootFilesystem: true
runAsNonRoot: false
runAsUser: 0
proxy:
## httpProxy, if set, will be used as the proxy for outbound HTTP traffic.
##
## The value may be either a complete URL, a `http://host[:port]` when using a http proxy, or `socks5://host[:port]` when using a socks proxy
##
## Default value: (none)
httpProxy:
## httpsProxy, if set, will be used as the proxy for outbound HTTPS traffic.
## If `httpsProxy` is not set, `httpProxy`
## is also checked and will be used if set.
##
## The value may be either a complete URL, a `http://host[:port]` when using a http proxy, or `socks5://host[:port]` when using a socks proxy
##
## Default value: (none)
httpsProxy:
## noProxy is a comma-separated list of hosts or CIDR blocks that should not be proxied.
##
## The value may be a comma-separated list of hosts or CIDR blocks. Ex: "localhost,127.0.0.0/8"
##
## Default value: (none)
noProxy:
## username, if set, is the user name to provide to the outbound proxy when making requests.
##
## Default value: (none)
username:
## password, if set, is the password to provide to the outbound proxy when making requests.
##
## Default value: (none)
password:
## If set to true, Container Security Controllers will not use a proxy when communicating with the Kubernetes service host
##
## Default value: true
excludeKubernetesServiceHost: true
## self signed certificates, if set, the self signed certificates will be add the in-cluster component's /etc/ssl/certs/ folder
##
## Default value: (none)
selfSignedCertificates:
# Mount a single file from the host node into the container
# - name: host-file-cert # Unique volume name
# type: hostPath # Use "hostPath" to mount a file or directory from the host
# path: /root/host-path.crt # Absolute path to the certificate file or directory on the host
# Mount a specific key from a Kubernetes Secret as a file into the container
# - name: secret-cert # Unique volume name
# type: secret # Use "secret" to reference a Kubernetes Secret
# secretName: my-cert-secret # Name of the Kubernetes Secret
# key: secret.crt # Key in the Secret to mount (mounted as /etc/ssl/certs/secret.crt)
# Mount a specific key from a ConfigMap as a file into the container
# - name: config-map-cert # Unique volume name
# type: configMap # Use "configMap" to reference a Kubernetes ConfigMap
# configMapName: my-cert-config # Name of the Kubernetes ConfigMap
# key: config-map.crt # Key in the ConfigMap to mount (mounted as /etc/ssl/certs/config-map.crt)
logConfig:
## devel sets the log mode defaults to development mode if set to true
## Development mode defaults encoder=consoleEncoder,logLevel=Debug,stackTraceLevel=Warn)
## Production Mode defaults(encoder=jsonEncoder,logLevel=Info,stackTraceLevel=Error)
devel: false
## logLevel sets the log verbosity level. Supported values are debug, info, and error
## Overrides the logLevel set for each component
##
## Default value:
logLevel:
## encoder sets the log encoder. Supported values are json and console
##
## Default value: json
encoder: json
## stackTraceLevel sets the level above which stacktraces are captured
## Supported values are info, error or panic
##
## Default value: error
stacktraceLevel: error
## timeEncoding sets the time encoding format
## Supported values are epoch, millis, nano, iso8601, rfc3339 or rfc3339nano
##
## Default value: rfc3339
timeEncoding: rfc3339