values.yaml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. image:
  2. pullPolicy: IfNotPresent
  3. repository: homeassistant/home-assistant
  4. tag: 2024.4.1
  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. additionalEnvs: []
  24. haNetwork:
  25. webPort: 20810
  26. hostNetwork: false
  27. haID:
  28. user: 568
  29. group: 568
  30. haStorage:
  31. config:
  32. type: ixVolume
  33. ixVolumeConfig:
  34. datasetName: config
  35. media:
  36. type: ixVolume
  37. ixVolumeConfig:
  38. datasetName: media
  39. pgData:
  40. type: ixVolume
  41. ixVolumeConfig:
  42. datasetName: pgData
  43. pgBackup:
  44. type: ixVolume
  45. ixVolumeConfig:
  46. datasetName: pgBackup
  47. additionalStorages: []
  48. notes:
  49. custom: |
  50. ## Database
  51. You can connect to the database using the pgAdmin App from the catalog
  52. <details>
  53. <summary>Database Details</summary>
  54. - Database: `{{ .Values.haDbName }}`
  55. - Username: `{{ .Values.haDbUser }}`
  56. - Password: `{{ .Values.haDbPass }}`
  57. - Host: `{{ .Values.haDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  58. - Port: `5432`
  59. </details>
  60. {{- $_ := unset .Values "haDbUser" }}
  61. {{- $_ := unset .Values "haDbName" }}
  62. {{- $_ := unset .Values "haDbPass" }}
  63. {{- $_ := unset .Values "haDbHost" }}