Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-03-13 21:58:45 +00:00
parent c80224552f
commit beedf1f7ce
14 changed files with 3740 additions and 0 deletions

View File

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

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: 9.1.2
digest: sha256:c31f80d9a593b307274ae84096234c1928a407d3899cf5b173eac54118901f24
generated: "2022-03-13T21:51:29.335772552Z"

View File

@ -0,0 +1,28 @@
apiVersion: v2
appVersion: "4.2.7"
dependencies:
- name: common
repository: https://truecharts.org
version: 9.1.2
description: TinyMediaManager is a full featured media manager to organize and clean up your media library.
home: https://github.com/truecharts/apps/tree/master/charts/stable/tinymediamanager
icon: https://truecharts.org/_static/img/appicons/tinymediamanager.png
keywords:
- tiny
- media
- manager
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: tinymediamanager
sources:
- https://hub.docker.com/r/tinymediamanager/tinymediamanager
- https://gitlab.com/tinyMediaManager/tinyMediaManager
version: 0.0.1
annotations:
truecharts.org/catagories: |
- media
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,38 @@
# Introduction
TinyMediaManager is a full featured media manager to organize and clean up your media library.
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://hub.docker.com/r/tinymediamanager/tinymediamanager>
* <https://gitlab.com/tinyMediaManager/tinyMediaManager>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 9.1.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 @@
TinyMediaManager is a full featured media manager to organize and clean up your media library.
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

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 | `"tinymediamanager/tinymediamanager"` | |
| image.tag | string | `"4.2.7@sha256:80602caa61aea1f274265af9a8e3e90722d18f2d191b586d9304ada590e9d334"` | |
| persistence.data.enabled | bool | `true` | |
| persistence.data.mountPath | string | `"/data"` | |
| persistence.movies.enabled | bool | `true` | |
| persistence.movies.mountPath | string | `"/media/movies"` | |
| persistence.tvshows.enabled | bool | `true` | |
| persistence.tvshows.mountPath | string | `"/media/tvshows"` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| secret.PASSWORD | string | `""` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.main.port | int | `10179` | |
| service.main.ports.main.targetPort | int | `4000` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,33 @@
image:
repository: tinymediamanager/tinymediamanager
tag: 4.2.7@sha256:80602caa61aea1f274265af9a8e3e90722d18f2d191b586d9304ada590e9d334
pullPolicy: IfNotPresent
securityContext:
runAsNonRoot: false
readOnlyRootFilesystem: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
secret:
PASSWORD: ""
service:
main:
ports:
main:
port: 10179
targetPort: 4000
persistence:
data:
enabled: true
mountPath: "/data"
movies:
enabled: true
mountPath: "/media/movies"
tvshows:
enabled: true
mountPath: "/media/tvshows"

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

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