Skip to content

Commit

Permalink
chore(qbittorrent): add netshoot container
Browse files Browse the repository at this point in the history
  • Loading branch information
jfroy committed Nov 7, 2024
1 parent eb2da14 commit e2e1ece
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions kubernetes/apps/default/qbittorrent/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@ spec:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities: { drop: ["ALL"] }
netshoot:
image:
repository: nicolaka/netshoot
tag: latest
pullPolicy: Always
command: ["/bin/bash"]
args: ["-c", "while true; do ping localhost; sleep 60; done"]
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
capabilities: { add: ["NET_ADMIN", "NET_RAW"] }
initContainers:
gluetun:
image:
Expand Down

0 comments on commit e2e1ece

Please sign in to comment.