ix_values.yaml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. image:
  2. repository: quay.io/invidious/invidious
  3. pullPolicy: IfNotPresent
  4. tag: latest
  5. gitImage:
  6. repository: bitnami/git
  7. pullPolicy: IfNotPresent
  8. tag: latest
  9. yqImage:
  10. pullPolicy: IfNotPresent
  11. repository: mikefarah/yq
  12. tag: 4.40.5
  13. resources:
  14. limits:
  15. cpu: 4000m
  16. memory: 8Gi
  17. invidiousConfig:
  18. admins: []
  19. registrationEnabled: true
  20. loginEnabled: true
  21. captchaEnabled: true
  22. additionalEnvs: []
  23. invidiousNetwork:
  24. webPort: 31008
  25. invidiousStorage:
  26. config:
  27. type: ixVolume
  28. ixVolumeConfig:
  29. datasetName: config
  30. pgData:
  31. type: ixVolume
  32. ixVolumeConfig:
  33. datasetName: pgData
  34. pgBackup:
  35. type: ixVolume
  36. ixVolumeConfig:
  37. datasetName: pgBackup
  38. additionalStorages: []
  39. notes:
  40. custom: |
  41. ## Database
  42. You can connect to the database using the pgAdmin App from the catalog
  43. <details>
  44. <summary>Database Details</summary>
  45. - Database: `kemal`
  46. - Username: `kemal`
  47. - Password: `{{ .Values.invidiousDbPass }}`
  48. - Host: `{{ .Values.invidiousDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  49. - Port: `5432`
  50. </details>
  51. {{- $_ := unset .Values "invidiousDbPass" }}
  52. {{- $_ := unset .Values "invidiousDbHost" }}
  53. Additional configuration can be specified
  54. by editing the file `/config/config.yaml` (see [example](https://github.com/iv-org/invidious/blob/master/config/config.example.yml))
  55. Note that some configuration options are updated automatically by the chart on each start.