Skip to content
Open
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: 3 additions & 4 deletions recipes/beyla-golden-signals/gke/beyla-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ spec:
metadata:
labels:
app: beyla
annotations:
# allow beyla to write to /sys/fs/bpf by setting the
# apparmor policy to unconfined.
container.apparmor.security.beta.kubernetes.io/beyla: "unconfined"
spec:
serviceAccountName: beyla
hostPID: true
Expand Down Expand Up @@ -66,6 +62,9 @@ spec:
memory: 100Mi
image: grafana/beyla:1.8.6
securityContext:
# Allow Beyla to write to /sys/fs/bpf.
appArmorProfile:
type: Unconfined
seccompProfile:
type: RuntimeDefault
runAsUser: 0
Expand Down
7 changes: 3 additions & 4 deletions recipes/beyla-service-graph/beyla-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ spec:
metadata:
labels:
app: beyla
annotations:
# allow beyla to write to /sys/fs/bpf by setting the
# apparmor policy to unconfined.
container.apparmor.security.beta.kubernetes.io/beyla: "unconfined"
spec:
serviceAccountName: beyla
hostPID: true
Expand Down Expand Up @@ -66,6 +62,9 @@ spec:
memory: 100Mi
image: grafana/beyla:1.8.6
securityContext:
# Allow Beyla to write to /sys/fs/bpf.
appArmorProfile:
type: Unconfined
seccompProfile:
type: RuntimeDefault
runAsUser: 0
Expand Down
Loading