Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
a042e7f148
commit
6422ea2b30
|
@ -0,0 +1,13 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [photoview-9.0.2](https://github.com/truecharts/charts/compare/photoview-9.0.1...photoview-9.0.2) (2023-07-27)
|
||||
|
||||
### Feat
|
||||
|
||||
- Return to Stable ([#10882](https://github.com/truecharts/charts/issues/10882))
|
||||
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
apiVersion: v2
|
||||
appVersion: "2.3.13"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 13.2.1
|
||||
description: Photoview is a simple and user-friendly photo gallery.
|
||||
home: https://truecharts.org/charts/stable/photoview
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/photoview.png
|
||||
keywords:
|
||||
- photo
|
||||
- gallery
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: photoview
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/photoview
|
||||
- https://github.com/photoview/photoview
|
||||
version: 9.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
|
@ -0,0 +1,27 @@
|
|||
# README
|
||||
|
||||
## General Info
|
||||
|
||||
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
|
||||
However only installations using the TrueNAS SCALE Apps system are supported.
|
||||
|
||||
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
|
||||
- See the [Website](https://truecharts.org)
|
||||
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
|
||||
|
||||
---
|
||||
|
||||
## Sponsor TrueCharts
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
|
||||
*All Rights Reserved - The TrueCharts Project*
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [photoview-9.0.2](https://github.com/truecharts/charts/compare/photoview-9.0.1...photoview-9.0.2) (2023-07-27)
|
||||
|
||||
### Feat
|
||||
|
||||
- Return to Stable ([#10882](https://github.com/truecharts/charts/issues/10882))
|
||||
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
Photoview is a simple and user-friendly photo gallery.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/photoview](https://truecharts.org/charts/stable/photoview)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,48 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/photoview
|
||||
tag: 2.3.13@sha256:2df4e8e7a7f9b15e7d4af8d3b85d20c37434cb8503f04f48c50d30f1982a757b
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 10159
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
env:
|
||||
PHOTOVIEW_LISTEN_PORT: "{{ .Values.service.main.ports.main.port }}"
|
||||
PHOTOVIEW_LISTEN_IP: "127.0.0.1"
|
||||
PHOTOVIEW_DATABASE_DRIVER: "postgres"
|
||||
PHOTOVIEW_MEDIA_CACHE: "/cache"
|
||||
MAPBOX_TOKEN: ""
|
||||
PHOTOVIEW_DISABLE_FACE_RECOGNITION: false
|
||||
PHOTOVIEW_DISABLE_VIDEO_ENCODING: false
|
||||
PHOTOVIEW_DISABLE_RAW_PROCESSING: false
|
||||
PHOTOVIEW_POSTGRES_URL:
|
||||
secretKeyRef:
|
||||
name: secrets
|
||||
key: PHOTOVIEW_POSTGRES_URL
|
||||
|
||||
persistence:
|
||||
# Don't use emptyDir, it stores, thumbnails and optimized media
|
||||
cache:
|
||||
enabled: true
|
||||
mountPath: "/cache"
|
||||
photos:
|
||||
enabled: true
|
||||
mountPath: "/photos"
|
||||
|
||||
cnpg:
|
||||
main:
|
||||
enabled: true
|
||||
user: photoview
|
||||
database: photoview
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -0,0 +1,6 @@
|
|||
{{/* Define the secrets */}}
|
||||
{{- define "photoview.secrets" -}}
|
||||
enabled: true
|
||||
data:
|
||||
PHOTOVIEW_POSTGRES_URL: {{ (printf "%s?client_encoding=utf8" (.Values.cnpg.main.creds.std | trimAll "\"")) | quote }}
|
||||
{{- end -}}
|
|
@ -0,0 +1,11 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{/* Render secrets for photoview */}}
|
||||
{{- $secrets := include "photoview.secrets" . | fromYaml -}}
|
||||
{{- if $secrets -}}
|
||||
{{- $_ := set .Values.secret "secrets" $secrets -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -0,0 +1,5 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/photoview.png
|
||||
categories:
|
||||
- media
|
||||
|
||||
screenshots: []
|
Loading…
Reference in New Issue