Compare commits
38 Commits
home-assis
...
main
Author | SHA1 | Date | |
---|---|---|---|
3040d72a0f | |||
897fcd184c | |||
fe724d11d7 | |||
169b054dff | |||
6b3bda7f0d | |||
4f092eaa2a | |||
|
5fd7675ffb | ||
|
c5d44ffffa | ||
2180602e3a | |||
|
583643bcab | ||
|
e0864adab0 | ||
|
6cd276eaa3 | ||
|
0a72a599f7 | ||
|
5523cd61d1 | ||
|
c6c13e201b | ||
|
ba29643c98 | ||
|
7049e3fc4f | ||
|
9b04821db0 | ||
|
851c54d3cc | ||
|
e103640693 | ||
|
852a8e403e | ||
|
165fbc2946 | ||
|
2b33691e67 | ||
|
c31521018f | ||
|
911f56284f | ||
|
f08bcc331d | ||
|
13c879d1d5 | ||
|
6d3b50cf08 | ||
|
770044fba0 | ||
|
582f68d4f6 | ||
|
dd7146b905 | ||
|
a453aed4bd | ||
|
824964432c | ||
|
0165ead984 | ||
|
f5e44648a4 | ||
59cf68dea5 | |||
|
0d914ea479 | ||
39c0db5a0a |
58
.gitea/workflows/buildcharts.yaml
Normal file
58
.gitea/workflows/buildcharts.yaml
Normal file
@ -0,0 +1,58 @@
|
||||
name: Package and publish helm chart
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
package-helm:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
name: Check out code
|
||||
|
||||
- name: Set up Helm
|
||||
uses: azure/setup-helm@v4.2.0
|
||||
with:
|
||||
version: v3.14.4
|
||||
|
||||
- name: Set up yq
|
||||
uses: mikefarah/yq@master
|
||||
|
||||
- name: Check for changed charts
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v44
|
||||
with:
|
||||
dir_names: true
|
||||
dir_names_max_depth: '2'
|
||||
files: 'charts/**'
|
||||
|
||||
- name: Run helm lint on all changed charts
|
||||
shell: bash
|
||||
env:
|
||||
ALL_CHANGED_CHARTS: ${{ steps.changed-files.outputs.all_changed_files }}
|
||||
run: |
|
||||
REPO_PATH=$(git rev-parse --show-toplevel)
|
||||
for chart in ${ALL_CHANGED_CHARTS}; do
|
||||
cd ${REPO_PATH}/${chart}
|
||||
helm dependency build
|
||||
helm lint .
|
||||
done
|
||||
|
||||
- name: build helm package
|
||||
shell: bash
|
||||
if: gitea.ref == 'refs/heads/main'
|
||||
env:
|
||||
PACKAGE_TOKEN: ${{ secrets.PACKAGE_TOKEN }}
|
||||
CHART_NAME: ${{ steps.chart_name.outputs.result }}
|
||||
CHART_VERSION: ${{ steps.chart_version.outputs.result }}
|
||||
ALL_CHANGED_CHARTS: ${{ steps.changed-files.outputs.all_changed_files }}
|
||||
run: |
|
||||
REPO_PATH=$(git rev-parse --show-toplevel)
|
||||
for chart in ${ALL_CHANGED_CHARTS}; do
|
||||
cd ${REPO_PATH}/${chart}
|
||||
CHART_NAME=$(yq .name Chart.yaml)
|
||||
CHART_VERSION=$(yq .version Chart.yaml)
|
||||
echo "Packaging ${CHART_NAME}-${CHART_VERSION}"
|
||||
helm package .
|
||||
curl -H "Authorization: token $PACKAGE_TOKEN" -X POST --upload-file ${CHART_NAME}-${CHART_VERSION}.tgz https://git.rre.nu/api/packages/jonas/helm/api/charts
|
||||
done
|
40
.gitignore
vendored
Normal file
40
.gitignore
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
# General files for the project
|
||||
pkg/*
|
||||
*.pyc
|
||||
bin/*
|
||||
.project
|
||||
/.bin
|
||||
/_test/secrets/*.json
|
||||
*.tgz
|
||||
Chart.lock
|
||||
|
||||
# OSX leaves these everywhere on SMB shares
|
||||
._*
|
||||
|
||||
# OSX trash
|
||||
.DS_Store
|
||||
|
||||
# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
|
||||
.idea/
|
||||
*.iml
|
||||
|
||||
# Vscode files
|
||||
.vscode
|
||||
|
||||
# Emacs save files
|
||||
*~
|
||||
\#*\#
|
||||
.\#*
|
||||
|
||||
# Vim-related files
|
||||
[._]*.s[a-w][a-z]
|
||||
[._]s[a-w][a-z]
|
||||
*.un~
|
||||
Session.vim
|
||||
.netrwhist
|
||||
|
||||
# Chart dependencies
|
||||
**/charts/*.tgz
|
||||
|
||||
.history
|
||||
|
@ -4,7 +4,7 @@ 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
|
||||
appVersion: 2024.11.1
|
||||
kubeVersion: ">=1.27.0"
|
||||
home: https://www.home-assistant.io/
|
||||
sources:
|
||||
@ -16,4 +16,4 @@ maintainers:
|
||||
dependencies:
|
||||
- name: lib
|
||||
repository: https://git.rre.nu/api/packages/jonas/helm
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
|
@ -13,10 +13,30 @@ The following table lists the configurable parameters of the Home-assistant char
|
||||
| ------------------------ | ----------------------- | -------------- |
|
||||
| `image.repository` | | `"ghcr.io/home-assistant/home-assistant"` |
|
||||
| `image.tag` | | `null` |
|
||||
| `controller.enabled` | should the main workload be included or not | `true` |
|
||||
| `controller.type` | valid options are deployment, statefulset, job | `"statefulset"` |
|
||||
| `service.http.enabled` | | `true` |
|
||||
| `service.http.ports.http.port` | | `80` |
|
||||
| `service.http.ports.http.targetPort` | | `8123` |
|
||||
| `ingress.enabled` | | `false` |
|
||||
| `ingress.service` | what service should the ingress target | `"http"` |
|
||||
| `ingress.servicePort` | | `80` |
|
||||
| `ingress.className` | | `"nginx"` |
|
||||
| `ingress.hosts` | | `[{"host": "example.local", "paths": [{"path": "/", "pathType": "Prefix"}]}]` |
|
||||
| `ingress.annotations` | | `{}` |
|
||||
| `ingress.tls` | | `[]` |
|
||||
| `volumeClaimTemplates` | | `[{"name": "config", "mountPath": "/config", "accessMode": "ReadWriteOnce", "storageClassName": "longhorn", "size": "1Gi"}]` |
|
||||
| `livenessProbe.httpGet.path` | | `"/"` |
|
||||
| `livenessProbe.httpGet.port` | | `8123` |
|
||||
| `livenessProbe.initialDelaySeconds` | | `5` |
|
||||
| `livenessProbe.periodSeconds` | | `3` |
|
||||
| `volumes` | | `[{"name": "configs", "configMap": {"name": "hass-configs", "items": [{"key": "configuration.yaml", "path": "configuration.yaml"}, {"key": "automations.yaml", "path": "automations.yaml"}, {"key": "scenes.yaml", "path": "scenes.yaml"}, {"key": "scripts.yaml", "path": "scripts.yaml"}]}}, {"name": "secrets", "secret": {"secretName": "hass-secrets", "items": [{"key": "secrets.yaml", "path": "secrets.yaml"}]}}]` |
|
||||
| `volumeMounts` | | `[{"name": "configs", "mountPath": "/config/configuration.yaml", "subPath": "configuration.yaml", "readOnly": true}, {"name": "configs", "mountPath": "/config/automations.yaml", "subPath": "automations.yaml", "readOnly": true}, {"name": "configs", "mountPath": "/config/scenes.yaml", "subPath": "scenes.yaml", "readOnly": true}, {"name": "configs", "mountPath": "/config/scripts.yaml", "subPath": "scripts.yaml", "readOnly": true}, {"name": "secrets", "mountPath": "/config/secrets.yaml", "subPath": "secrets.yaml", "readOnly": true}]` |
|
||||
| `hass_configs.configuration.yaml` | | `"# Loads default set of integrations. Do not remove.\ndefault_config:\n\n# Load frontend themes from the themes folder\nfrontend:\n themes: !include_dir_merge_named themes\n\nautomation: !include automations.yaml\nscript: !include scripts.yaml\nscene: !include scenes.yaml\n"` |
|
||||
| `hass_configs.automations.yaml` | | `"[]\n"` |
|
||||
| `hass_configs.scenes.yaml` | | `"# scenes\n"` |
|
||||
| `hass_configs.scripts.yaml` | | `"# scripts\n"` |
|
||||
| `hass_secrets.secrets.yaml` | | `"# Use this file to store secrets like usernames and passwords.\n# Learn more at https://www.home-assistant.io/docs/configuration/secrets/\nsome_password: welcome\n"` |
|
||||
|
||||
|
||||
|
||||
|
7
charts/home-assistant/templates/configuration.yaml
Normal file
7
charts/home-assistant/templates/configuration.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: hass-configs
|
||||
namespace: {{ .Values.namespace | default "default" }}
|
||||
labels: {{ include "lib.labels" . | nindent 4 }}
|
||||
data: {{ .Values.hass_configs | toYaml | nindent 2 }}
|
11
charts/home-assistant/templates/secrets.yaml
Normal file
11
charts/home-assistant/templates/secrets.yaml
Normal file
@ -0,0 +1,11 @@
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: hass-secrets
|
||||
namespace: {{ .Values.namespace | default "default" }}
|
||||
labels: {{ include "lib.labels" . | nindent 4 }}
|
||||
type: Opauge
|
||||
data:
|
||||
{{- range $n, $v := .Values.hass_secrets -}}
|
||||
{{ $n | nindent 2 }}: {{ $v | b64enc }}
|
||||
{{- end }}
|
@ -31,18 +31,83 @@ ingress:
|
||||
# hosts:
|
||||
# - chart-example.local
|
||||
|
||||
|
||||
volumeClaimTemplates:
|
||||
- name: config
|
||||
mountPath: /config
|
||||
accessMode: "ReadWriteOnce"
|
||||
storageClassName: "default"
|
||||
storageClassName: "longhorn"
|
||||
size: 1Gi
|
||||
|
||||
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: 8123
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 3
|
||||
|
||||
volumes:
|
||||
- name: configs
|
||||
configMap:
|
||||
name: hass-configs
|
||||
items:
|
||||
- key: configuration.yaml
|
||||
path: configuration.yaml
|
||||
- key: automations.yaml
|
||||
path: automations.yaml
|
||||
- key: scenes.yaml
|
||||
path: scenes.yaml
|
||||
- key: scripts.yaml
|
||||
path: scripts.yaml
|
||||
- name: secrets
|
||||
secret:
|
||||
secretName: hass-secrets
|
||||
items:
|
||||
- key: secrets.yaml
|
||||
path: secrets.yaml
|
||||
|
||||
volumeMounts:
|
||||
- name: configs
|
||||
mountPath: /config/configuration.yaml
|
||||
subPath: configuration.yaml
|
||||
readOnly: true
|
||||
- name: configs
|
||||
mountPath: /config/automations.yaml
|
||||
subPath: automations.yaml
|
||||
readOnly: true
|
||||
- name: configs
|
||||
mountPath: /config/scenes.yaml
|
||||
subPath: scenes.yaml
|
||||
readOnly: true
|
||||
- name: configs
|
||||
mountPath: /config/scripts.yaml
|
||||
subPath: scripts.yaml
|
||||
readOnly: true
|
||||
- name: secrets
|
||||
mountPath: /config/secrets.yaml
|
||||
subPath: secrets.yaml
|
||||
readOnly: true
|
||||
|
||||
hass_configs:
|
||||
configuration.yaml: |
|
||||
# Loads default set of integrations. Do not remove.
|
||||
default_config:
|
||||
|
||||
# Load frontend themes from the themes folder
|
||||
frontend:
|
||||
themes: !include_dir_merge_named themes
|
||||
|
||||
automation: !include automations.yaml
|
||||
script: !include scripts.yaml
|
||||
scene: !include scenes.yaml
|
||||
automations.yaml: |
|
||||
[]
|
||||
scenes.yaml: |
|
||||
# scenes
|
||||
scripts.yaml: |
|
||||
# scripts
|
||||
|
||||
hass_secrets:
|
||||
secrets.yaml: |
|
||||
# Use this file to store secrets like usernames and passwords.
|
||||
# Learn more at https://www.home-assistant.io/docs/configuration/secrets/
|
||||
some_password: welcome
|
||||
|
Loading…
Reference in New Issue
Block a user