Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-02-13 12:52:23 +00:00
parent ced2b9eb2b
commit defb01fa86
15 changed files with 3300 additions and 0 deletions

View File

@ -0,0 +1,10 @@
# Changelog<br>
<a name="photoview-0.0.1"></a>
### photoview-0.0.1 (2022-02-13)
#### Feat
* Add photoview ([#1881](https://github.com/truecharts/apps/issues/1881))

View File

@ -0,0 +1,8 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide:
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.

View File

@ -0,0 +1,9 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.15.2
- name: postgresql
repository: https://truecharts.org/
version: 6.0.66
digest: sha256:6bd36e97cd642be91c3e34a6215f34452bebf8467cb64870364ed83ce994bd2d
generated: "2022-02-13T12:48:20.471263774Z"

View File

@ -0,0 +1,31 @@
apiVersion: v2
appVersion: "2.3.12"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.15.2
- condition: postgresql.enabled
name: postgresql
repository: https://truecharts.org/
version: 6.0.66
description: Photoview is a simple and user-friendly photo gallery.
home: https://github.com/truecharts/apps/tree/master/charts/stable/photoview
icon: https://truecharts.org/_static/img/appicons/photoview-icon.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/photoview/photoview
- https://hub.docker.com/r/viktorstrate/photoview
version: 0.0.1
annotations:
truecharts.org/catagories: |
- media
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,39 @@
# Introduction
Photoview is a simple and user-friendly photo gallery.
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://github.com/photoview/photoview>
* <https://hub.docker.com/r/viktorstrate/photoview>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | postgresql | 6.0.66 |
| https://truecharts.org | common | 8.15.2 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
## Uninstalling the Chart
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,3 @@
Photoview is a simple and user-friendly photo gallery.
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,38 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.MAPBOX_TOKEN | string | `""` | |
| env.PHOTOVIEW_DATABASE_DRIVER | string | `"postgres"` | |
| env.PHOTOVIEW_DISABLE_FACE_RECOGNITION | bool | `false` | |
| env.PHOTOVIEW_DISABLE_RAW_PROCESSING | bool | `false` | |
| env.PHOTOVIEW_DISABLE_VIDEO_ENCODING | bool | `false` | |
| env.PHOTOVIEW_LISTEN_PORT | string | `"{{ .Values.service.main.ports.main.targetPort }}"` | |
| env.PHOTOVIEW_MEDIA_CACHE | string | `"/cache"` | |
| env.TZ | string | `"UTC"` | |
| envValueFrom.PHOTOVIEW_POSTGRES_URL.secretKeyRef.key | string | `"url"` | |
| envValueFrom.PHOTOVIEW_POSTGRES_URL.secretKeyRef.name | string | `"dbcreds"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/photoview"` | |
| image.tag | string | `"2.3.12@sha256:84a2a71f6efdf659bbe127dc017cc4ef5fab34a20ba1d5c9c75321c2a75b9531"` | |
| persistence.cache.enabled | bool | `true` | |
| persistence.cache.mountPath | string | `"/cache"` | |
| persistence.photos.enabled | bool | `true` | |
| persistence.photos.mountPath | string | `"/photos"` | |
| postgresql.enabled | bool | `true` | |
| postgresql.existingSecret | string | `"dbcreds"` | |
| postgresql.postgresqlDatabase | string | `"photoview"` | |
| postgresql.postgresqlUsername | string | `"photoview"` | |
| service.main.ports.main.port | int | `10159` | |
| service.main.ports.main.targetPort | int | `10159` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,42 @@
image:
repository: tccr.io/truecharts/photoview
tag: 2.3.12@sha256:84a2a71f6efdf659bbe127dc017cc4ef5fab34a20ba1d5c9c75321c2a75b9531
pullPolicy: IfNotPresent
env:
TZ: UTC
PHOTOVIEW_DATABASE_DRIVER: "postgres"
PHOTOVIEW_LISTEN_PORT: "{{ .Values.service.main.ports.main.targetPort }}"
PHOTOVIEW_MEDIA_CACHE: "/cache"
MAPBOX_TOKEN: ""
PHOTOVIEW_DISABLE_FACE_RECOGNITION: false
PHOTOVIEW_DISABLE_VIDEO_ENCODING: false
PHOTOVIEW_DISABLE_RAW_PROCESSING: false
envValueFrom:
PHOTOVIEW_POSTGRES_URL:
secretKeyRef:
name: dbcreds
key: url
service:
main:
ports:
main:
port: 10159
targetPort: 10159
persistence:
# Don't use emptyDir, it stores, thumbnails and optimized media
cache:
enabled: true
mountPath: "/cache"
photos:
enabled: true
mountPath: "/photos"
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: photoview
postgresqlDatabase: photoview

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{{ include "common.all" . }}

View File

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/_static/img/appicons/photoview-icon.png
categories:
- media