values.yaml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. image:
  2. repository: gitea/gitea
  3. pullPolicy: IfNotPresent
  4. tag: 1.20.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. datasetName: data
  27. config:
  28. type: ixVolume
  29. datasetName: config
  30. pgData:
  31. type: ixVolume
  32. datasetName: pgData
  33. pgBackup:
  34. type: ixVolume
  35. datasetName: pgBackup
  36. notes:
  37. custom: |
  38. ## Database
  39. You can connect to the database using the pgAdmin App from the catalog
  40. <details>
  41. <summary>Database Details</summary>
  42. - Database: `gitea`
  43. - Username: `gitea`
  44. - Password: `{{ .Values.giteaDbPass }}`
  45. - Host: `{{ .Values.giteaDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  46. - Port: `5432`
  47. </details>
  48. {{- $_ := unset .Values "giteaDbPass" }}
  49. {{- $_ := unset .Values "giteaDbHost" }}