98 lines
2.5 KiB
YAML
98 lines
2.5 KiB
YAML
|
---
|
||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
|
||
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
||
|
kind: HelmRelease
|
||
|
metadata:
|
||
|
name: zwave
|
||
|
spec:
|
||
|
interval: 30m
|
||
|
chart:
|
||
|
spec:
|
||
|
chart: app-template
|
||
|
version: 3.4.0
|
||
|
sourceRef:
|
||
|
kind: HelmRepository
|
||
|
name: bjw-s
|
||
|
namespace: flux-system
|
||
|
install:
|
||
|
remediation:
|
||
|
retries: 3
|
||
|
upgrade:
|
||
|
cleanupOnFail: true
|
||
|
remediation:
|
||
|
strategy: rollback
|
||
|
retries: 3
|
||
|
dependsOn:
|
||
|
- name: rook-ceph-cluster
|
||
|
namespace: rook-ceph
|
||
|
- name: volsync
|
||
|
namespace: volsync-system
|
||
|
values:
|
||
|
controllers:
|
||
|
zwave:
|
||
|
annotations:
|
||
|
reloader.stakater.com/auto: "true"
|
||
|
containers:
|
||
|
app:
|
||
|
image:
|
||
|
repository: ghcr.io/zwave-js/zwave-js-ui
|
||
|
tag: 9.19.0@sha256:a39688fb3c42733a036104842429a5ff44917594f28f9b24181a1c0873a850c4
|
||
|
env:
|
||
|
TZ: America/Chicago
|
||
|
PORT: &port 80
|
||
|
probes:
|
||
|
liveness: &probes
|
||
|
enabled: true
|
||
|
custom: true
|
||
|
spec:
|
||
|
httpGet:
|
||
|
path: /health
|
||
|
port: *port
|
||
|
initialDelaySeconds: 0
|
||
|
periodSeconds: 10
|
||
|
timeoutSeconds: 1
|
||
|
failureThreshold: 3
|
||
|
readiness: *probes
|
||
|
securityContext:
|
||
|
allowPrivilegeEscalation: false
|
||
|
readOnlyRootFilesystem: true
|
||
|
capabilities: { drop: ["ALL"] }
|
||
|
resources:
|
||
|
requests:
|
||
|
cpu: 10m
|
||
|
limits:
|
||
|
memory: 512Mi
|
||
|
defaultPodOptions:
|
||
|
securityContext:
|
||
|
runAsNonRoot: true
|
||
|
runAsUser: 568
|
||
|
runAsGroup: 568
|
||
|
fsGroup: 568
|
||
|
fsGroupChangePolicy: OnRootMismatch
|
||
|
seccompProfile: { type: RuntimeDefault }
|
||
|
service:
|
||
|
app:
|
||
|
controller: zwave
|
||
|
ports:
|
||
|
http:
|
||
|
port: *port
|
||
|
websocket:
|
||
|
port: 3000
|
||
|
ingress:
|
||
|
app:
|
||
|
className: internal-nginx
|
||
|
hosts:
|
||
|
- host: "{{ .Release.Name }}.jahanson.tech"
|
||
|
paths:
|
||
|
- path: /
|
||
|
service:
|
||
|
identifier: app
|
||
|
port: http
|
||
|
persistence:
|
||
|
config:
|
||
|
existingClaim: zwave
|
||
|
globalMounts:
|
||
|
- path: /usr/src/app/store
|
||
|
tmp:
|
||
|
type: emptyDir
|