test_values.yaml 860 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. updateStrategy: "Recreate"
  14. postgresql:
  15. backupVolume:
  16. mountPath: "/postgres_backups"
  17. datasetName: "ix-postgres_backups"
  18. dataVolume:
  19. mountPath: "/var/lib/postgresql/data"
  20. datasetName: "ix-postgres_data"
  21. service:
  22. nodePort: 31000
  23. emptyDirVolumes: true
  24. ixChartContext: {}
  25. environmentVariables: []
  26. appVolumeMounts:
  27. nextcloud-data:
  28. emptyDir: true
  29. mountPath: "/var/www"
  30. postgresAppVolumeMounts:
  31. postgres-data:
  32. emptyDir: true
  33. mountPath: "/var/lib/postgresql/data"
  34. postgres-backup:
  35. emptyDir: true
  36. mountPath: "/postgres_backups"