Skip to content
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
4 changes: 2 additions & 2 deletions charts/agent/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ spec:
{{- if and (not .Values.slim.enabled) (not (include "agent.gke.autopilot" .)) }}
- mountPath: /host/sys/fs
name: sysfs-vol
readOnly: true
- mountPath: /etc/modprobe.d
name: modprobe-d
readOnly: true
Expand Down Expand Up @@ -330,6 +331,7 @@ spec:
name: varrun-vol
- mountPath: /host/sys/fs
name: sysfs-vol
readOnly: true
{{- if (include "agent.ebpfEnabled" .) }}
- mountPath: /root/.sysdig
name: bpf-probes
Expand Down Expand Up @@ -436,7 +438,6 @@ spec:
{{- /* Slim = false, Autopilot = false */}}
{{- if and (not .Values.slim.enabled) (not (include "agent.gke.autopilot" .)) }}
- name: sysfs-vol
readOnly: true
hostPath:
path: /sys/fs
- name: modprobe-d
Expand Down Expand Up @@ -472,7 +473,6 @@ spec:
{{- /* Slim = true, Autopilot = false */}}
{{- if and (.Values.slim.enabled) (not (include "agent.gke.autopilot" .)) }}
- name: sysfs-vol
readOnly: true
hostPath:
path: /sys/fs
- name: modprobe-d
Expand Down
2 changes: 1 addition & 1 deletion charts/shield/templates/host/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ spec:
name: varrun-vol
- mountPath: /host/sys/fs
name: sysfs-vol
readOnly: true
{{- if (include "host.driver.is_ebpf" .) }}
- mountPath: /root/.sysdig
name: bpf-probes
Expand Down Expand Up @@ -273,7 +274,6 @@ spec:
{{- /* Autopilot = false */}}
{{- if not (include "common.cluster_type.is_gke_autopilot" .) }}
- name: sysfs-vol
readOnly: true
hostPath:
path: /sys/fs
- name: modprobe-d
Expand Down
Loading