values.yaml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. image:
  2. repository: gitea/gitea
  3. pullPolicy: IfNotPresent
  4. tag: 1.23.5-rootless
  5. resources:
  6. limits:
  7. cpu: 4000m
  8. memory: 8Gi
  9. giteaConfig:
  10. additionalEnvs: []
  11. giteaNetwork:
  12. webPort: 30008
  13. sshPort: 30009
  14. certificateID:
  15. rootURL: ''
  16. hostNetwork: false
  17. # FIXME: Currently only user 1000 works.
  18. # Any other uid is not mapped to the internal "git" user.
  19. # https://github.com/go-gitea/gitea/issues/23632
  20. giteaRunAs:
  21. user: 1000
  22. group: 1000
  23. giteaStorage:
  24. data:
  25. type: ixVolume
  26. ixVolumeConfig:
  27. datasetName: data
  28. config:
  29. type: ixVolume
  30. ixVolumeConfig:
  31. datasetName: config
  32. pgData:
  33. type: ixVolume
  34. ixVolumeConfig:
  35. datasetName: pgData
  36. pgBackup:
  37. type: ixVolume
  38. ixVolumeConfig:
  39. datasetName: pgBackup
  40. additionalStorages: []
  41. notes:
  42. custom: |
  43. ## Database
  44. You can connect to the database using the pgAdmin App from the catalog
  45. <details>
  46. <summary>Database Details</summary>
  47. - Database: `gitea`
  48. - Username: `gitea`
  49. - Password: `{{ .Values.giteaDbPass }}`
  50. - Host: `{{ .Values.giteaDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  51. - Port: `5432`
  52. </details>
  53. {{- $_ := unset .Values "giteaDbPass" }}
  54. {{- $_ := unset .Values "giteaDbHost" }}