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

Fix sysdig-agent common path #529

Merged
merged 1 commit into from
May 12, 2024
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
7 changes: 7 additions & 0 deletions clusters/common/sysdig-agent/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: sysdig-agent
resources:
- namespace.yml
- release.yml
4 changes: 4 additions & 0 deletions clusters/common/sysdig-agent/namespace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: sysdig-agent
77 changes: 77 additions & 0 deletions clusters/common/sysdig-agent/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: sysdig-deploy
namespace: sysdig-agent
spec:
interval: 15m
chart:
spec:
chart: sysdig-deploy
sourceRef:
kind: HelmRepository
name: sysdig-charts
namespace: flux-system
interval: 15m
install:
createNamespace: true
remediation:
retries: 5
upgrade:
remediation:
retries: 5
values:
global:
sysdig:
accessKeySecret: "sysdig-agent"
secureAPITokenSecret: "sysdig-agent-api"
image:
registry: quay.io

admissionController:
enabled: true
features:
k8sAuditDetections: true
kspmAdmissionController: true
scanner:
enabled: false

agent:
enabled: true
psp:
create: false
sysdig:
settings:
app_checks_enabled: false
jmx:
enabled: false
log:
rotate: 20
max_size: 20
console_priority: warning
file_priority: debug
file_priority_by_component:
- "promscrape: warning"
- "promscrape:prom_emitter: warning"
- "watchdog_runnable: warning"
- "sdjagent: warning"
- "mountedfs_reader: warning"
enrich_with_process_lineage: true
prometheus:
enabled: true
prom_service_discovery: true

nodeAnalyzer:
enabled: true
psp:
create: false

kspmCollector:
psp:
create: false

rapidResponse:
enabled: false
rapidResponse:
existingPassphraseSecret: "sysdig-rapid-response"
Loading