33 lines
711 B
YAML
33 lines
711 B
YAML
apiVersion: helm.toolkit.fluxcd.io/v2beta2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: home-assistant
|
|
namespace: home-assistant
|
|
spec:
|
|
interval: 5m
|
|
releaseName: home-assistant
|
|
chart:
|
|
spec:
|
|
chart: home-assistant
|
|
version: "0.3.2"
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: home-assistant
|
|
namespace: flux-system
|
|
values:
|
|
hostNetwork: true
|
|
service:
|
|
type: ClusterIP
|
|
port: 8123
|
|
# ingress:
|
|
# enabled: true
|
|
# className: traefik
|
|
# hosts:
|
|
# - host: home-assistant.local
|
|
# paths:
|
|
# - path: /
|
|
# pathType: Prefix
|
|
persistence:
|
|
enabled: true
|
|
storageClass: local-path
|
|
size: 5Gi
|