5fd7675ffb
All checks were successful
Package and publish helm chart / package-helm (push) Successful in 15s
50 lines
899 B
YAML
50 lines
899 B
YAML
|
|
image:
|
|
repository: ghcr.io/home-assistant/home-assistant
|
|
tag:
|
|
|
|
controller: # main workload
|
|
enabled: true # should the main workload be included or not
|
|
type: statefulset # valid options are deployment, statefulset, job
|
|
|
|
service:
|
|
http:
|
|
enabled: true
|
|
ports:
|
|
http:
|
|
port: 80
|
|
targetPort: 8123
|
|
|
|
ingress:
|
|
enabled: false
|
|
service: http # what service should the ingress target
|
|
servicePort: 80
|
|
className: "nginx"
|
|
hosts:
|
|
- host: example.local
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
annotations:
|
|
{}
|
|
tls: []
|
|
# - secretName: chart-example-tls
|
|
# hosts:
|
|
# - chart-example.local
|
|
|
|
|
|
volumeClaimTemplates:
|
|
- name: config
|
|
mountPath: /config
|
|
accessMode: "ReadWriteOnce"
|
|
storageClassName: "default"
|
|
size: 1Gi
|
|
|
|
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 8123
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 3
|