Compare commits
No commits in common. "39c0db5a0a0063cb78237f1c5d94c21a769cbdf9" and "cd302f6f25981e54041ea6d9874e54469f5f1fe9" have entirely different histories.
39c0db5a0a
...
cd302f6f25
3
charts/.gitignore
vendored
3
charts/.gitignore
vendored
@ -1,3 +0,0 @@
|
|||||||
Chart.lock
|
|
||||||
charts/
|
|
||||||
*.tgz
|
|
@ -1,12 +0,0 @@
|
|||||||
# See https://pre-commit.com for more information
|
|
||||||
# See https://pre-commit.com/hooks.html for more hooks
|
|
||||||
repos:
|
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
||||||
rev: v3.2.0
|
|
||||||
hooks:
|
|
||||||
- id: trailing-whitespace
|
|
||||||
- id: end-of-file-fixer
|
|
||||||
exclude: README.md$
|
|
||||||
- id: check-yaml
|
|
||||||
exclude: all.yaml
|
|
||||||
- id: check-added-large-files
|
|
@ -1,19 +0,0 @@
|
|||||||
---
|
|
||||||
apiVersion: v2
|
|
||||||
name: home-assistant
|
|
||||||
description: Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts.
|
|
||||||
type: application
|
|
||||||
version: 1.0.0
|
|
||||||
appVersion: v2024.11.1
|
|
||||||
kubeVersion: ">=1.27.0"
|
|
||||||
home: https://www.home-assistant.io/
|
|
||||||
sources:
|
|
||||||
- https://git.rre.nu/jonas/helm-charts
|
|
||||||
- https://github.com/home-assistant/core
|
|
||||||
maintainers:
|
|
||||||
- name: Jonas Forsberg
|
|
||||||
email: barregargamel@gmail.com
|
|
||||||
dependencies:
|
|
||||||
- name: lib
|
|
||||||
repository: https://git.rre.nu/api/packages/jonas/helm
|
|
||||||
version: 1.0.3
|
|
@ -1,2 +0,0 @@
|
|||||||
doc:
|
|
||||||
frigate gen --output-format markdown --no-deps --no-credits ./ > README.md
|
|
@ -1,24 +0,0 @@
|
|||||||
|
|
||||||
Home-assistant
|
|
||||||
===========
|
|
||||||
|
|
||||||
Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts.
|
|
||||||
|
|
||||||
|
|
||||||
## Configuration
|
|
||||||
|
|
||||||
The following table lists the configurable parameters of the Home-assistant chart and their default values.
|
|
||||||
|
|
||||||
| Parameter | Description | Default |
|
|
||||||
| ------------------------ | ----------------------- | -------------- |
|
|
||||||
| `image.repository` | | `"ghcr.io/home-assistant/home-assistant"` |
|
|
||||||
| `image.tag` | | `null` |
|
|
||||||
| `livenessProbe.httpGet.path` | | `"/"` |
|
|
||||||
| `livenessProbe.httpGet.port` | | `8123` |
|
|
||||||
| `livenessProbe.initialDelaySeconds` | | `5` |
|
|
||||||
| `livenessProbe.periodSeconds` | | `3` |
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
{{ include "lib.all" . }}
|
|
@ -1,48 +0,0 @@
|
|||||||
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
|
|
Loading…
Reference in New Issue
Block a user