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
+45
View File
@@ -0,0 +1,45 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: relay
namespace: netbird
spec:
replicas: 1
selector:
matchLabels:
app: relay
template:
metadata:
labels:
app: relay
spec:
containers:
- name: relay
image: netbirdio/relay:latest
env:
- name: NB_LOG_LEVEL
value: "info"
- name: NB_LISTEN_ADDRESS
value: ":33073"
- name: NB_EXPOSED_ADDRESS
value: "rels://netbird.archfox.org:443/relay"
- name: NB_AUTH_SECRET
valueFrom:
secretKeyRef:
name: netbird-secrets
key: relay-auth-secret
ports:
- containerPort: 33073
---
apiVersion: v1
kind: Service
metadata:
name: relay
namespace: netbird
spec:
selector:
app: relay
ports:
- name: relay
port: 33073
targetPort: 33073