mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 19:43:12 +00:00
Replaces raw hostPath (/srv/data/<app>) with a local-path PVC per app, so these apps get proper PVC lifecycle semantics and can have a PVC backup CronJob (matching what gitea already has) instead of being unbacked host directories. local-path already lives on the same disk these hostPaths did, so this isn't a storage-tier change. adguardhome specifically: consolidates the previous split work/+conf/ hostPath mounts into a single PVC mounted at /opt/adguardhome (its own default convention), since a real deployment can't run two hostPath subtrees off one PVC. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01566weDFku8TaRC2CJUPVM1
43 lines
760 B
YAML
43 lines
760 B
YAML
# Default values for Zigbee2MQTT Helm Chart
|
|
image:
|
|
repository: ghcr.io/koenkk/zigbee2mqtt
|
|
pullPolicy: IfNotPresent
|
|
|
|
timezone: "Europe/Kyiv"
|
|
|
|
# Container port exposed by the Zigbee2MQTT frontend
|
|
httpPort: 8080
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 80
|
|
|
|
resources:
|
|
requests:
|
|
cpu: "100m"
|
|
memory: "256Mi"
|
|
limits:
|
|
cpu: "2"
|
|
memory: "1Gi"
|
|
|
|
# Persistent /app/data directory (configuration, device database, coordinator backup)
|
|
persistence:
|
|
enabled: true
|
|
existingClaim: ""
|
|
storageClass: local-path
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
size: 1Gi
|
|
|
|
nodeSelector: {}
|
|
tolerations: []
|
|
affinity: {}
|
|
|
|
ingresses: {}
|
|
# https:
|
|
# host: zigbee2mqtt.example.com
|
|
# annotations: {}
|
|
# tls:
|
|
# - hosts:
|
|
# - zigbee2mqtt.example.com
|