32 lines
709 B
YAML
32 lines
709 B
YAML
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"]
|