default_values.yaml 592 B

123456789101112131415161718192021222324252627282930
  1. ## Official nextcloud image version
  2. ## ref: https://hub.docker.com/r/library/nextcloud/tags/
  3. ##
  4. image:
  5. repository: nextcloud
  6. tag: 19.0.3-apache
  7. pullPolicy: IfNotPresent
  8. nextcloud:
  9. host: nextcloud.kube.home
  10. username: admin
  11. password: changeme
  12. datadir: /var/www/html/data
  13. strategy: "Recreate"
  14. service:
  15. nodePort: 9001
  16. appVolumeMounts:
  17. nextcloud-data:
  18. emptyDir: true
  19. mountPath: "/var/www"
  20. postgresAppVolumeMounts:
  21. postgres-data:
  22. emptyDir: true
  23. mountPath: "/var/lib/postgresql/data"
  24. postgres-backup:
  25. emptyDir: true
  26. mountPath: "/postgres_backups"