values.yaml 893 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. datasetName: jwt
  23. mariadbData:
  24. type: ixVolume
  25. datasetName: mariadbData
  26. mariadbBackup:
  27. type: ixVolume
  28. datasetName: mariadbBackup
  29. additionalStorages: []
  30. notes:
  31. custom: |
  32. ## Register admin user
  33. Connect to the container's shell and run the following command replacing the
  34. values (`user@example.com`, `first_name`, `last_name`) with your own values.
  35. ```shell
  36. /usr/share/php/passbolt/bin/cake passbolt register_user -r admin \
  37. -u user@example.com -f first_name -l last_name
  38. ```