This commit is contained in:
2026-07-21 17:58:58 -05:00
parent 106cf13597
commit 9b5af62a47
13 changed files with 377 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: coturn
namespace: netbird
spec:
selector:
matchLabels:
app: coturn
template:
metadata:
labels:
app: coturn
spec:
hostNetwork: true
containers:
- name: coturn
image: coturn/coturn
args:
- --log-file=stdout
- --external-ip=archfox.org
- --listening-port=3478
- --min-port=49152
- --max-port=65535
- --tls-listening-port=5349
- --no-tls
- --no-dtls
- --realm=netbird.archfox.org
securityContext:
capabilities:
add: ["NET_BIND_SERVICE"]