Cleanup, Fixes and Review Feedback

Includes mix fixes like:
- Fixing the documentation
- Making sure device and storage mounts work correctly
- Fixing broken things that where supposed to work according to the PR highlights
- Moving some additional things to TrueCharts based containers
- Hiding, changing and reordening some bad UI elements
- Adding support for supplementalGroup permissions

Co-authored-by: Dan Sheridan <dan.sheridan@postman.org.uk>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Justin Clift <justin@postgresql.org>
This commit is contained in:
kjeld Schouten-Lebbing 2021-03-12 17:18:46 +01:00
parent 1257de6408
commit e8f9ef02d4
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
185 changed files with 716 additions and 1412 deletions

6
.github/README.md vendored
View File

@ -18,12 +18,12 @@ Installing TrueCharts within TrueNAS SCALE, still requires the CLI. However it's
- enter `cli`
- enter `app catalog create repository="https://github.com/truecharts/truecharts" label="TrueCharts"`
For more information, please visit our wiki:
https://wiki.truecharts.org
For more information, please visit our website:
https://truecharts.org
## FAQ
Please refer to our [FAQ](https://wiki.truecharts.org/FAQ) and [Issue tracker](https://github.com/truecharts/charts/issues) before creating an issue.
Please refer to our [FAQ](https://truecharts.org/about/FAQ/) and [Issue tracker](https://github.com/truecharts/charts/issues) before creating an issue.
There is a significant chance your issue has been reported before!
## Getting into creating Apps

View File

@ -43,8 +43,7 @@ jobs:
- name: Create general website
run: |
cd master
<<<<<<< HEAD
cp -Rf .github/docs/* ../website/content/
cp -Rf docs/* ../website/content/
cp .github/README.md ../website/content/about/index.md || echo "readme copy failed, continuing..."
cp .github/CODE_OF_CONDUCT ../website/content/about/code_of_conduct.md || echo "CODE_OF_CONDUCT copy failed, continuing..."
cp .github/CONTRIBUTING ../website/content/development/contributing.md || echo "CONTRIBUTING copy failed, continuing..."
@ -53,17 +52,6 @@ jobs:
cp NOTICE ../website/content/about/NOTICE.md || echo "license copy failed, continuing..."
sed -i '1s/^/# NOTICE<br>\n\n/' ../website/content/about/NOTICE.md
ls ../website/content/
=======
cp -Rf docs/* ../wiki/content/
cp .github/README.md ../wiki/content/index.md || echo "readme copy failed, continuing..."
cp .github/CODE_OF_CONDUCT ../wiki/content/code_of_conduct.md || echo "CODE_OF_CONDUCT copy failed, continuing..."
cp .github/CONTRIBUTING ../wiki/content/development/contributing.md || echo "CONTRIBUTING copy failed, continuing..."
cp LICENSE ../wiki/content/legal/LICENSE.md || echo "license copy failed, continuing..."
sed -i '1s/^/# License<br>\n\n/' ../wiki/content/legal/LICENSE.md
cp NOTICE ../wiki/content/legal/NOTICE.md || echo "license copy failed, continuing..."
sed -i '1s/^/# NOTICE<br>\n\n/' ../wiki/content/legal/NOTICE.md
ls ../wiki/content/
>>>>>>> Move docs from .github to project root (#223)
cd ..
- name: Create apps website

0
.helmdocsignore Normal file
View File

View File

@ -1,5 +1,4 @@
{{- define "custom.notes" -}}
{{- end -}}
{{ template "chart.description" . }}
{{ template "custom.notes" . }}

View File

@ -42,7 +42,21 @@ class Test < ChartTest
it 'defaults to false = runAs 568' do
jq('.spec.template.spec.securityContext.runAsUser', resource('Deployment')).must_equal 568
jq('.spec.template.spec.securityContext.runAsGroup', resource('Deployment')).must_equal 568
jq('.spec.template.spec.securityContext.fsGroup', resource('Deployment')).must_equal 568
jq('.spec.template.spec.securityContext.runAsNonRoot', resource('Deployment')).must_equal true
jq('.spec.template.spec.securityContext.supplementalGroups', resource('Deployment')).must_equal []
end
it 'allow settingsupplementalGroups' do
values = {
supplementalGroups: "5,20"
}
chart.value values
jq('.spec.template.spec.securityContext.runAsUser', resource('Deployment')).must_equal 568
jq('.spec.template.spec.securityContext.runAsGroup', resource('Deployment')).must_equal 568
jq('.spec.template.spec.securityContext.fsGroup', resource('Deployment')).must_equal 568
jq('.spec.template.spec.securityContext.runAsNonRoot', resource('Deployment')).must_equal true
jq('.spec.template.spec.securityContext.supplementalGroups', resource('Deployment')).must_equal [5,20]
end
it 'can be enabled = runAs nil' do
@ -50,6 +64,8 @@ class Test < ChartTest
jq('.spec.template.spec.securityContext.runAsUser', resource('Deployment')).must_equal nil
jq('.spec.template.spec.securityContext.runAsGroup', resource('Deployment')).must_equal nil
jq('.spec.template.spec.securityContext.runAsNonRoot', resource('Deployment')).must_equal nil
jq('.spec.template.spec.securityContext.fsGroup', resource('Deployment')).must_equal nil
jq('.spec.template.spec.securityContext.supplementalGroups', resource('Deployment')).must_equal nil
end
end

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: bazarr
<<<<<<< HEAD:charts/bazarr/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/Chart.yaml
upstream_version: 5.2.1
appVersion: "auto"
description: Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements
@ -28,11 +24,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/bazarr/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/bazarr/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.9.0.5](https://img.shields.io/badge/AppVersion-v0.9.0.5-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.9.0.5](https://img.shields.io/badge/AppVersion-v0.9.0.5-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/bazarr/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -238,6 +238,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
@ -294,6 +295,7 @@ questions:
default: "media"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: calibre-web
<<<<<<< HEAD:charts/calibre-web/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/Chart.yaml
upstream_version: 4.3.1
appVersion: "auto"
description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
@ -25,11 +21,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/calibre-web/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/calibre-web/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.9](https://img.shields.io/badge/AppVersion-0.6.9-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.9](https://img.shields.io/badge/AppVersion-0.6.9-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database.
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/calibre-web/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -236,6 +236,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
@ -292,6 +293,7 @@ questions:
default: "media"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: collabora-online
<<<<<<< HEAD:charts/collabora-online/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/Chart.yaml
# upstream_version:
appVersion: "auto"
description: Collabora Online Development Edition an awesome, Online Office suite image suitable for home use.
@ -23,11 +19,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/collabora-online/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/collabora-online/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.4.6.1](https://img.shields.io/badge/AppVersion-6.4.6.1-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.4.6.1](https://img.shields.io/badge/AppVersion-6.4.6.1-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Collabora Online Development Edition an awesome, Online Office suite image suitable for home use.
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/collabora-online/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -120,7 +120,7 @@ questions:
schema:
type: string
private: true
default: "changeme"
default: ""
required: true
- variable: dictionaries
label: "Dictionaries to use, leave empty to use all"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: deluge
<<<<<<< HEAD:charts/deluge/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/Chart.yaml
upstream_version: 1.1.1
appVersion: "latest"
description: Deluge is a torrent download client
@ -23,11 +19,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/deluge/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/deluge/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.0.3-2201906121747](https://img.shields.io/badge/AppVersion-v2.0.3--2201906121747-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.0.3-2201906121747](https://img.shields.io/badge/AppVersion-v2.0.3--2201906121747-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
Deluge is a torrent download client
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/deluge/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -363,6 +363,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,18 +1,17 @@
# Introduction
![Version: 1.6.3](https://img.shields.io/badge/Version-1.6.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.6.4](https://img.shields.io/badge/AppVersion-10.6.4-informational?style=flat-square)
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Jellyfin is a Free Software Media System
Emby Server is a home media server
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/charts/issues/new/choose)**
## Source Code
* <https://github.com/truecharts/charts/tree/master/charts/jellyfin>
* <https://github.com/k8s-at-home/charts/tree/master/charts/jellyfin>
* <https://hub.docker.com/r/linuxserver/Jellyfin/>
* <https://github.com/jellyfin/jellyfin>
* <https://github.com/truecharts/charts/tree/master/charts/emby>
* <https://hub.docker.com/r/linuxserver/emby>
* <https://github.com/linuxserver/docker-emby.git>
## Requirements
@ -22,11 +21,11 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
| https://charts.truecharts.org/ | common | 1.6.5 |
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
To install the chart with the release name `jellyfin`
To install the chart with the release name `emby`
- Open TrueNAS SCALE
- Go to Apps
@ -35,7 +34,7 @@ To install the chart with the release name `jellyfin`
## Uninstalling the Chart
To uninstall the `jellyfin` deployment
To uninstall the `emby` deployment
- Open TrueNAS SCALE
- Go to Apps
@ -51,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -11,6 +11,9 @@ image:
startAsRoot: true
# 44=video 107=render
supplementalGroups: 44,107
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart

View File

@ -238,6 +238,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
@ -294,6 +295,7 @@ questions:
default: "media"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -11,6 +11,10 @@ strategy:
startAsRoot: true
# 44=video 107=render
supplementalGroups: 44,107
services:
main:
port:

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: esphome
<<<<<<< HEAD:charts/esphome/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/Chart.yaml
upstream_version: 4.3.1
appVersion: "auto"
description: ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
@ -23,11 +19,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/esphome/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/esphome/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.15.3](https://img.shields.io/badge/AppVersion-1.15.3-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.15.3](https://img.shields.io/badge/AppVersion-1.15.3-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/esphome/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -9,8 +9,6 @@ image:
pullPolicy: IfNotPresent
tag: 1.15.3
startAsRoot: true
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart

View File

@ -253,6 +253,40 @@ questions:
schema:
type: hostpath
required: true
# platformio ------------------------
- variable: platformio
label: "platformio"
schema:
hidden: true
type: dict
$ref:
- "normalize/ixVolume"
attrs:
- variable: enabled
label: "Enabled"
schema:
type: boolean
default: true
- variable: setPermissions
label: "Automatic Permissions"
schema:
type: boolean
default: true
- variable: emptyDir
label: "Empty Dir"
schema:
type: boolean
default: false
- variable: datasetName
label: "Dataset Name"
schema:
type: string
default: "platformio"
- variable: mountPath
label: "Mount Path"
schema:
type: path
default: "/.platformio"
- variable: additionalAppVolumeMounts
label: "Custom app storage"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: freshrss
<<<<<<< HEAD:charts/freshrss/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/Chart.yaml
upstream_version: 2.3.1
appVersion: "auto"
description: FreshRSS is a self-hosted RSS feed aggregator
@ -24,11 +20,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/freshrss/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/freshrss/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.17.0](https://img.shields.io/badge/AppVersion-1.17.0-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.17.0](https://img.shields.io/badge/AppVersion-1.17.0-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
FreshRSS is a self-hosted RSS feed aggregator
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/freshrss/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -237,6 +237,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: gaps
<<<<<<< HEAD:charts/gaps/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/Chart.yaml
upstream_version: 1.1.1
appVersion: "auto"
description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.
@ -24,11 +20,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/gaps/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/gaps/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection.
@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/gaps/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: grocy
<<<<<<< HEAD:charts/grocy/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/Chart.yaml
upstream_version: 4.3.1
appVersion: "auto"
description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home
@ -22,11 +18,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/grocy/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/grocy/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.7.1](https://img.shields.io/badge/AppVersion-v2.7.1-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.7.1](https://img.shields.io/badge/AppVersion-v2.7.1-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home
@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/grocy/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -237,6 +237,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: handbrake
<<<<<<< HEAD:charts/handbrake/1.3.4/Chart.yaml
version: 1.3.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/Chart.yaml
# upstream_version:
appVersion: "auto"
description: HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs.
@ -25,11 +21,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/handbrake/1.3.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/handbrake/1.3.4/README.md
![Version: 1.3.4](https://img.shields.io/badge/Version-1.3.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.23.1](https://img.shields.io/badge/AppVersion-1.23.1-informational?style=flat-square)
=======
![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.23.1](https://img.shields.io/badge/AppVersion-1.23.1-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs.
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/handbrake/1.3.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -11,6 +11,9 @@ image:
startAsRoot: true
# 24=cdrom 44=video 107=render
supplementalGroups: 24,44,107
#All values here are set as the docker defaults.
envTpl:
# Permissions Settings

View File

@ -22,14 +22,14 @@ groups:
portals:
web_portal:
protocols:
- "$kubernetes-resource_configmap_main-portal_protocol"
- "$kubernetes-resource_configmap_portal_protocol"
host:
- "$kubernetes-resource_configmap_main-portal_host"
- "$kubernetes-resource_configmap_portal_host"
ports:
- "$kubernetes-resource_configmap_main-portal_port"
- "$kubernetes-resource_configmap_portal_port"
# UI
questions:
# Update Policy
# Portal
- variable: portal
group: "Container Image"
label: "Configure Portal Button"
@ -53,6 +53,7 @@ questions:
editable: false
type: string
default: "http"
# Update Policy
- variable: strategyType
group: "Container Image"
label: "Update Strategy"
@ -345,6 +346,298 @@ questions:
required: true
# TrueCharts Specific
- variable: appVolumeMounts
label: "app storage"
group: "Storage and Devices"
schema:
type: dict
attrs:
# Config ------------------------
- variable: config
label: "config dataset"
schema:
type: dict
$ref:
- "normalize/ixVolume"
attrs:
- variable: enabled
label: "Enabled"
schema:
type: boolean
default: true
required: true
hidden: true
editable: false
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: true
hidden: false
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: datasetName
label: "Dataset Name"
schema:
type: string
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
schema:
type: path
required: true
default: "/config"
editable: false
- variable: hostPathEnabled
label: "host Path Enabled"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hostPath
label: "Host Path"
schema:
type: hostpath
required: true
# storage ------------------------
- variable: storage
label: "storage dataset"
schema:
type: dict
$ref:
- "normalize/ixVolume"
attrs:
- variable: enabled
label: "Enabled"
schema:
type: boolean
default: true
required: true
hidden: true
editable: false
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: true
hidden: false
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: datasetName
label: "Dataset Name"
schema:
type: string
default: "storage"
required: true
editable: false
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
schema:
type: path
required: true
default: "/storage"
editable: false
- variable: hostPathEnabled
label: "host Path Enabled"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hostPath
label: "Host Path"
schema:
type: hostpath
required: true
# watch ------------------------
- variable: watch
label: "watch dataset"
schema:
type: dict
$ref:
- "normalize/ixVolume"
attrs:
- variable: enabled
label: "Enabled"
schema:
type: boolean
default: true
required: true
hidden: true
editable: false
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: true
hidden: false
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: datasetName
label: "Dataset Name"
schema:
type: string
default: "watch"
required: true
editable: false
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
schema:
type: path
required: true
default: "/watch"
editable: false
- variable: hostPathEnabled
label: "host Path Enabled"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hostPath
label: "Host Path"
schema:
type: hostpath
required: true
# output ------------------------
- variable: output
label: "output dataset"
schema:
type: dict
$ref:
- "normalize/ixVolume"
attrs:
- variable: enabled
label: "Enabled"
schema:
type: boolean
default: true
required: true
hidden: true
editable: false
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: true
hidden: false
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: datasetName
label: "Dataset Name"
schema:
type: string
default: "output"
required: true
editable: false
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
schema:
type: path
required: true
default: "/output"
editable: false
- variable: hostPathEnabled
label: "host Path Enabled"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hostPath
label: "Host Path"
schema:
type: hostpath
required: true
# Optical Drive
- variable: opticaldrive
label: "Optical Drive Device"
schema:
type: dict
attrs:
- variable: enabled
label: "Enable Optical Drive Device"
schema:
type: boolean
default: false
required: false
editable: true
show_subquestions_if: true
subquestions:
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: false
hidden: true
- variable: name
label: "Mountpoint Name"
schema:
type: string
default: "opticaldrive"
required: true
editable: true
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: mountPath
label: "Path to Optical Drive device inside the pod"
description: "Preferably the same as the path to the Optical Drive on the host"
schema:
type: path
required: true
default: ""
editable: true
- variable: hostPathEnabled
label: "host Path Enabled"
schema:
type: boolean
default: true
hidden: true
- variable: hostPath
label: "Path to Optical Drive device on host"
description: 'Best to use path "by-id"'
schema:
type: path
required: true
# Privileged
- variable: securityContext
group: "Storage and Devices"
@ -357,263 +650,7 @@ questions:
schema:
type: boolean
default: true
required: true
# TrueCharts Specific
- variable: appVolumeMounts
label: ""
group: "Storage and Devices"
schema:
type: dict
attrs:
# config
- variable: config
label: "config Volume"
schema:
type: dict
$ref:
- "normalize/ixVolume"
attrs:
- variable: enabled
label: "Enabled"
schema:
type: boolean
default: true
required: true
hidden: true
editable: false
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: true
hidden: false
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: datasetName
label: "Name"
schema:
type: string
default: "config"
editable: false
- variable: mountPath
label: "Mount Path inside the container"
schema:
type: path
default: "/config"
editable: false
- variable: hostPathEnabled
label: "config - Enable Host Path"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hostPath
label: "config Host Path"
description: "Host path to store config"
schema:
type: hostpath
required: true
# storage
- variable: storage
label: "storage Volume"
schema:
type: dict
$ref:
- "normalize/ixVolume"
attrs:
- variable: enabled
label: "Enabled"
schema:
type: boolean
default: true
required: true
hidden: true
editable: false
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: true
hidden: false
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: datasetName
label: "Name"
schema:
type: string
default: "storage"
editable: false
- variable: mountPath
label: "Mount Path inside the container"
schema:
type: path
default: "/storage"
editable: false
- variable: hostPathEnabled
label: "storage - Enable Host Path"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hostPath
label: "storage Host Path"
description: "Host path to store storage"
schema:
type: hostpath
required: true
# watch
- variable: watch
label: "watch Volume"
schema:
type: dict
$ref:
- "normalize/ixVolume"
attrs:
- variable: enabled
label: "Enabled"
schema:
type: boolean
default: true
required: true
hidden: true
editable: false
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: true
hidden: false
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: datasetName
label: "Name"
schema:
type: string
default: "watch"
editable: false
- variable: mountPath
label: "Mount Path inside the container"
schema:
type: path
default: "/watch"
editable: false
- variable: hostPathEnabled
label: "watch - Enable Host Path"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hostPath
label: "watch Host Path"
description: "Host path to store watch"
schema:
type: hostpath
required: true
# output
- variable: output
label: "output Volume"
schema:
type: dict
$ref:
- "normalize/ixVolume"
attrs:
- variable: enabled
label: "Enabled"
schema:
type: boolean
default: true
required: true
hidden: true
editable: false
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: true
hidden: false
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: datasetName
label: "Name"
schema:
type: string
default: "output"
editable: false
- variable: mountPath
label: "Mount Path inside the container"
schema:
type: path
default: "/output"
editable: false
- variable: hostPathEnabled
label: "output - Enable Host Path"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hostPath
label: "output Host Path"
description: "Host path to store output"
schema:
type: hostpath
required: true
# Optical Drive
- variable: opticaldrive
label: "Optical Drive Device"
schema:
type: dict
attrs:
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
schema:
type: boolean
default: false
hidden: true
- variable: hostPath
label: "Path to Optical Drive device on host"
description: 'Best to use path "by-id"'
schema:
type: path
required: true
default: "/dev/sr0"
- variable: mountPath
label: "Path to mount device inside the container"
schema:
type: path
default: "/dev/sr0"
required: true
# Reverse Proxy
required: false
- variable: additionalAppVolumeMounts
label: "Custom app storage"
group: "Storage and Devices"
@ -674,7 +711,7 @@ questions:
schema:
type: hostpath
required: true
# Reverse Proxy
- variable: ingress
label: ""
group: "Reverse Proxy Configuration"

View File

@ -8,6 +8,9 @@ strategy:
startAsRoot: true
# 24=cdrom 44=video 107=render
supplementalGroups: 24,44,107
services:
main:
port:

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: heimdall
<<<<<<< HEAD:charts/heimdall/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/Chart.yaml
upstream_version: 4.1.1
appVersion: "auto"
description: An Application dashboard and launcher
@ -21,11 +17,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/heimdall/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/heimdall/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.2.2](https://img.shields.io/badge/AppVersion-2.2.2-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.2.2](https://img.shields.io/badge/AppVersion-2.2.2-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
An Application dashboard and launcher
@ -24,11 +20,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/heimdall/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -57,5 +49,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -238,6 +238,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: home-assistant
<<<<<<< HEAD:charts/home-assistant/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/Chart.yaml
upstream_version: 5.3.0
appVersion: "auto"
description: home-assistant App for TrueNAS SCALE
@ -25,11 +21,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/home-assistant/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/home-assistant/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2021.2.2](https://img.shields.io/badge/AppVersion-2021.2.2-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2021.2.2](https://img.shields.io/badge/AppVersion-2021.2.2-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
home-assistant App for TrueNAS SCALE
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/home-assistant/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -11,6 +11,9 @@ image:
startAsRoot: true
# 5=tty 20=dailout 24=cdrom
supplementalGroups: 5,20,24
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart

View File

@ -151,11 +151,13 @@ questions:
hidden: true
editable: false
- variable: datasetName
label: "Name"
label: "Dataset Name"
schema:
type: string
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount path inside the container"
schema:
@ -187,12 +189,6 @@ questions:
default: false
show_subquestions_if: true
subquestions:
- variable: hostPathEnabled
label: "enabled"
schema:
type: boolean
default: true
hidden: true
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
@ -200,18 +196,41 @@ questions:
type: boolean
default: false
hidden: true
- variable: name
label: "Mountpoint Name"
schema:
type: string
default: "ZWave"
required: true
editable: true
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: mountPath
label: "Path to mount device inside the container"
description: "Preferably the same as the path to the device path on the host"
schema:
type: path
required: true
default: "/dev/ttyUSB0"
editable: true
- variable: hostPathEnabled
label: "host Path Enabled"
schema:
type: boolean
default: true
hidden: true
- variable: hostPath
label: "Path to Z-Wave device on host"
schema:
type: path
required: true
default: "/dev/ttyUSB0"
- variable: mountPath
label: "Path to mount device inside the container"
schema:
type: path
required: true
default: "/dev/ttyUSB0"
# Zigbee device -----------------
- variable: zigbee
label: "USB Zigbee Device"
@ -225,12 +244,6 @@ questions:
default: false
show_subquestions_if: true
subquestions:
- variable: hostPathEnabled
label: "enabled"
schema:
type: boolean
default: true
hidden: true
- variable: setPermissions
label: "Automatic Permissions"
description: "Automatically set permissions on install"
@ -238,18 +251,40 @@ questions:
type: boolean
default: false
hidden: true
- variable: name
label: "Mountpoint Name"
schema:
type: string
default: "ZWave"
required: true
editable: true
- variable: emptyDir
label: "emptyDir"
schema:
type: boolean
default: false
hidden: true
editable: false
- variable: mountPath
label: "Path to mount device inside the container"
description: "Preferably the same as the path to the device path on the host"
schema:
type: path
required: true
default: "/dev/ttyUSB0"
editable: true
- variable: hostPathEnabled
label: "host Path Enabled"
schema:
type: boolean
default: true
hidden: true
- variable: hostPath
label: "Path to Zigbee device on host"
schema:
type: path
required: true
default: "/dev/ttyUSB1"
- variable: mountPath
label: "Path to mount device inside the container"
schema:
type: path
required: true
default: "/dev/ttyUSB1"
default: "/dev/ttyUSB0"
# Enable privileged
- variable: securityContext
group: "Storage and Devices"

View File

@ -1,50 +0,0 @@
##
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# `SPDX-License-Identifier: Apache-2.0`
#
# This file is considered to be modified by the TrueCharts Project.
##
{{- if .Values.prometheus.serviceMonitor.enabled }}
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: {{ template "common.names.fullname" . }}
labels:
{{- include "common.labels" . | nindent 4 }}
{{- with .Values.prometheus.serviceMonitor.additionalLabels }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
selector:
matchLabels:
{{- include "common.labels.selectorLabels" . | nindent 6 }}
endpoints:
- port: {{ default "http" .Values.service.port.name }}
{{- with .Values.prometheus.serviceMonitor.interval }}
interval: {{ . }}
{{- end }}
{{- with .Values.prometheus.serviceMonitor.bearerTokenFile }}
bearerTokenFile: {{ . }}
{{- end }}
{{- with .Values.prometheus.serviceMonitor.bearerTokenSecret }}
bearerTokenSecret:
name: {{ .name }}
key: {{ .key }}
{{- with .optional }}
optional: {{ . }}
{{- end }}
{{- end }}
path: /api/prometheus
{{- end }}

View File

@ -10,6 +10,9 @@ strategy:
startAsRoot: true
# 5=tty 20=dailout 24=cdrom
supplementalGroups: 5,20,24
env: {}
# TZ:

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: jackett
<<<<<<< HEAD:charts/jackett/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/Chart.yaml
upstream_version: 7.0.1
appVersion: "auto"
description: API Support for your favorite torrent trackers.
@ -25,11 +21,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/jackett/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/jackett/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: version-v0.17.153](https://img.shields.io/badge/AppVersion-version--v0.17.153-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: version-v0.17.153](https://img.shields.io/badge/AppVersion-version--v0.17.153-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
API Support for your favorite torrent trackers.
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/jackett/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -237,6 +237,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: jellyfin
<<<<<<< HEAD:charts/jellyfin/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/Chart.yaml
upstream_version: 4.2.1
appVersion: "auto"
description: Jellyfin is a Free Software Media System
@ -25,11 +21,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/jellyfin/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/jellyfin/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.6.4](https://img.shields.io/badge/AppVersion-10.6.4-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.6.4](https://img.shields.io/badge/AppVersion-10.6.4-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Jellyfin is a Free Software Media System
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/jellyfin/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -9,6 +9,9 @@ image:
pullPolicy: IfNotPresent
tag: 10.6.4
# 44=video 107=render
supplementalGroups: 44,107
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart

View File

@ -238,6 +238,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
@ -294,6 +295,7 @@ questions:
default: "media"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -9,6 +9,9 @@ image:
strategy:
type: Recreate
# 44=video 107=render
supplementalGroups: 44,107
services:
main:
port:

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: kms
<<<<<<< HEAD:charts/kms/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/Chart.yaml
# upstream_version:
appVersion: "minimal"
description: Private Windows Activation Server for development and testing
@ -21,11 +17,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/kms/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/kms/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: minimal](https://img.shields.io/badge/AppVersion-minimal-informational?style=flat-square)
Private Windows Activation Server for development and testing
@ -24,11 +20,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/kms/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -57,5 +49,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: lazylibrarian
<<<<<<< HEAD:charts/lazylibrarian/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/Chart.yaml
upstream_version: 2.1.0
appVersion: "latest"
description: Get all your books, like series with Sonarr...
@ -24,11 +20,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/lazylibrarian/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/lazylibrarian/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.7.2](https://img.shields.io/badge/AppVersion-1.7.2-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.7.2](https://img.shields.io/badge/AppVersion-1.7.2-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
Get all your books, like series with Sonarr...
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/lazylibrarian/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -238,6 +238,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
@ -294,6 +295,7 @@ questions:
default: "media"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: lidarr
<<<<<<< HEAD:charts/lidarr/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/Chart.yaml
upstream_version: 7.1.0
appVersion: "auto"
description: Looks and smells like Sonarr but made for music
@ -25,11 +21,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/lidarr/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/lidarr/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.0.1886](https://img.shields.io/badge/AppVersion-0.8.0.1886-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.0.1886](https://img.shields.io/badge/AppVersion-0.8.0.1886-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Looks and smells like Sonarr but made for music
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/lidarr/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -7,7 +7,7 @@
image:
repository: ghcr.io/truecharts/lidarr
pullPolicy: IfNotPresent
tag: version-0.8.0.2082
tag: v0.8.0.2082
probes:
liveness:

View File

@ -238,6 +238,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"
@ -294,6 +295,7 @@ questions:
default: "media"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: lychee
<<<<<<< HEAD:charts/lychee/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/Chart.yaml
upstream_version: 2.3.1
appVersion: "auto"
description: Lychee is a free photo-management tool, which runs on your server or web-space
@ -25,11 +21,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/lychee/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/lychee/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.0.8](https://img.shields.io/badge/AppVersion-4.0.8-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.0.8](https://img.shields.io/badge/AppVersion-4.0.8-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Lychee is a free photo-management tool, which runs on your server or web-space
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/lychee/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -237,6 +237,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: navidrome
<<<<<<< HEAD:charts/navidrome/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/Chart.yaml
upstream_version: 2.3.1
appVersion: "auto"
description: Navidrome is an open source web-based music collection server and streamer
@ -25,11 +21,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/navidrome/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/navidrome/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.39.0](https://img.shields.io/badge/AppVersion-0.39.0-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.39.0](https://img.shields.io/badge/AppVersion-0.39.0-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Navidrome is an open source web-based music collection server and streamer
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/navidrome/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -238,6 +238,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: node-red
<<<<<<< HEAD:charts/node-red/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/Chart.yaml
upstream_version: 5.2.1
appVersion: "auto"
description: Node-RED is low-code programming for event-driven applications
@ -23,11 +19,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/node-red/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/node-red/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.2.5](https://img.shields.io/badge/AppVersion-1.2.5-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.2.5](https://img.shields.io/badge/AppVersion-1.2.5-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Node-RED is low-code programming for event-driven applications
@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/node-red/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -235,9 +235,10 @@ questions:
label: "Dataset Name"
schema:
type: string
default: "data"
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: nzbget
<<<<<<< HEAD:charts/nzbget/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/Chart.yaml
upstream_version: 7.3.1
appVersion: "auto"
description: NZBGet is a Usenet downloader client
@ -24,11 +20,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/nzbget/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/nzbget/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v21.0](https://img.shields.io/badge/AppVersion-v21.0-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v21.0](https://img.shields.io/badge/AppVersion-v21.0-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
NZBGet is a Usenet downloader client
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/nzbget/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

View File

@ -237,6 +237,7 @@ questions:
default: "config"
required: true
editable: false
hidden: true
- variable: mountPath
label: "Mount Path"
description: "Path to mount inside the pod"

View File

@ -1,11 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: nzbhydra
<<<<<<< HEAD:charts/nzbhydra/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/Chart.yaml
upstream_version: 5.3.1
appVersion: "auto"
description: Usenet meta search
@ -24,11 +20,7 @@ sources:
dependencies:
- name: common
repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/nzbhydra/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/Chart.yaml
# condition:
# tags:
# import-values:

View File

@ -1,10 +1,6 @@
# Introduction
<<<<<<< HEAD:charts/nzbhydra/1.6.4/README.md
![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.8.1](https://img.shields.io/badge/AppVersion-v3.8.1-informational?style=flat-square)
=======
![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.8.1](https://img.shields.io/badge/AppVersion-v3.8.1-informational?style=flat-square)
>>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/README.md
![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square)
Usenet meta search
@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
<<<<<<< HEAD:charts/nzbhydra/1.6.4/README.md
| https://charts.truecharts.org/ | common | 1.6.7 |
=======
| https://charts.truecharts.org/ | common | 1.6.1 |
>>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/README.md
| https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart
@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions)
----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)

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