You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

  1. ##
  2. ## Configuration values for the postgresql dependency.
  3. ## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
  4. postgresql:
  5. ##
  6. ## Use the PostgreSQL chart dependency.
  7. ## Set to false if bringing your own PostgreSQL.
  8. enabled: true
  9. ##
  10. ## If you are bringing your own PostgreSQL, you should set postgresHost and
  11. ## also probably service.port, postgresUser, postgresPassword, and postgresDatabase
  12. ## postgresHost:
  13. ##
  14. ## PostgreSQL port
  15. service:
  16. port: 5432
  17. ## PostgreSQL User to create.
  18. postgresUser: wiki
  19. ##
  20. ## PostgreSQL Password for the new user.
  21. ## If not set, a random 10 characters password will be used.
  22. postgresPassword: wikijsrocks
  23. ##
  24. ## PostgreSQL Database to create.
  25. postgresDatabase: wiki
  26. ##
  27. ## Persistent Volume Storage configuration.
  28. ## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
  29. persistence:
  30. ##
  31. ## Enable PostgreSQL persistence using Persistent Volume Claims.
  32. enabled: true
  33. ##
  34. ## Persistant class
  35. # storageClass: classname
  36. ##
  37. ## Access mode:
  38. accessMode: ReadWriteOnce
  39. ##
  40. ## Requested size:
  41. size: 10Gi