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
185 changed files with 716 additions and 1412 deletions
+3 -3
View File
@@ -18,12 +18,12 @@ Installing TrueCharts within TrueNAS SCALE, still requires the CLI. However it's
- enter `cli` - enter `cli`
- enter `app catalog create repository="https://github.com/truecharts/truecharts" label="TrueCharts"` - enter `app catalog create repository="https://github.com/truecharts/truecharts" label="TrueCharts"`
For more information, please visit our wiki: For more information, please visit our website:
https://wiki.truecharts.org https://truecharts.org
## FAQ ## 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! There is a significant chance your issue has been reported before!
## Getting into creating Apps ## Getting into creating Apps
+1 -13
View File
@@ -43,8 +43,7 @@ jobs:
- name: Create general website - name: Create general website
run: | run: |
cd master cd master
<<<<<<< HEAD cp -Rf docs/* ../website/content/
cp -Rf .github/docs/* ../website/content/
cp .github/README.md ../website/content/about/index.md || echo "readme copy failed, continuing..." 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/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..." 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..." cp NOTICE ../website/content/about/NOTICE.md || echo "license copy failed, continuing..."
sed -i '1s/^/# NOTICE<br>\n\n/' ../website/content/about/NOTICE.md sed -i '1s/^/# NOTICE<br>\n\n/' ../website/content/about/NOTICE.md
ls ../website/content/ 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 .. cd ..
- name: Create apps website - name: Create apps website
View File
@@ -1,5 +1,4 @@
{{- define "custom.notes" -}} {{- define "custom.notes" -}}
{{- end -}} {{- end -}}
{{ template "chart.description" . }} {{ template "chart.description" . }}
{{ template "custom.notes" . }} {{ template "custom.notes" . }}
+16
View File
@@ -42,7 +42,21 @@ class Test < ChartTest
it 'defaults to false = runAs 568' do it 'defaults to false = runAs 568' do
jq('.spec.template.spec.securityContext.runAsUser', resource('Deployment')).must_equal 568 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.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.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 end
it 'can be enabled = runAs nil' do 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.runAsUser', resource('Deployment')).must_equal nil
jq('.spec.template.spec.securityContext.runAsGroup', 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.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
end end
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: bazarr name: bazarr
<<<<<<< HEAD:charts/bazarr/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/Chart.yaml
upstream_version: 5.2.1 upstream_version: 5.2.1
appVersion: "auto" appVersion: "auto"
description: Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements 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: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/bazarr/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/bazarr/1.6.4/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)
![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
Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements 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 | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/bazarr/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+2
View File
@@ -238,6 +238,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
@@ -294,6 +295,7 @@ questions:
default: "media" default: "media"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: calibre-web name: calibre-web
<<<<<<< HEAD:charts/calibre-web/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/Chart.yaml
upstream_version: 4.3.1 upstream_version: 4.3.1
appVersion: "auto" appVersion: "auto"
description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. 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: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/calibre-web/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/calibre-web/1.6.4/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)
![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
Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. 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 | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/calibre-web/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+2
View File
@@ -236,6 +236,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
@@ -292,6 +293,7 @@ questions:
default: "media" default: "media"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: collabora-online name: collabora-online
<<<<<<< HEAD:charts/collabora-online/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/Chart.yaml
# upstream_version: # upstream_version:
appVersion: "auto" appVersion: "auto"
description: Collabora Online Development Edition an awesome, Online Office suite image suitable for home use. description: Collabora Online Development Edition an awesome, Online Office suite image suitable for home use.
@@ -23,11 +19,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/collabora-online/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/collabora-online/1.6.4/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)
![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
Collabora Online Development Edition an awesome, Online Office suite image suitable for home use. 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 | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/collabora-online/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
+1 -1
View File
@@ -120,7 +120,7 @@ questions:
schema: schema:
type: string type: string
private: true private: true
default: "changeme" default: ""
required: true required: true
- variable: dictionaries - variable: dictionaries
label: "Dictionaries to use, leave empty to use all" label: "Dictionaries to use, leave empty to use all"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: deluge name: deluge
<<<<<<< HEAD:charts/deluge/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/Chart.yaml
upstream_version: 1.1.1 upstream_version: 1.1.1
appVersion: "latest" appVersion: "latest"
description: Deluge is a torrent download client description: Deluge is a torrent download client
@@ -23,11 +19,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/deluge/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/deluge/1.6.4/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)
![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
Deluge is a torrent download client Deluge is a torrent download client
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/deluge/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+1
View File
@@ -363,6 +363,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
+9 -9
View File
@@ -1,18 +1,17 @@
# Introduction # 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. 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)** **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 ## Source Code
* <https://github.com/truecharts/charts/tree/master/charts/jellyfin> * <https://github.com/truecharts/charts/tree/master/charts/emby>
* <https://github.com/k8s-at-home/charts/tree/master/charts/jellyfin> * <https://hub.docker.com/r/linuxserver/emby>
* <https://hub.docker.com/r/linuxserver/Jellyfin/> * <https://github.com/linuxserver/docker-emby.git>
* <https://github.com/jellyfin/jellyfin>
## Requirements ## Requirements
@@ -22,11 +21,11 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
| https://charts.truecharts.org/ | common | 1.6.5 | | https://charts.truecharts.org/ | common | 2.0.0 |
## Installing the Chart ## Installing the Chart
To install the chart with the release name `jellyfin` To install the chart with the release name `emby`
- Open TrueNAS SCALE - Open TrueNAS SCALE
- Go to Apps - Go to Apps
@@ -35,7 +34,7 @@ To install the chart with the release name `jellyfin`
## Uninstalling the Chart ## Uninstalling the Chart
To uninstall the `jellyfin` deployment To uninstall the `emby` deployment
- Open TrueNAS SCALE - Open TrueNAS SCALE
- Go to Apps - 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+3
View File
@@ -11,6 +11,9 @@ image:
startAsRoot: true startAsRoot: true
# 44=video 107=render
supplementalGroups: 44,107
## ##
# Most other defaults are set in questions.yaml # Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart # For other options please refer to the wiki, default_values.yaml or the common library chart
+2
View File
@@ -238,6 +238,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
@@ -294,6 +295,7 @@ questions:
default: "media" default: "media"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
+4
View File
@@ -11,6 +11,10 @@ strategy:
startAsRoot: true startAsRoot: true
# 44=video 107=render
supplementalGroups: 44,107
services: services:
main: main:
port: port:
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: esphome name: esphome
<<<<<<< HEAD:charts/esphome/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/Chart.yaml
upstream_version: 4.3.1 upstream_version: 4.3.1
appVersion: "auto" 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. 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: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/esphome/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/esphome/1.6.4/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)
![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
ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems. 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 | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/esphome/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
-2
View File
@@ -9,8 +9,6 @@ image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: 1.15.3 tag: 1.15.3
startAsRoot: true
## ##
# Most other defaults are set in questions.yaml # Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart # For other options please refer to the wiki, default_values.yaml or the common library chart
+34
View File
@@ -253,6 +253,40 @@ questions:
schema: schema:
type: hostpath type: hostpath
required: true 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 - variable: additionalAppVolumeMounts
label: "Custom app storage" label: "Custom app storage"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: freshrss name: freshrss
<<<<<<< HEAD:charts/freshrss/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/Chart.yaml
upstream_version: 2.3.1 upstream_version: 2.3.1
appVersion: "auto" appVersion: "auto"
description: FreshRSS is a self-hosted RSS feed aggregator description: FreshRSS is a self-hosted RSS feed aggregator
@@ -24,11 +20,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/freshrss/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/freshrss/1.6.4/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)
![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
FreshRSS is a self-hosted RSS feed aggregator FreshRSS is a self-hosted RSS feed aggregator
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/freshrss/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+1
View File
@@ -237,6 +237,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: gaps name: gaps
<<<<<<< HEAD:charts/gaps/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/Chart.yaml
upstream_version: 1.1.1 upstream_version: 1.1.1
appVersion: "auto" appVersion: "auto"
description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. 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: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/gaps/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/gaps/1.6.4/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)
![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
Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. 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 | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/gaps/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: grocy name: grocy
<<<<<<< HEAD:charts/grocy/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/Chart.yaml
upstream_version: 4.3.1 upstream_version: 4.3.1
appVersion: "auto" appVersion: "auto"
description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home 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: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/grocy/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/grocy/1.6.4/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)
![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
ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home 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 | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/grocy/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+1
View File
@@ -237,6 +237,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: handbrake name: handbrake
<<<<<<< HEAD:charts/handbrake/1.3.4/Chart.yaml
version: 1.3.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/Chart.yaml
# upstream_version: # upstream_version:
appVersion: "auto" appVersion: "auto"
description: HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. 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: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/handbrake/1.3.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/handbrake/1.3.4/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)
![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
HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. 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 | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/handbrake/1.3.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+3
View File
@@ -11,6 +11,9 @@ image:
startAsRoot: true startAsRoot: true
# 24=cdrom 44=video 107=render
supplementalGroups: 24,44,107
#All values here are set as the docker defaults. #All values here are set as the docker defaults.
envTpl: envTpl:
# Permissions Settings # Permissions Settings
+299 -262
View File
@@ -22,14 +22,14 @@ groups:
portals: portals:
web_portal: web_portal:
protocols: protocols:
- "$kubernetes-resource_configmap_main-portal_protocol" - "$kubernetes-resource_configmap_portal_protocol"
host: host:
- "$kubernetes-resource_configmap_main-portal_host" - "$kubernetes-resource_configmap_portal_host"
ports: ports:
- "$kubernetes-resource_configmap_main-portal_port" - "$kubernetes-resource_configmap_portal_port"
# UI # UI
questions: questions:
# Update Policy # Portal
- variable: portal - variable: portal
group: "Container Image" group: "Container Image"
label: "Configure Portal Button" label: "Configure Portal Button"
@@ -53,6 +53,7 @@ questions:
editable: false editable: false
type: string type: string
default: "http" default: "http"
# Update Policy
- variable: strategyType - variable: strategyType
group: "Container Image" group: "Container Image"
label: "Update Strategy" label: "Update Strategy"
@@ -345,6 +346,298 @@ questions:
required: true 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 # Privileged
- variable: securityContext - variable: securityContext
group: "Storage and Devices" group: "Storage and Devices"
@@ -357,263 +650,7 @@ questions:
schema: schema:
type: boolean type: boolean
default: true default: true
required: true required: false
# 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
- variable: additionalAppVolumeMounts - variable: additionalAppVolumeMounts
label: "Custom app storage" label: "Custom app storage"
group: "Storage and Devices" group: "Storage and Devices"
@@ -674,7 +711,7 @@ questions:
schema: schema:
type: hostpath type: hostpath
required: true required: true
# Reverse Proxy
- variable: ingress - variable: ingress
label: "" label: ""
group: "Reverse Proxy Configuration" group: "Reverse Proxy Configuration"
+3
View File
@@ -8,6 +8,9 @@ strategy:
startAsRoot: true startAsRoot: true
# 24=cdrom 44=video 107=render
supplementalGroups: 24,44,107
services: services:
main: main:
port: port:
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: heimdall name: heimdall
<<<<<<< HEAD:charts/heimdall/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/Chart.yaml
upstream_version: 4.1.1 upstream_version: 4.1.1
appVersion: "auto" appVersion: "auto"
description: An Application dashboard and launcher description: An Application dashboard and launcher
@@ -21,11 +17,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/heimdall/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/heimdall/1.6.4/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)
![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
An Application dashboard and launcher An Application dashboard and launcher
@@ -24,11 +20,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/heimdall/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+1
View File
@@ -238,6 +238,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: home-assistant name: home-assistant
<<<<<<< HEAD:charts/home-assistant/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/Chart.yaml
upstream_version: 5.3.0 upstream_version: 5.3.0
appVersion: "auto" appVersion: "auto"
description: home-assistant App for TrueNAS SCALE description: home-assistant App for TrueNAS SCALE
@@ -25,11 +21,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/home-assistant/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/home-assistant/1.6.4/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)
![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
home-assistant App for TrueNAS SCALE home-assistant App for TrueNAS SCALE
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/home-assistant/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
@@ -11,6 +11,9 @@ image:
startAsRoot: true startAsRoot: true
# 5=tty 20=dailout 24=cdrom
supplementalGroups: 5,20,24
## ##
# Most other defaults are set in questions.yaml # Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart # For other options please refer to the wiki, default_values.yaml or the common library chart
+61 -26
View File
@@ -151,11 +151,13 @@ questions:
hidden: true hidden: true
editable: false editable: false
- variable: datasetName - variable: datasetName
label: "Name" label: "Dataset Name"
schema: schema:
type: string type: string
default: "config" default: "config"
required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount path inside the container" label: "Mount path inside the container"
schema: schema:
@@ -187,12 +189,6 @@ questions:
default: false default: false
show_subquestions_if: true show_subquestions_if: true
subquestions: subquestions:
- variable: hostPathEnabled
label: "enabled"
schema:
type: boolean
default: true
hidden: true
- variable: setPermissions - variable: setPermissions
label: "Automatic Permissions" label: "Automatic Permissions"
description: "Automatically set permissions on install" description: "Automatically set permissions on install"
@@ -200,18 +196,41 @@ questions:
type: boolean type: boolean
default: false default: false
hidden: true 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 - variable: hostPath
label: "Path to Z-Wave device on host" label: "Path to Z-Wave device on host"
schema: schema:
type: path type: path
required: true required: true
default: "/dev/ttyUSB0" default: "/dev/ttyUSB0"
- variable: mountPath
label: "Path to mount device inside the container"
schema:
type: path
required: true
default: "/dev/ttyUSB0"
# Zigbee device ----------------- # Zigbee device -----------------
- variable: zigbee - variable: zigbee
label: "USB Zigbee Device" label: "USB Zigbee Device"
@@ -225,12 +244,6 @@ questions:
default: false default: false
show_subquestions_if: true show_subquestions_if: true
subquestions: subquestions:
- variable: hostPathEnabled
label: "enabled"
schema:
type: boolean
default: true
hidden: true
- variable: setPermissions - variable: setPermissions
label: "Automatic Permissions" label: "Automatic Permissions"
description: "Automatically set permissions on install" description: "Automatically set permissions on install"
@@ -238,18 +251,40 @@ questions:
type: boolean type: boolean
default: false default: false
hidden: true 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 - variable: hostPath
label: "Path to Zigbee device on host" label: "Path to Zigbee device on host"
schema: schema:
type: path type: path
required: true required: true
default: "/dev/ttyUSB1" default: "/dev/ttyUSB0"
- variable: mountPath
label: "Path to mount device inside the container"
schema:
type: path
required: true
default: "/dev/ttyUSB1"
# Enable privileged # Enable privileged
- variable: securityContext - variable: securityContext
group: "Storage and Devices" group: "Storage and Devices"
@@ -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 }}
@@ -10,6 +10,9 @@ strategy:
startAsRoot: true startAsRoot: true
# 5=tty 20=dailout 24=cdrom
supplementalGroups: 5,20,24
env: {} env: {}
# TZ: # TZ:
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: jackett name: jackett
<<<<<<< HEAD:charts/jackett/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/Chart.yaml
upstream_version: 7.0.1 upstream_version: 7.0.1
appVersion: "auto" appVersion: "auto"
description: API Support for your favorite torrent trackers. description: API Support for your favorite torrent trackers.
@@ -25,11 +21,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/jackett/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/jackett/1.6.4/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)
![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
API Support for your favorite torrent trackers. API Support for your favorite torrent trackers.
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/jackett/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+1
View File
@@ -237,6 +237,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: jellyfin name: jellyfin
<<<<<<< HEAD:charts/jellyfin/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/Chart.yaml
upstream_version: 4.2.1 upstream_version: 4.2.1
appVersion: "auto" appVersion: "auto"
description: Jellyfin is a Free Software Media System description: Jellyfin is a Free Software Media System
@@ -25,11 +21,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/jellyfin/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/jellyfin/1.6.4/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)
![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
Jellyfin is a Free Software Media System Jellyfin is a Free Software Media System
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/jellyfin/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+3
View File
@@ -9,6 +9,9 @@ image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: 10.6.4 tag: 10.6.4
# 44=video 107=render
supplementalGroups: 44,107
## ##
# Most other defaults are set in questions.yaml # Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart # For other options please refer to the wiki, default_values.yaml or the common library chart
+2
View File
@@ -238,6 +238,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
@@ -294,6 +295,7 @@ questions:
default: "media" default: "media"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
+3
View File
@@ -9,6 +9,9 @@ image:
strategy: strategy:
type: Recreate type: Recreate
# 44=video 107=render
supplementalGroups: 44,107
services: services:
main: main:
port: port:
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: kms name: kms
<<<<<<< HEAD:charts/kms/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/Chart.yaml
# upstream_version: # upstream_version:
appVersion: "minimal" appVersion: "minimal"
description: Private Windows Activation Server for development and testing description: Private Windows Activation Server for development and testing
@@ -21,11 +17,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/kms/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/kms/1.6.4/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)
![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
Private Windows Activation Server for development and testing Private Windows Activation Server for development and testing
@@ -24,11 +20,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/kms/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: lazylibrarian name: lazylibrarian
<<<<<<< HEAD:charts/lazylibrarian/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/Chart.yaml
upstream_version: 2.1.0 upstream_version: 2.1.0
appVersion: "latest" appVersion: "latest"
description: Get all your books, like series with Sonarr... description: Get all your books, like series with Sonarr...
@@ -24,11 +20,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/lazylibrarian/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/lazylibrarian/1.6.4/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)
![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
Get all your books, like series with Sonarr... Get all your books, like series with Sonarr...
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/lazylibrarian/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
@@ -238,6 +238,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
@@ -294,6 +295,7 @@ questions:
default: "media" default: "media"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: lidarr name: lidarr
<<<<<<< HEAD:charts/lidarr/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/Chart.yaml
upstream_version: 7.1.0 upstream_version: 7.1.0
appVersion: "auto" appVersion: "auto"
description: Looks and smells like Sonarr but made for music description: Looks and smells like Sonarr but made for music
@@ -25,11 +21,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/lidarr/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/lidarr/1.6.4/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)
![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
Looks and smells like Sonarr but made for music Looks and smells like Sonarr but made for music
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/lidarr/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+1 -1
View File
@@ -7,7 +7,7 @@
image: image:
repository: ghcr.io/truecharts/lidarr repository: ghcr.io/truecharts/lidarr
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: version-0.8.0.2082 tag: v0.8.0.2082
probes: probes:
liveness: liveness:
+2
View File
@@ -238,6 +238,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
@@ -294,6 +295,7 @@ questions:
default: "media" default: "media"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: lychee name: lychee
<<<<<<< HEAD:charts/lychee/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/Chart.yaml
upstream_version: 2.3.1 upstream_version: 2.3.1
appVersion: "auto" appVersion: "auto"
description: Lychee is a free photo-management tool, which runs on your server or web-space description: Lychee is a free photo-management tool, which runs on your server or web-space
@@ -25,11 +21,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/lychee/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/lychee/1.6.4/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)
![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
Lychee is a free photo-management tool, which runs on your server or web-space 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 | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/lychee/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+1
View File
@@ -237,6 +237,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: navidrome name: navidrome
<<<<<<< HEAD:charts/navidrome/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/Chart.yaml
upstream_version: 2.3.1 upstream_version: 2.3.1
appVersion: "auto" appVersion: "auto"
description: Navidrome is an open source web-based music collection server and streamer description: Navidrome is an open source web-based music collection server and streamer
@@ -25,11 +21,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/navidrome/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/navidrome/1.6.4/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)
![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
Navidrome is an open source web-based music collection server and streamer Navidrome is an open source web-based music collection server and streamer
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/navidrome/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+1
View File
@@ -238,6 +238,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: node-red name: node-red
<<<<<<< HEAD:charts/node-red/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/Chart.yaml
upstream_version: 5.2.1 upstream_version: 5.2.1
appVersion: "auto" appVersion: "auto"
description: Node-RED is low-code programming for event-driven applications description: Node-RED is low-code programming for event-driven applications
@@ -23,11 +19,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/node-red/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/node-red/1.6.4/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)
![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
Node-RED is low-code programming for event-driven applications Node-RED is low-code programming for event-driven applications
@@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/node-red/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+2 -1
View File
@@ -235,9 +235,10 @@ questions:
label: "Dataset Name" label: "Dataset Name"
schema: schema:
type: string type: string
default: "data" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: nzbget name: nzbget
<<<<<<< HEAD:charts/nzbget/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/Chart.yaml
upstream_version: 7.3.1 upstream_version: 7.3.1
appVersion: "auto" appVersion: "auto"
description: NZBGet is a Usenet downloader client description: NZBGet is a Usenet downloader client
@@ -24,11 +20,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/nzbget/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/nzbget/1.6.4/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)
![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
NZBGet is a Usenet downloader client NZBGet is a Usenet downloader client
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/nzbget/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.
+1
View File
@@ -237,6 +237,7 @@ questions:
default: "config" default: "config"
required: true required: true
editable: false editable: false
hidden: true
- variable: mountPath - variable: mountPath
label: "Mount Path" label: "Mount Path"
description: "Path to mount inside the pod" description: "Path to mount inside the pod"
-8
View File
@@ -1,11 +1,7 @@
apiVersion: v2 apiVersion: v2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
name: nzbhydra name: nzbhydra
<<<<<<< HEAD:charts/nzbhydra/1.6.4/Chart.yaml
version: 1.6.4
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/Chart.yaml
upstream_version: 5.3.1 upstream_version: 5.3.1
appVersion: "auto" appVersion: "auto"
description: Usenet meta search description: Usenet meta search
@@ -24,11 +20,7 @@ sources:
dependencies: dependencies:
- name: common - name: common
repository: https://charts.truecharts.org/ repository: https://charts.truecharts.org/
<<<<<<< HEAD:charts/nzbhydra/1.6.4/Chart.yaml
version: 1.6.7
=======
version: 2.0.0 version: 2.0.0
>>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/Chart.yaml
# condition: # condition:
# tags: # tags:
# import-values: # import-values:
+3 -10
View File
@@ -1,10 +1,6 @@
# Introduction # Introduction
<<<<<<< HEAD:charts/nzbhydra/1.6.4/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)
![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
Usenet meta search Usenet meta search
@@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version | | Repository | Name | Version |
|------------|------|---------| |------------|------|---------|
<<<<<<< HEAD:charts/nzbhydra/1.6.4/README.md | https://charts.truecharts.org/ | common | 2.0.0 |
| 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
## Installing the Chart ## 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) - Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
- Ask a [question](https://github.com/truecharts/charts/discussions) - 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) Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0)
Binary file not shown.

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