Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-10-13 21:35:41 +00:00
parent 9c53919330
commit f452db5442
669 changed files with 75658 additions and 122 deletions

View File

@ -0,0 +1,8 @@
<a name="amcrest2mqtt-0.0.2"></a>
### [amcrest2mqtt-0.0.2](https://github.com/truecharts/apps/compare/amcrest2mqtt-0.0.1...amcrest2mqtt-0.0.2) (2021-10-13)
#### Chore
* update non-major docker tags ([#1134](https://github.com/truecharts/apps/issues/1134))

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
digest: sha256:5785ccff652662d3ac3d8698a03b12087f89608220c84ee7072135c9fddda966
generated: "2021-10-13T21:23:08.654689738Z"

View File

@ -0,0 +1,20 @@
apiVersion: v2
appVersion: "1.0.9"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
description: Expose all events from an Amcrest device to an MQTT broker
home: https://github.com/truecharts/apps/tree/master/charts/stable/amcrest2mqtt
icon: https://raw.githubusercontent.com/k8s-at-home/organization/main/logo/k8s-at-home-400.png
keywords:
- amcrest2mqtt
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: amcrest2mqtt
sources:
- https://github.com/dchesterton/amcrest2mqtt
version: 0.0.2

View File

@ -0,0 +1,37 @@
# Introduction
Expose all events from an Amcrest device to an 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/dchesterton/amcrest2mqtt>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.2.1 |
## 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 @@
Expose all events from an Amcrest device to an MQTT broker
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

View File

@ -0,0 +1,34 @@
# 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 | See below | environment variables. See more environment variables in the [amcrest2mqtt repo](https://github.com/dchesterton/amcrest2mqtt). |
| env.AMCREST_HOST | string | `""` | Host name used to connect to the Amcrest device |
| env.AMCREST_PORT | int | `80` | Port used to connect to the Amcrest device |
| env.HOME_ASSISTANT | string | `"false"` | Enable Home Assistant autodiscovery |
| env.HOME_ASSISTANT_PREFIX | string | `"homeassistant"` | Home Assistant autodiscovery prefix |
| env.MQTT_HOST | string | `"localhost"` | Host name used to connect to the MQTT broker |
| env.MQTT_PORT | int | `1883` | Port used to connect to the MQTT broker |
| env.TZ | string | `"UTC"` | Set the container timezone |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"dchesterton/amcrest2mqtt"` | image repository |
| image.tag | string | `"1.0.9@sha256:cc70f2238aa9fdc77185eced6131190d4b159e7b88591ca238aee3ab863cca65"` | image tag |
| probes.liveness.enabled | bool | `false` | |
| probes.readiness.enabled | bool | `false` | |
| probes.startup.enabled | bool | `false` | |
| secret.AMCREST_PASSWORD | string | `"changeme"` | Password used to connect to the Amcrest device |
| secret.AMCREST_USERNAME | string | `"admin"` | User name used to connect to the Amcrest device |
| secret.MQTT_PASSWORD | string | `"changeme"` | Password used to connect to the MQTT broker |
| secret.MQTT_USERNAME | string | `"mqttuser"` | User name used to connect to the MQTT broker |
| service.main.enabled | bool | `false` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,27 @@
##
# 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: dchesterton/amcrest2mqtt
pullPolicy: IfNotPresent
tag: 1.0.9@sha256:cc70f2238aa9fdc77185eced6131190d4b159e7b88591ca238aee3ab863cca65
service:
main:
enabled: false
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
##
# 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,2 @@
{{/* Render the templates */}}
{{ include "common.all" . }}

View File

@ -0,0 +1,47 @@
image:
# -- image repository
repository: dchesterton/amcrest2mqtt
# -- image tag
tag: 1.0.9@sha256:cc70f2238aa9fdc77185eced6131190d4b159e7b88591ca238aee3ab863cca65
# -- image pull policy
pullPolicy: IfNotPresent
service:
main:
enabled: false
probes:
liveness:
enabled: false
readiness:
enabled: false
startup:
enabled: false
secret:
# -- User name used to connect to the Amcrest device
AMCREST_USERNAME: "admin"
# -- Password used to connect to the Amcrest device
AMCREST_PASSWORD: "changeme"
# -- User name used to connect to the MQTT broker
MQTT_USERNAME: "mqttuser"
# -- Password used to connect to the MQTT broker
MQTT_PASSWORD: "changeme"
# -- environment variables. See more environment variables in the [amcrest2mqtt repo](https://github.com/dchesterton/amcrest2mqtt).
# @default -- See below
env:
# -- Set the container timezone
TZ: UTC
# -- Host name used to connect to the Amcrest device
AMCREST_HOST: ""
# -- Port used to connect to the Amcrest device
AMCREST_PORT: 80
# -- Host name used to connect to the MQTT broker
MQTT_HOST: "localhost"
# -- Port used to connect to the MQTT broker
MQTT_PORT: 1883
# -- Enable Home Assistant autodiscovery
HOME_ASSISTANT: "false"
# -- Home Assistant autodiscovery prefix
HOME_ASSISTANT_PREFIX: "homeassistant"

View File

@ -0,0 +1,3 @@
categories:
- media
icon_url: https://raw.githubusercontent.com/k8s-at-home/organization/main/logo/k8s-at-home-400.png

View File

@ -0,0 +1,8 @@
<a name="apache-musicindex-0.0.2"></a>
### [apache-musicindex-0.0.2](https://github.com/truecharts/apps/compare/apache-musicindex-0.0.1...apache-musicindex-0.0.2) (2021-10-13)
#### Chore
* update non-major docker tags ([#1134](https://github.com/truecharts/apps/issues/1134))

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
digest: sha256:5785ccff652662d3ac3d8698a03b12087f89608220c84ee7072135c9fddda966
generated: "2021-10-13T21:23:21.621548254Z"

View File

@ -0,0 +1,23 @@
apiVersion: v2
appVersion: "1.4.1"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
description: Index and stream music using apache-musicindex and m3u playlists
home: https://github.com/truecharts/apps/tree/master/charts/stable/apache-musicindex
icon: https://en.wikipedia.org/wiki/Apache_HTTP_Server#/media/File:Apache_HTTP_server_logo_(2019-present).svg
keywords:
- apache-musicindex
- streaming
- m3u
- playlist
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: apache-musicindex
sources:
- http://hacks.slashdirt.org/sw/musicindex/
version: 0.0.2

View File

@ -0,0 +1,37 @@
# Introduction
Index and stream music using apache-musicindex and m3u playlists
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
* <http://hacks.slashdirt.org/sw/musicindex/>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.2.1 |
## 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 @@
Index and stream music using apache-musicindex and m3u playlists
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

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 |
|-----|------|---------|-------------|
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"ghcr.io/k8s-at-home/apache-musicindex"` | image repository |
| image.tag | string | `"v1.4.1-2@sha256:c8b5cf5fbf4bbf097fb516f82bfc3ecb1ad971e8059dc9722b4d10bb7d7faee7"` | image tag |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| securityContext | object | See values.yaml | Allows to start web server on ports 80 and 443 |
| service | object | See values.yaml | Configures service settings for the chart. |
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: ghcr.io/k8s-at-home/apache-musicindex
pullPolicy: IfNotPresent
tag: v1.4.1-2@sha256:c8b5cf5fbf4bbf097fb516f82bfc3ecb1ad971e8059dc9722b4d10bb7d7faee7
##
# 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,25 @@
image:
# -- image repository
repository: ghcr.io/k8s-at-home/apache-musicindex
# -- image tag
tag: v1.4.1-2@sha256:c8b5cf5fbf4bbf097fb516f82bfc3ecb1ad971e8059dc9722b4d10bb7d7faee7
# -- image pull policy
pullPolicy: IfNotPresent
# -- Allows to start web server on ports 80 and 443
# @default -- See values.yaml
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 80

View File

@ -0,0 +1,3 @@
categories:
- media
icon_url: https://en.wikipedia.org/wiki/Apache_HTTP_Server#/media/File:Apache_HTTP_server_logo_(2019-present).svg

View File

@ -0,0 +1,8 @@
<a name="aria2-0.0.2"></a>
### [aria2-0.0.2](https://github.com/truecharts/apps/compare/aria2-0.0.1...aria2-0.0.2) (2021-10-13)
#### Chore
* update non-major docker tags ([#1134](https://github.com/truecharts/apps/issues/1134))

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
digest: sha256:5785ccff652662d3ac3d8698a03b12087f89608220c84ee7072135c9fddda966
generated: "2021-10-13T21:23:34.595079709Z"

View File

@ -0,0 +1,20 @@
apiVersion: v2
appVersion: "latest"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
description: aria server for downloading web content
home: https://github.com/truecharts/apps/tree/master/charts/stable/aira2
icon: https://avatars.githubusercontent.com/u/13545224?s=200&v=4
keywords:
- aria2
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: aria2
sources:
- https://github.com/P3TERX/Aria2-Pro-Docker
version: 0.0.2

View File

@ -0,0 +1,37 @@
# Introduction
aria server for downloading web content
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/P3TERX/Aria2-Pro-Docker>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.2.1 |
## 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 @@
aria server for downloading web content
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

View File

@ -0,0 +1,36 @@
# 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.PUID | int | `568` | |
| env.RPC_PORT | int | `6800` | |
| env.RPC_SECRET | string | `"ChangemeNow"` | |
| env.TZ | string | `"UTC"` | Set the container timezone |
| env.UMASK_SET | int | `18` | |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"p3terx/aria2-pro"` | image repository |
| image.tag | string | `"latest@sha256:2589527dfef6351d459f3a6781e4efef41d694878765b107413a6eb4bb6bbca7"` | image tag |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountpath | string | `"/config"` | |
| persistence.data.enabled | bool | `true` | |
| persistence.data.mountpath | string | `"/downloads"` | |
| persistence.varrun.enabled | bool | `true` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.listen.enabled | bool | `true` | |
| service.main.ports.listen.port | int | `6888` | |
| service.main.ports.main.enabled | bool | `true` | |
| service.main.ports.main.port | int | `6800` | |
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: p3terx/aria2-pro
pullPolicy: IfNotPresent
tag: latest@sha256:2589527dfef6351d459f3a6781e4efef41d694878765b107413a6eb4bb6bbca7
##
# 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,50 @@
image:
# -- image repository
repository: p3terx/aria2-pro
# -- image tag
tag: latest@sha256:2589527dfef6351d459f3a6781e4efef41d694878765b107413a6eb4bb6bbca7
# -- image pull policy
pullPolicy: IfNotPresent
# -- environment variables. See more environment variables in the [Aria2c documentation](https://github.com/P3TERX/Aria2-Pro-Docker).
# @default -- See below
env:
# -- Set the container timezone
TZ: UTC
PUID: 568
UMASK_SET: 022
RPC_SECRET: ChangemeNow # Or From a secret
RPC_PORT: 6800
# LISTEN_PORT: 6888
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
enabled: true
port: 6800
listen:
enabled: true
port: 6888
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
data:
enabled: true
mountpath: /downloads
config:
enabled: true
mountpath: /config
varrun:
enabled: true

View File

@ -0,0 +1,3 @@
categories:
- media
icon_url: https://avatars.githubusercontent.com/u/13545224?s=200PLACEHOLDERICONv=4

View File

@ -0,0 +1,8 @@
<a name="audacity-0.0.2"></a>
### [audacity-0.0.2](https://github.com/truecharts/apps/compare/audacity-0.0.1...audacity-0.0.2) (2021-10-13)
#### Chore
* update non-major docker tags ([#1134](https://github.com/truecharts/apps/issues/1134))

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
digest: sha256:5785ccff652662d3ac3d8698a03b12087f89608220c84ee7072135c9fddda966
generated: "2021-10-13T21:23:47.349268325Z"

View File

@ -0,0 +1,26 @@
apiVersion: v2
appVersion: "3.0.2"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
description: An easy-to-use, multi-track audio editor and recorder
home: https://github.com/truecharts/apps/tree/master/charts/stable/audacity
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/audacity-logo.png
keywords:
- audacity
- music
- recorder
- editor
- audio
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: audacity
sources:
- https://github.com/linuxserver/docker-audacity
- https://www.audacityteam.org/
type: application
version: 0.0.2

View File

@ -0,0 +1,38 @@
# Introduction
An easy-to-use, multi-track audio editor and recorder
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/linuxserver/docker-audacity>
* <https://www.audacityteam.org/>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.2.1 |
## 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 @@
An easy-to-use, multi-track audio editor and recorder
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

View File

@ -0,0 +1,27 @@
# 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.PUID | int | `568` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/linuxserver/audacity"` | |
| image.tag | string | `"version-3.0.2@sha256:cdf203db1e50e18349f16c5958f7061b18625501f5e2f7a15cd69262185e3e84"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| persistence.varrun.enabled | bool | `true` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.main.port | int | `3000` | |
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: ghcr.io/linuxserver/audacity
pullPolicy: IfNotPresent
tag: version-3.0.2@sha256:cdf203db1e50e18349f16c5958f7061b18625501f5e2f7a15cd69262185e3e84
##
# 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,2 @@
{{ include "common.all" . }}

View File

@ -0,0 +1,29 @@
image:
repository: ghcr.io/linuxserver/audacity
pullPolicy: IfNotPresent
tag: version-3.0.2@sha256:cdf203db1e50e18349f16c5958f7061b18625501f5e2f7a15cd69262185e3e84
env:
PUID: 568
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 3000
persistence:
config:
enabled: true
mountPath: /config
varrun:
enabled: true

View File

@ -0,0 +1,3 @@
categories:
- media
icon_url: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/audacity-logo.png"

View File

@ -0,0 +1,8 @@
<a name="beets-0.0.2"></a>
### [beets-0.0.2](https://github.com/truecharts/apps/compare/beets-0.0.1...beets-0.0.2) (2021-10-13)
#### Chore
* update non-major docker tags ([#1134](https://github.com/truecharts/apps/issues/1134))

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
digest: sha256:5785ccff652662d3ac3d8698a03b12087f89608220c84ee7072135c9fddda966
generated: "2021-10-13T21:24:00.169888566Z"

View File

@ -0,0 +1,26 @@
apiVersion: v2
appVersion: "1.5.0"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
description: A music library manager and not, for the most part, a music player.
home: https://github.com/truecharts/apps/tree/master/charts/stable/beets
icon: https://github.com/truecharts/apps/raw/main/images/beets.png
keywords:
- music
- library
- manager
- player
- beets
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: beets
sources:
- https://github.com/linuxserver/docker-beets
- https://beets.io/
type: application
version: 0.0.2

View File

@ -0,0 +1,38 @@
# Introduction
A music library manager and not, for the most part, a music player.
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/linuxserver/docker-beets>
* <https://beets.io/>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.2.1 |
## 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 @@
A music library manager and not, for the most part, a music player.
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

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.PUID | int | `568` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/linuxserver/beets"` | |
| image.tag | string | `"version-1.5.0@sha256:ebb8cf9f7182758427c3acda19d6077457090335685986440078fd436345d417"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| persistence.downloads.accessMode | string | `"ReadWriteOnce"` | |
| persistence.downloads.enabled | bool | `true` | |
| persistence.downloads.mountPath | string | `"/downloads"` | |
| persistence.downloads.size | string | `"1Gi"` | |
| persistence.music.accessMode | string | `"ReadWriteOnce"` | |
| persistence.music.enabled | bool | `true` | |
| persistence.music.mountPath | string | `"/music"` | |
| persistence.music.size | string | `"1Gi"` | |
| persistence.varrun.enabled | bool | `true` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.main.port | int | `8337` | |
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: ghcr.io/linuxserver/beets
pullPolicy: IfNotPresent
tag: version-1.5.0@sha256:ebb8cf9f7182758427c3acda19d6077457090335685986440078fd436345d417
##
# 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,2 @@
{{ include "common.all" . }}

View File

@ -0,0 +1,38 @@
image:
repository: ghcr.io/linuxserver/beets
pullPolicy: IfNotPresent
tag: version-1.5.0@sha256:ebb8cf9f7182758427c3acda19d6077457090335685986440078fd436345d417
env:
PUID: 568
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 8337
persistence:
config:
enabled: true
mountPath: /config
music:
enabled: true
mountPath: /music
accessMode: ReadWriteOnce
size: 1Gi
downloads:
enabled: true
mountPath: /downloads
accessMode: ReadWriteOnce
size: 1Gi
varrun:
enabled: true

View File

@ -0,0 +1,3 @@
categories:
- media
icon_url: "https://github.com/truecharts/apps/raw/main/images/beets.png"

View File

@ -0,0 +1,8 @@
<a name="cloud9-0.0.2"></a>
### [cloud9-0.0.2](https://github.com/truecharts/apps/compare/cloud9-0.0.1...cloud9-0.0.2) (2021-10-13)
#### Chore
* update non-major docker tags ([#1134](https://github.com/truecharts/apps/issues/1134))

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
digest: sha256:5785ccff652662d3ac3d8698a03b12087f89608220c84ee7072135c9fddda966
generated: "2021-10-13T21:24:13.29152127Z"

View File

@ -0,0 +1,26 @@
apiVersion: v2
appVersion: "1.29.2"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
description: A complete web based IDE with terminal access
home: https://github.com/truecharts/apps/tree/master/charts/stable/cloud9
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/cloud9.png
keywords:
- cloud9
- ide
- terminal
- web
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: cloud9
sources:
- https://aws.amazon.com/cloud9/
- https://github.com/c9/core
- https://hub.docker.com/r/linuxserver/cloud9
type: application
version: 0.0.2

View File

@ -0,0 +1,39 @@
# Introduction
A complete web based IDE with terminal access
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://aws.amazon.com/cloud9/>
* <https://github.com/c9/core>
* <https://hub.docker.com/r/linuxserver/cloud9>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.2.1 |
## 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 @@
A complete web based IDE with terminal access
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

View File

@ -0,0 +1,33 @@
# 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.PUID | int | `568` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/linuxserver/cloud9"` | |
| image.tag | string | `"version-1.29.2@sha256:f35f53e0b9084d7da25242f46cc02d66ee3f4764b17930ef61b11eabc0c5b1c8"` | |
| persistence.code.accessMode | string | `"ReadWriteOnce"` | |
| persistence.code.enabled | bool | `true` | |
| persistence.code.mountPath | string | `"/code"` | |
| persistence.code.size | string | `"1Gi"` | |
| persistence.sock.accessMode | string | `"ReadWriteOnce"` | |
| persistence.sock.enabled | bool | `true` | |
| persistence.sock.mountPath | string | `"/var/run/docker.sock"` | |
| persistence.sock.size | string | `"1Gi"` | |
| persistence.varrun.enabled | bool | `true` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.main.port | int | `8000` | |
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: ghcr.io/linuxserver/cloud9
pullPolicy: IfNotPresent
tag: version-1.29.2@sha256:f35f53e0b9084d7da25242f46cc02d66ee3f4764b17930ef61b11eabc0c5b1c8
##
# 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,38 @@
image:
repository: ghcr.io/linuxserver/cloud9
pullPolicy: IfNotPresent
tag: version-1.29.2@sha256:f35f53e0b9084d7da25242f46cc02d66ee3f4764b17930ef61b11eabc0c5b1c8
# USERNAME="" #optional
# PASSWORD="" #optional
env:
PUID: 568
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 8000
persistence:
code:
enabled: true
mountPath: /code
accessMode: ReadWriteOnce
size: 1Gi
sock:
enabled: true
mountPath: /var/run/docker.sock
accessMode: ReadWriteOnce
size: 1Gi
varrun:
enabled: true

View File

@ -0,0 +1,3 @@
categories:
- media
icon_url: "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/cloud9.png"

View File

@ -0,0 +1,8 @@
<a name="code-server-0.0.2"></a>
### [code-server-0.0.2](https://github.com/truecharts/apps/compare/code-server-0.0.1...code-server-0.0.2) (2021-10-13)
#### Chore
* update non-major docker tags ([#1134](https://github.com/truecharts/apps/issues/1134))

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
digest: sha256:5785ccff652662d3ac3d8698a03b12087f89608220c84ee7072135c9fddda966
generated: "2021-10-13T21:24:25.916282727Z"

View File

@ -0,0 +1,25 @@
apiVersion: v2
appVersion: "3.11.1"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.1
description: Run VS Code on any machine anywhere and access it in the browser.
home: https://github.com/truecharts/apps/tree/master/charts/stable/code-server
icon: https://github.com/truecharts/apps/raw/main/images/code-server.jpg
keywords:
- code
- vs
- visual studio
- vscode
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: code-server
sources:
- https://github.com/cdr/code-server
- https://hub.docker.com/r/linuxserver/code-server
type: application
version: 0.0.2

View File

@ -0,0 +1,38 @@
# Introduction
Run VS Code on any machine anywhere and access it in the browser.
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/cdr/code-server>
* <https://hub.docker.com/r/linuxserver/code-server>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.2.1 |
## 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 @@
Run VS Code on any machine anywhere and access it in the browser.
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

View File

@ -0,0 +1,27 @@
# 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.PUID | int | `568` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/linuxserver/code-server"` | |
| image.tag | string | `"version-v3.11.1@sha256:a385ba5cb16136b14ae4cd99ca95c20ac77f9831ac3fb63937a1998e1d31be2a"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/config"` | |
| persistence.varrun.enabled | bool | `true` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.main.port | int | `8443` | |
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: ghcr.io/linuxserver/code-server
pullPolicy: IfNotPresent
tag: version-v3.11.1@sha256:a385ba5cb16136b14ae4cd99ca95c20ac77f9831ac3fb63937a1998e1d31be2a
##
# 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,2 @@
{{ include "common.all" . }}

View File

@ -0,0 +1,33 @@
image:
repository: ghcr.io/linuxserver/code-server
pullPolicy: IfNotPresent
tag: version-v3.11.1@sha256:a385ba5cb16136b14ae4cd99ca95c20ac77f9831ac3fb63937a1998e1d31be2a
# PASSWORD: password
# SUDO_PASSWORD: password
# HASHED_PASSWORD
env:
PUID: 568
# PROXY_DOMAIN: code-server.my.domain
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 8443
persistence:
config:
enabled: true
mountPath: /config
varrun:
enabled: true

View File

@ -0,0 +1,3 @@
categories:
- media
icon_url: "https://github.com/truecharts/apps/raw/main/images/code-server.jpg"

View File

@ -0,0 +1,8 @@
<a name="cryptofolio-0.0.2"></a>
### [cryptofolio-0.0.2](https://github.com/truecharts/apps/compare/cryptofolio-0.0.1...cryptofolio-0.0.2) (2021-10-13)
#### Chore
* update non-major docker tags ([#1134](https://github.com/truecharts/apps/issues/1134))

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