Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: remove memdump from vars schema #26

Merged
merged 1 commit into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ features:
captures: ~
drift_detection: ~
falcobaseline: ~
memdump: ~
configuration:
monitoring: standard
security: standard
Expand Down
8 changes: 1 addition & 7 deletions filter_plugins/dragent.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,6 @@ def drift_detection(self) -> dict:
def falcobaseline(self) -> dict:
return self._features.get("falcobaseline", {})

@property
def memdump(self) -> dict:
return self._features.get("memdump", {})


class UserConnectionSettings(UserSettings):
@property
Expand Down Expand Up @@ -187,7 +183,6 @@ def generate(self) -> dict:
"drift_control",
"drift_killer",
"falcobaseline",
"memdump",
"network_topology",
"secure_audit_streams"
])
Expand All @@ -196,12 +191,11 @@ def generate(self) -> dict:
"drift_control",
"drift_killer",
"falcobaseline",
"memdump",
"network_topology"
])

res = self._get_config(["commandlines_capture", "drift_detection",
"falcobaseline", "memdump", "secure_audit_streams"])
"falcobaseline", "secure_audit_streams"])
res.update({feature: {"enabled": False} for feature in disabled_features})
return res

Expand Down
4 changes: 0 additions & 4 deletions meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,3 @@ argument_specs:
type: dict
required: false
description: "Sysdig Secure Falco Baseliner configuration"
memdump:
type: dict
required: false
description: "Sysdig Secure Memdump configuration"