mirror of
https://github.com/truenas/charts.git
synced 2026-05-03 22:23:10 +08:00
This commit upgrades home-assistant, nextcloud, prometheus, minecraft, chia, recyclarr, roundcube, ipfs, jellyfin, netbootxyz, tiny-media-manager, n8n, node-red, audiobookshelf catalog item(s). Co-authored-by: sonicaj <waqarsonic1@gmail.com>
77 lines
1.4 KiB
YAML
77 lines
1.4 KiB
YAML
image:
|
|
pullPolicy: IfNotPresent
|
|
repository: homeassistant/home-assistant
|
|
tag: 2025.2.4
|
|
|
|
# Keep using the same image
|
|
# as before the migration
|
|
haPostgresImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: postgres
|
|
tag: '13.1'
|
|
|
|
yqImage:
|
|
pullPolicy: IfNotPresent
|
|
repository: mikefarah/yq
|
|
tag: 4.40.5
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 4000m
|
|
memory: 8Gi
|
|
|
|
podOptions:
|
|
dnsConfig:
|
|
options: []
|
|
|
|
haConfig:
|
|
allowDevices: false
|
|
additionalEnvs: []
|
|
|
|
haNetwork:
|
|
webPort: 20810
|
|
hostNetwork: false
|
|
|
|
haID:
|
|
user: 568
|
|
group: 568
|
|
|
|
haStorage:
|
|
config:
|
|
type: ixVolume
|
|
ixVolumeConfig:
|
|
datasetName: config
|
|
media:
|
|
type: ixVolume
|
|
ixVolumeConfig:
|
|
datasetName: media
|
|
pgData:
|
|
type: ixVolume
|
|
ixVolumeConfig:
|
|
datasetName: pgData
|
|
pgBackup:
|
|
type: ixVolume
|
|
ixVolumeConfig:
|
|
datasetName: pgBackup
|
|
additionalStorages: []
|
|
|
|
notes:
|
|
custom: |
|
|
## Database
|
|
You can connect to the database using the pgAdmin App from the catalog
|
|
|
|
<details>
|
|
<summary>Database Details</summary>
|
|
|
|
- Database: `{{ .Values.haDbName }}`
|
|
- Username: `{{ .Values.haDbUser }}`
|
|
- Password: `{{ .Values.haDbPass }}`
|
|
- Host: `{{ .Values.haDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
|
|
- Port: `5432`
|
|
|
|
</details>
|
|
{{- $_ := unset .Values "haDbUser" }}
|
|
{{- $_ := unset .Values "haDbName" }}
|
|
{{- $_ := unset .Values "haDbPass" }}
|
|
{{- $_ := unset .Values "haDbHost" }}
|