values.yaml 959 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. image:
  2. repository: passbolt/passbolt
  3. pullPolicy: IfNotPresent
  4. tag: 4.4.2-1-ce-non-root
  5. resources:
  6. limits:
  7. cpu: 4000m
  8. memory: 8Gi
  9. passboltConfig:
  10. appUrl: ''
  11. additionalEnvs: []
  12. passboltNetwork:
  13. webPort: 30097
  14. certificateID:
  15. hostNetwork: false
  16. passboltStorage:
  17. gpg:
  18. type: ixVolume
  19. datasetName: gpg
  20. jwt:
  21. type: ixVolume
  22. ixVolumeConfig:
  23. datasetName: jwt
  24. mariadbData:
  25. type: ixVolume
  26. ixVolumeConfig:
  27. datasetName: mariadbData
  28. mariadbBackup:
  29. type: ixVolume
  30. ixVolumeConfig:
  31. datasetName: mariadbBackup
  32. additionalStorages: []
  33. notes:
  34. custom: |
  35. ## Register admin user
  36. Connect to the container's shell and run the following command replacing the
  37. values (`user@example.com`, `first_name`, `last_name`) with your own values.
  38. ```shell
  39. /usr/share/php/passbolt/bin/cake passbolt register_user -r admin \
  40. -u user@example.com -f first_name -l last_name
  41. ```