apiVersion: apps/v1 kind: Deployment metadata: name: netbird-server namespace: netbird spec: replicas: 1 selector: matchLabels: app: netbird-server template: metadata: labels: app: netbird-server spec: containers: - name: netbird-server image: netbirdio/netbird-server:latest args: ["--config", "/etc/netbird/config.yaml"] ports: - containerPort: 80 - containerPort: 3479 protocol: UDP - containerPort: 33073 volumeMounts: - name: config mountPath: /etc/netbird - name: data mountPath: /var/lib/netbird volumes: - name: config configMap: name: netbird-server-config - name: data persistentVolumeClaim: claimName: netbird-data --- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: netbird-data namespace: netbird spec: accessModes: - ReadWriteOnce resources: requests: storage: 2Gi --- apiVersion: v1 kind: Service metadata: name: netbird-server namespace: netbird spec: selector: app: netbird-server ports: - name: http port: 80 targetPort: 80 - name: grpc-compat port: 33073 targetPort: 33073 - name: stun port: 3479 targetPort: 3479 protocol: UDP