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(shield): allow ebpf on gke autopilot #2076

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion charts/shield/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ maintainers:
- name: mavimo
email: [email protected]
type: application
version: 0.6.4
version: 0.6.5
appVersion: "1.0.0"
8 changes: 1 addition & 7 deletions charts/shield/templates/host/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ spec:
- mountPath: /host/etc/os-release
name: osrel
readOnly: true
- mountPath: /root/.sysdig
name: bpf-probes
{{- end }}
{{- end }}
containers:
Expand All @@ -123,7 +121,7 @@ spec:
- name: SYSDIG_BPF_PROBE
value:
{{- end }}
{{- if and (include "host.driver.is_universal_ebpf" .) (not (include "common.cluster_type.is_gke_autopilot" .)) }}
{{- if (include "host.driver.is_universal_ebpf" .) }}
- name: SYSDIG_AGENT_DRIVER
value: universal_ebpf
{{- else if and (include "host.driver.is_legacy_ebpf" .) (not (include "common.cluster_type.is_gke_autopilot" .)) }}
Expand Down Expand Up @@ -210,8 +208,6 @@ spec:
readOnly: true
- mountPath: /host/var/run/containerd/containerd.sock
name: containerdsock-vol
- mountPath: /root/.sysdig
name: bpf-probes
{{- end }}

{{- if (include "host.need_host_root" .) }}
Expand Down Expand Up @@ -309,8 +305,6 @@ spec:
- name: osrel
hostPath:
path: /etc/os-release
- name: bpf-probes
emptyDir: {}
- name: containerdsock-vol
hostPath:
path: /var/run/containerd/containerd.sock
Expand Down
Loading