_configuration.tpl 700 B

123456789101112131415161718
  1. {{- define "pigallery.configuration" -}}
  2. configmap:
  3. pigallery-config:
  4. enabled: true
  5. data:
  6. # While its marked as temporary folder, it is not to be thrown away.
  7. # It stores the thumbnails and other generated files.
  8. Media-tempFolder: /app/data/thumbnails
  9. Media-folder: /app/data/media
  10. Database-sqlite-DBFileName: sqlite.db
  11. Database-dbFolder: /app/data/db
  12. Database-type: sqlite
  13. Server-applicationTitle: {{ .Values.pigalleryConfig.applicationTitle | quote }}
  14. Server-port: {{ .Values.pigalleryNetwork.webPort | quote }}
  15. PORT: {{ .Values.pigalleryNetwork.webPort | quote }}
  16. PI_DOCKER: "true"
  17. NODE_ENV: production
  18. {{- end -}}