added deconz

This commit is contained in:
2025-11-24 11:56:37 +00:00
parent 8fabf66ad4
commit 3e7485d1e0
3 changed files with 46 additions and 1 deletions
+40
View File
@@ -0,0 +1,40 @@
---
kind: Pod
apiVersion: v1
metadata:
name: dconz
namespace: dconz
spec:
containers:
- name: dconz
image: marthoc/deconz
tty: true
stdin: true
command: ["/bin/sh"]
securityContext:
privileged: true
env:
- name: DECONZ_DEVICE
value: /dev/ttyACM0
volumeMounts:
- name: conbee
mountPath: /dev/ttyACM0
- name: dconzrc
mountPath: /root/.local/share/dresden-elektronik/deCONZ
- name: localtime
mountPath: /etc/localtime
readOnly: true
volumes:
- name: conbee
hostPath:
path: /dev/ttyACM0
- name: dconzrc
hostPath:
path: /home/luke/.local/share/dresden-elektronik/deCONZ
type: DirectoryOrCreate
- name: localtime
hostPath:
path: /etc/localtime
restartPolicy: Always
nodeSelector:
kubernetes.io/arch: arm64
+5
View File
@@ -0,0 +1,5 @@
---
apiVersion: v1
kind: Namespace
metadata:
name: dconz