Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-09-07 07:17:56 +00:00
parent f753b44baf
commit 3dd9e26b29
205 changed files with 13457 additions and 84 deletions

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,6 @@
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T07:17:12.01323494Z"

View File

@ -0,0 +1,22 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
deprecated: false
description: Advanced tool to create your own TrueCharts-based App
home: https://github.com/truecharts/apps/tree/master/charts/stable/custom-app
icon: https://truecharts.org/_static/img/custom-app-icon.png
keywords:
- custom
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: custom-app
sources:
- https://github.com/truecharts/apps/tree/master/charts/stable/custom-app
type: application
version: 0.2.17

View File

@ -0,0 +1,37 @@
# Introduction
Advanced tool to create your own TrueCharts-based App
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/truecharts/apps/tree/master/charts/stable/custom-app>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | common | 6.13.7 |
## 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,4 @@
Advanced tool to create your own TrueCharts-based App
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
Advanced tool to create your own TrueCharts-based App

Binary file not shown.

View File

@ -0,0 +1,35 @@
# 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 | object | `{}` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | |
| image.tag | string | `"v0.18.636"` | |
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| persistence.config.size | string | `"100Gi"` | |
| persistence.config.type | string | `"pvc"` | |
| service.main.enabled | bool | `true` | |
| service.main.ports.main.port | int | `9117` | |
| service.main.portsList[0].enabled | bool | `true` | |
| service.main.portsList[0].name | string | `"extraport"` | |
| service.main.portsList[0].port | int | `9118` | |
| serviceList[0].enabled | bool | `true` | |
| serviceList[0].name | string | `"extraservice"` | |
| serviceList[0].portsList[0].enabled | bool | `true` | |
| serviceList[0].portsList[0].name | string | `"extrasvcport"` | |
| serviceList[0].portsList[0].port | int | `9119` | |
| strategy.type | string | `"Recreate"` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,10 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1,43 @@
# Default values for Jackett.
image:
repository: ghcr.io/k8s-at-home/jackett
pullPolicy: IfNotPresent
tag: v0.18.666
strategy:
type: Recreate
service:
main:
enabled: true
ports:
main:
port: 9117
portsList:
- name: "extraport"
enabled: true
port: 9118
serviceList:
- name: extraservice
enabled: true
portsList:
- name: "extrasvcport"
enabled: true
port: 9119
env: {}
# TZ: UTC
# PUID: 1001
# PGID: 1001
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
version: 5.14.2
digest: sha256:cacb0024ee596935c01beb9b1c32ae93018ed54fa0c9eacb8d54f8f78fb335f1
generated: "2021-09-07T03:21:15.261253352Z"
generated: "2021-09-07T07:17:18.687665022Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:12:58.268209311Z"
generated: "2021-09-07T07:09:57.30385704Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:13:03.739910841Z"
generated: "2021-09-07T07:10:01.552589877Z"

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
version: 15.3.1
digest: sha256:7804f400715e01ecde27d999ea9a37fc4b56e61a2fee378b5d428afd27277f25
generated: "2021-09-07T03:13:11.877570092Z"
generated: "2021-09-07T07:10:08.462049367Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:13:21.168121358Z"
generated: "2021-09-07T07:10:17.279275102Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:13:26.288984419Z"
generated: "2021-09-07T07:10:21.696228712Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:13:36.709708574Z"
generated: "2021-09-07T07:10:30.586059243Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:13:31.50091417Z"
generated: "2021-09-07T07:10:26.028769683Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:13:41.911369519Z"
generated: "2021-09-07T07:10:34.923385536Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:13:47.127280724Z"
generated: "2021-09-07T07:10:39.413405447Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:13:52.222854129Z"
generated: "2021-09-07T07:10:43.518323013Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:13:57.467463959Z"
generated: "2021-09-07T07:10:47.864006789Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:14:02.757075993Z"
generated: "2021-09-07T07:10:52.25770092Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:14:07.771323927Z"
generated: "2021-09-07T07:10:56.587105158Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:14:12.854570835Z"
generated: "2021-09-07T07:11:00.765356276Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:14:17.968462398Z"
generated: "2021-09-07T07:11:05.453474833Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:14:23.136771963Z"
generated: "2021-09-07T07:11:10.152196346Z"

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://truecharts.org/
version: 1.6.1
digest: sha256:7d052f87287c75c33137e6e8a856ef71bb138717949069ee2102c0c11cad8a85
generated: "2021-09-07T03:14:29.493241328Z"
generated: "2021-09-07T07:11:15.731820335Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:14:35.643812479Z"
generated: "2021-09-07T07:11:21.30221317Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:14:40.716012935Z"
generated: "2021-09-07T07:11:25.552750518Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:14:46.015791008Z"
generated: "2021-09-07T07:11:29.791296442Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:14:51.055262688Z"
generated: "2021-09-07T07:11:33.988429213Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:14:56.521395827Z"
generated: "2021-09-07T07:11:38.293230213Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:15:01.772789424Z"
generated: "2021-09-07T07:11:42.691441575Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:15:06.788479998Z"
generated: "2021-09-07T07:11:47.370766058Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:15:11.826914513Z"
generated: "2021-09-07T07:11:52.200388744Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:15:16.953832771Z"
generated: "2021-09-07T07:11:56.961932658Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:15:21.986394506Z"
generated: "2021-09-07T07:12:01.451906778Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:15:27.133129645Z"
generated: "2021-09-07T07:12:06.010945582Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:15:32.211784112Z"
generated: "2021-09-07T07:12:10.582938126Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:15:37.293528804Z"
generated: "2021-09-07T07:12:15.250062503Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:15:42.577155995Z"
generated: "2021-09-07T07:12:20.050039324Z"

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,6 @@
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T07:12:24.782337844Z"

View File

@ -0,0 +1,27 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
deprecated: false
description: API Support for your favorite torrent trackers.
home: https://github.com/truecharts/apps/tree/master/charts/stable/jackett
icon: https://truecharts.org/_static/img/jackett-icon.png
keywords:
- jackett
- torrent
- usenet
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
- email: kjeld@schouten-lebbing.nl
name: Ornias1993
url: truecharts.org
name: jackett
sources:
- https://github.com/Jackett/Jackett
type: application
version: 6.11.16

View File

@ -0,0 +1,37 @@
# Introduction
API Support for your favorite torrent trackers.
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/Jackett/Jackett>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | common | 6.13.7 |
## 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,4 @@
API Support for your favorite torrent trackers.
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
API Support for your favorite torrent trackers.

Binary file not shown.

View File

@ -0,0 +1,30 @@
# 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 | object | `{}` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | |
| image.tag | string | `"v0.18.636"` | |
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| persistence.config.size | string | `"100Gi"` | |
| persistence.config.type | string | `"pvc"` | |
| probes.liveness.path | string | `"/UI/Login"` | |
| probes.readiness.path | string | `"/UI/Login"` | |
| probes.startup.path | string | `"/UI/Login"` | |
| service.main.enabled | bool | `true` | |
| service.main.ports.main.port | int | `9117` | |
| strategy.type | string | `"Recreate"` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,25 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
repository: ghcr.io/k8s-at-home/jackett
pullPolicy: IfNotPresent
tag: v0.18.666
probes:
liveness:
path: "/UI/Login"
readiness:
path: "/UI/Login"
startup:
path: "/UI/Login"
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1,41 @@
# Default values for Jackett.
image:
repository: ghcr.io/k8s-at-home/jackett
pullPolicy: IfNotPresent
tag: v0.18.666
strategy:
type: Recreate
service:
main:
enabled: true
ports:
main:
port: 9117
probes:
liveness:
path: "/UI/Login"
readiness:
path: "/UI/Login"
startup:
path: "/UI/Login"
env: {}
# TZ: UTC
# PUID: 1001
# PGID: 1001
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:15:52.827526977Z"
generated: "2021-09-07T07:12:28.992714992Z"

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,6 @@
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T07:12:33.227182861Z"

View File

@ -0,0 +1,27 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
deprecated: false
description: Jellyfin is a Free Software Media System
home: https://github.com/truecharts/apps/tree/master/charts/stable/jellyfin
icon: https://truecharts.org/_static/img/jellyfin-icon.png
keywords:
- jellyfin
- plex
- emby
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
- email: kjeld@schouten-lebbing.nl
name: Ornias1993
url: truecharts.org
name: jellyfin
sources:
- https://github.com/jellyfin/jellyfin
type: application
version: 6.11.14

View File

@ -0,0 +1,37 @@
# Introduction
Jellyfin is a Free Software Media System
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/jellyfin/jellyfin>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | common | 6.13.7 |
## 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,4 @@
Jellyfin is a Free Software Media System
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
Jellyfin is a Free Software Media System

Binary file not shown.

View File

@ -0,0 +1,31 @@
# 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 |
|-----|------|---------|-------------|
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"jellyfin/jellyfin"` | |
| image.tag | string | `"10.7.6"` | |
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| persistence.config.size | string | `"100Gi"` | |
| persistence.config.type | string | `"pvc"` | |
| podSecurityContext.fsGroup | int | `568` | |
| podSecurityContext.runAsGroup | int | `568` | |
| podSecurityContext.runAsNonRoot | bool | `true` | |
| podSecurityContext.runAsUser | int | `568` | |
| podSecurityContext.supplementalGroups[0] | int | `44` | |
| podSecurityContext.supplementalGroups[1] | int | `107` | |
| service.main.ports.main.port | int | `8096` | |
| strategy.type | string | `"Recreate"` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,15 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
repository: jellyfin/jellyfin
pullPolicy: IfNotPresent
tag: 10.7.7
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -0,0 +1,31 @@
# Default values for jellyfin.
image:
repository: jellyfin/jellyfin
pullPolicy: IfNotPresent
tag: 10.7.7
strategy:
type: Recreate
# 44=video 107=render
podSecurityContext:
runAsNonRoot: true
runAsUser: 568
runAsGroup: 568
fsGroup: 568
supplementalGroups: [44, 107]
service:
main:
ports:
main:
port: 8096
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:16:02.819181987Z"
generated: "2021-09-07T07:12:37.499122157Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:16:07.838328259Z"
generated: "2021-09-07T07:12:41.758011473Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:16:12.882478756Z"
generated: "2021-09-07T07:12:45.930118878Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:16:18.096049257Z"
generated: "2021-09-07T07:12:50.355906545Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:16:23.23835188Z"
generated: "2021-09-07T07:12:54.761835845Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:16:28.319444414Z"
generated: "2021-09-07T07:12:58.955243323Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:16:33.491250719Z"
generated: "2021-09-07T07:13:03.713071156Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:16:38.484070937Z"
generated: "2021-09-07T07:13:08.443284788Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:16:43.579096962Z"
generated: "2021-09-07T07:13:13.24972163Z"

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,6 @@
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T07:13:17.762499857Z"

View File

@ -0,0 +1,24 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
deprecated: false
description: Eclipse Mosquitto - An open source MQTT broker
home: https://github.com/truecharts/apps/tree/master/charts/incubator/mosquitto
icon: https://projects.eclipse.org/sites/default/files/mosquitto-200px.png
keywords:
- mosquitto
- MQTT
- eclipse-iot
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: mosquitto
sources:
- https://github.com/eclipse/mosquitto
type: application
version: 1.11.14

View File

@ -0,0 +1,37 @@
# Introduction
Eclipse Mosquitto - An open source MQTT broker
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/eclipse/mosquitto>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | common | 6.13.7 |
## 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,4 @@
Eclipse Mosquitto - An open source MQTT broker
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
Eclipse Mosquitto - An open source MQTT broker

Binary file not shown.

View File

@ -0,0 +1,22 @@
# 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 |
|-----|------|---------|-------------|
| auth.enabled | bool | `false` | By enabling this, `allow_anonymous` gets set to `false` in the mosquitto config. |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"eclipse-mosquitto"` | image repository |
| image.tag | string | `"2.0.11"` | image tag |
| persistence.configinc | object | See values.yaml | Configure a persistent volume to place *.conf mosquitto-config-files in. When enabled, this gets set as `include_dir` in the mosquitto config. |
| persistence.data | object | See values.yaml | Configure a persistent volume to place mosquitto data in. When enabled, this enables `persistence` and `persistence_location` in the mosquitto config. |
| service | object | See values.yaml | Configures service settings for the chart. Normally this does not need to be modified. |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,18 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
# -- image repository
repository: eclipse-mosquitto
# -- image tag
tag: 2.0.12
# -- image pull policy
pullPolicy: IfNotPresent
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,17 @@
{{/* Make sure all variables are set properly */}}
{{- include "common.values.setup" . }}
{{/* Append the configMap volume to the volumes */}}
{{- define "mosquitto.configVolume" -}}
enabled: "true"
mountPath: "/mosquitto/config/mosquitto.conf"
subPath: "mosquitto.conf"
type: "custom"
volumeSpec:
configMap:
name: {{ template "common.names.fullname" . }}-config
{{- end -}}
{{- $_ := set .Values.persistence "mosquitto-config" (include "mosquitto.configVolume" . | fromYaml) -}}
{{/* Render the templates */}}
{{ include "common.all" . }}

View File

@ -0,0 +1,22 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "common.names.fullname" . }}-config
labels:
{{- include "common.labels" . | nindent 4 }}
data:
mosquitto.conf: |
listener {{ .Values.service.main.ports.main.port }}
{{- if .Values.auth.enabled }}
allow_anonymous false
{{- else }}
allow_anonymous true
{{- end }}
{{- if .Values.persistence.data.enabled }}
persistence true
persistence_location {{ .Values.persistence.data.mountPath }}
autosave_interval 1800
{{- end }}
{{- if .Values.persistence.configinc.enabled }}
include_dir {{ .Values.persistence.configinc.mountPath }}
{{- end }}

View File

@ -0,0 +1,43 @@
# Default values for Jackett.
image:
# -- image repository
repository: eclipse-mosquitto
# -- image tag
tag: 2.0.12
# -- image pull policy
pullPolicy: IfNotPresent
# -- Configures service settings for the chart. Normally this does not need to be modified.
# @default -- See values.yaml
service:
main:
ports:
main:
protocol: TCP
enabled: true
port: 1883
auth:
# -- By enabling this, `allow_anonymous` gets set to `false` in the mosquitto config.
enabled: false
persistence:
# -- Configure a persistent volume to place mosquitto data in.
# When enabled, this enables `persistence` and `persistence_location` in the mosquitto config.
# @default -- See values.yaml
data:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /mosquitto/data
# -- Configure a persistent volume to place *.conf mosquitto-config-files in.
# When enabled, this gets set as `include_dir` in the mosquitto config.
# @default -- See values.yaml
configinc:
enabled: true
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"
mountPath: /mosquitto/configinc

View File

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 6.13.7
digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d
generated: "2021-09-07T03:16:53.777409585Z"
generated: "2021-09-07T07:13:22.187813486Z"

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T03:16:58.801373584Z"
generated: "2021-09-07T07:13:26.703831172Z"

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.bitnami.com/bitnami
version: 15.3.1
digest: sha256:7804f400715e01ecde27d999ea9a37fc4b56e61a2fee378b5d428afd27277f25
generated: "2021-09-07T03:17:06.639357356Z"
generated: "2021-09-07T07:13:33.616078717Z"

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,6 @@
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d
generated: "2021-09-07T07:13:41.964104953Z"

View File

@ -0,0 +1,23 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org/
version: 6.13.7
deprecated: false
description: Node-RED is low-code programming for event-driven applications
home: https://github.com/truecharts/apps/tree/master/charts/incubator/node-red
icon: https://nodered.org/about/resources/media/node-red-icon-2.png
keywords:
- node-red
- nodered
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: node-red
sources:
- https://github.com/node-red/node-red-docker
type: application
version: 6.11.14

View File

@ -0,0 +1,37 @@
# Introduction
Node-RED is low-code programming for event-driven applications
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/node-red/node-red-docker>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | common | 6.13.7 |
## 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,4 @@
Node-RED is low-code programming for event-driven applications
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
Node-RED is low-code programming for event-driven applications

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More