values.yaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. image:
  2. pullPolicy: IfNotPresent
  3. repository: homeassistant/home-assistant
  4. tag: 2025.3.0
  5. # Keep using the same image
  6. # as before the migration
  7. haPostgresImage:
  8. pullPolicy: IfNotPresent
  9. repository: postgres
  10. tag: '13.1'
  11. yqImage:
  12. pullPolicy: IfNotPresent
  13. repository: mikefarah/yq
  14. tag: 4.40.5
  15. resources:
  16. limits:
  17. cpu: 4000m
  18. memory: 8Gi
  19. podOptions:
  20. dnsConfig:
  21. options: []
  22. haConfig:
  23. allowDevices: false
  24. additionalEnvs: []
  25. haNetwork:
  26. webPort: 20810
  27. hostNetwork: false
  28. haID:
  29. user: 568
  30. group: 568
  31. haStorage:
  32. config:
  33. type: ixVolume
  34. ixVolumeConfig:
  35. datasetName: config
  36. media:
  37. type: ixVolume
  38. ixVolumeConfig:
  39. datasetName: media
  40. pgData:
  41. type: ixVolume
  42. ixVolumeConfig:
  43. datasetName: pgData
  44. pgBackup:
  45. type: ixVolume
  46. ixVolumeConfig:
  47. datasetName: pgBackup
  48. additionalStorages: []
  49. notes:
  50. custom: |
  51. ## Database
  52. You can connect to the database using the pgAdmin App from the catalog
  53. <details>
  54. <summary>Database Details</summary>
  55. - Database: `{{ .Values.haDbName }}`
  56. - Username: `{{ .Values.haDbUser }}`
  57. - Password: `{{ .Values.haDbPass }}`
  58. - Host: `{{ .Values.haDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  59. - Port: `5432`
  60. </details>
  61. {{- $_ := unset .Values "haDbUser" }}
  62. {{- $_ := unset .Values "haDbName" }}
  63. {{- $_ := unset .Values "haDbPass" }}
  64. {{- $_ := unset .Values "haDbHost" }}