mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00

| datasource | package | from | to | | ---------- | ---------------------------- | ----- | ----- | | docker | ghcr.io/zwave-js/zwave-js-ui | 9.2.3 | 9.3.0 |
104 lines
2.4 KiB
YAML
104 lines
2.4 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/helmrelease-helm-v2beta1.json
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: &app zwave-js-ui
|
|
namespace: default
|
|
spec:
|
|
interval: 30m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 1.5.1
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjw-s
|
|
namespace: flux-system
|
|
maxHistory: 2
|
|
install:
|
|
createNamespace: true
|
|
remediation:
|
|
retries: 3
|
|
upgrade:
|
|
cleanupOnFail: true
|
|
remediation:
|
|
retries: 3
|
|
uninstall:
|
|
keepHistory: false
|
|
values:
|
|
image:
|
|
repository: ghcr.io/zwave-js/zwave-js-ui
|
|
tag: 9.3.0
|
|
env:
|
|
TZ: "${TIMEZONE}"
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: &port 8091
|
|
websocket:
|
|
enabled: true
|
|
port: 3000
|
|
serviceMonitor:
|
|
main:
|
|
enabled: true
|
|
probes:
|
|
liveness: &probes
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
httpGet:
|
|
path: /health
|
|
port: *port
|
|
initialDelaySeconds: 0
|
|
periodSeconds: 10
|
|
timeoutSeconds: 1
|
|
failureThreshold: 3
|
|
readiness: *probes
|
|
startup:
|
|
enabled: false
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
ingressClassName: "nginx"
|
|
annotations:
|
|
auth.home.arpa/enabled: "true"
|
|
hajimari.io/icon: mdi:z-wave
|
|
hosts:
|
|
- host: &host "zwave.${SECRET_CLUSTER_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
securityContext:
|
|
privileged: true
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
existingClaim: zwavejs2mqtt-config
|
|
mountPath: /usr/src/app/store
|
|
usb:
|
|
enabled: true
|
|
type: hostPath
|
|
hostPath: /dev/serial/by-id/usb-0658_0200-if00
|
|
hostPathType: CharDevice
|
|
mountPath: /dev/ttyUSB0
|
|
resources:
|
|
requests:
|
|
cpu: 10m
|
|
memory: 100Mi
|
|
limits:
|
|
memory: 500Mi
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: feature.node.kubernetes.io/custom-zwave
|
|
operator: In
|
|
values:
|
|
- "true"
|