-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enable falcobaseline for agent version 12.9.x and above
- Loading branch information
Showing
5 changed files
with
88 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
suite: Testing seetings for secure light mode | ||
templates: | ||
- configmap.yaml | ||
tests: | ||
- it: Testing if certain settings set to false for agent version =< 12.18.x | ||
set: | ||
image: | ||
tag: 12.18.1 | ||
sysdig: | ||
accessKey: AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE | ||
settings: | ||
feature: | ||
mode: secure_light | ||
secure: | ||
enabled: true | ||
asserts: | ||
- matchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
drift_control: | ||
enabled: false | ||
- matchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
drift_killer: | ||
enabled: false | ||
- matchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
falcobaseline: | ||
enabled: false | ||
- matchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
memdump: | ||
enabled: false | ||
- matchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
network_topology: | ||
enabled: false | ||
template: configmap.yaml | ||
|
||
- it: Testing if certain settings set to false for agent version > 12.18.x | ||
set: | ||
image: | ||
tag: 12.19.0 | ||
sysdig: | ||
accessKey: AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE | ||
settings: | ||
feature: | ||
mode: secure_light | ||
secure: | ||
enabled: true | ||
asserts: | ||
- notMatchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
drift_control: | ||
enabled: false | ||
- notMatchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
drift_killer: | ||
enabled: false | ||
- notMatchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
falcobaseline: | ||
enabled: false | ||
- matchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
memdump: | ||
enabled: false | ||
- matchRegex: | ||
path: data['dragent.yaml'] | ||
pattern: |- | ||
network_topology: | ||
enabled: false | ||
template: configmap.yaml |