homeassistant config

This commit is contained in:
Roger Oriol
2026-01-27 23:56:19 +01:00
parent 356aa99f7b
commit ce641db91f
2 changed files with 20 additions and 8 deletions

Submodule gym-tracker updated: 5e237b6174...bc7d269cc4

View File

@@ -65,14 +65,26 @@ spec:
hostNetwork: true hostNetwork: true
volumes: volumes:
- name: config - name: config
hostPath: persistentVolumeClaim:
path: ./config claimName: home-assistant-config
type: DirectoryOrCreate
- name: localtime - name: localtime
hostPath: hostPath:
path: /etc/localtime path: /etc/localtime
type: File type: File
- name: dbus - name: dbus
hostPath: hostPath:
path: /run/dbus path: /run/dbus
type: Directory type: File
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
namespace: home-assistant
name: home-assistant-config
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
---