diff --git a/.github/README.md b/.github/README.md index 57faeaa3957..bf8146af9c3 100644 --- a/.github/README.md +++ b/.github/README.md @@ -18,12 +18,12 @@ Installing TrueCharts within TrueNAS SCALE, still requires the CLI. However it's - enter `cli` - enter `app catalog create repository="https://github.com/truecharts/truecharts" label="TrueCharts"` -For more information, please visit our wiki: -https://wiki.truecharts.org +For more information, please visit our website: +https://truecharts.org ## FAQ -Please refer to our [FAQ](https://wiki.truecharts.org/FAQ) and [Issue tracker](https://github.com/truecharts/charts/issues) before creating an issue. +Please refer to our [FAQ](https://truecharts.org/about/FAQ/) and [Issue tracker](https://github.com/truecharts/charts/issues) before creating an issue. There is a significant chance your issue has been reported before! ## Getting into creating Apps diff --git a/.github/workflows/wiki-create-docs.yaml b/.github/workflows/wiki-create-docs.yaml index 6e8897fd6cd..10d399a1225 100644 --- a/.github/workflows/wiki-create-docs.yaml +++ b/.github/workflows/wiki-create-docs.yaml @@ -43,8 +43,7 @@ jobs: - name: Create general website run: | cd master -<<<<<<< HEAD - cp -Rf .github/docs/* ../website/content/ + cp -Rf docs/* ../website/content/ cp .github/README.md ../website/content/about/index.md || echo "readme copy failed, continuing..." cp .github/CODE_OF_CONDUCT ../website/content/about/code_of_conduct.md || echo "CODE_OF_CONDUCT copy failed, continuing..." cp .github/CONTRIBUTING ../website/content/development/contributing.md || echo "CONTRIBUTING copy failed, continuing..." @@ -53,17 +52,6 @@ jobs: cp NOTICE ../website/content/about/NOTICE.md || echo "license copy failed, continuing..." sed -i '1s/^/# NOTICE
\n\n/' ../website/content/about/NOTICE.md ls ../website/content/ -======= - cp -Rf docs/* ../wiki/content/ - cp .github/README.md ../wiki/content/index.md || echo "readme copy failed, continuing..." - cp .github/CODE_OF_CONDUCT ../wiki/content/code_of_conduct.md || echo "CODE_OF_CONDUCT copy failed, continuing..." - cp .github/CONTRIBUTING ../wiki/content/development/contributing.md || echo "CONTRIBUTING copy failed, continuing..." - cp LICENSE ../wiki/content/legal/LICENSE.md || echo "license copy failed, continuing..." - sed -i '1s/^/# License
\n\n/' ../wiki/content/legal/LICENSE.md - cp NOTICE ../wiki/content/legal/NOTICE.md || echo "license copy failed, continuing..." - sed -i '1s/^/# NOTICE
\n\n/' ../wiki/content/legal/NOTICE.md - ls ../wiki/content/ ->>>>>>> Move docs from .github to project root (#223) cd .. - name: Create apps website diff --git a/.helmdocsignore b/.helmdocsignore new file mode 100644 index 00000000000..e69de29bb2d diff --git a/.tools/templates/chart/app-readme.md.gotmpl b/.tools/templates/chart/app-readme.md.gotmpl index 4e52f6ec229..729e3926092 100644 --- a/.tools/templates/chart/app-readme.md.gotmpl +++ b/.tools/templates/chart/app-readme.md.gotmpl @@ -1,5 +1,4 @@ {{- define "custom.notes" -}} {{- end -}} - {{ template "chart.description" . }} {{ template "custom.notes" . }} diff --git a/.tools/tests/charts/common-test_spec.rb b/.tools/tests/charts/common-test_spec.rb index 857f3cd628f..69fca84b7f2 100644 --- a/.tools/tests/charts/common-test_spec.rb +++ b/.tools/tests/charts/common-test_spec.rb @@ -42,7 +42,21 @@ class Test < ChartTest it 'defaults to false = runAs 568' do jq('.spec.template.spec.securityContext.runAsUser', resource('Deployment')).must_equal 568 jq('.spec.template.spec.securityContext.runAsGroup', resource('Deployment')).must_equal 568 + jq('.spec.template.spec.securityContext.fsGroup', resource('Deployment')).must_equal 568 jq('.spec.template.spec.securityContext.runAsNonRoot', resource('Deployment')).must_equal true + jq('.spec.template.spec.securityContext.supplementalGroups', resource('Deployment')).must_equal [] + end + + it 'allow settingsupplementalGroups' do + values = { + supplementalGroups: "5,20" + } + chart.value values + jq('.spec.template.spec.securityContext.runAsUser', resource('Deployment')).must_equal 568 + jq('.spec.template.spec.securityContext.runAsGroup', resource('Deployment')).must_equal 568 + jq('.spec.template.spec.securityContext.fsGroup', resource('Deployment')).must_equal 568 + jq('.spec.template.spec.securityContext.runAsNonRoot', resource('Deployment')).must_equal true + jq('.spec.template.spec.securityContext.supplementalGroups', resource('Deployment')).must_equal [5,20] end it 'can be enabled = runAs nil' do @@ -50,6 +64,8 @@ class Test < ChartTest jq('.spec.template.spec.securityContext.runAsUser', resource('Deployment')).must_equal nil jq('.spec.template.spec.securityContext.runAsGroup', resource('Deployment')).must_equal nil jq('.spec.template.spec.securityContext.runAsNonRoot', resource('Deployment')).must_equal nil + jq('.spec.template.spec.securityContext.fsGroup', resource('Deployment')).must_equal nil + jq('.spec.template.spec.securityContext.supplementalGroups', resource('Deployment')).must_equal nil end end diff --git a/charts/bazarr/2.0.0/Chart.yaml b/charts/bazarr/2.0.0/Chart.yaml index 422f696c7e2..fb0f6b81902 100644 --- a/charts/bazarr/2.0.0/Chart.yaml +++ b/charts/bazarr/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: bazarr -<<<<<<< HEAD:charts/bazarr/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/Chart.yaml upstream_version: 5.2.1 appVersion: "auto" description: Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements @@ -28,11 +24,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/bazarr/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/bazarr/2.0.0/README.md b/charts/bazarr/2.0.0/README.md index e9d22b56be6..69b77b01e6f 100644 --- a/charts/bazarr/2.0.0/README.md +++ b/charts/bazarr/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/bazarr/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.9.0.5](https://img.shields.io/badge/AppVersion-v0.9.0.5-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.9.0.5](https://img.shields.io/badge/AppVersion-v0.9.0.5-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/bazarr/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/bazarr/2.0.0/charts/common-2.0.0.tgz b/charts/bazarr/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/bazarr/2.0.0/charts/common-2.0.0.tgz and b/charts/bazarr/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/bazarr/2.0.0/questions.yaml b/charts/bazarr/2.0.0/questions.yaml index e8bc137a2dc..3bc9bd884a9 100644 --- a/charts/bazarr/2.0.0/questions.yaml +++ b/charts/bazarr/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -294,6 +295,7 @@ questions: default: "media" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/calibre-web/2.0.0/Chart.yaml b/charts/calibre-web/2.0.0/Chart.yaml index 7bf20de18bd..4a0c5e49839 100644 --- a/charts/calibre-web/2.0.0/Chart.yaml +++ b/charts/calibre-web/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: calibre-web -<<<<<<< HEAD:charts/calibre-web/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/Chart.yaml upstream_version: 4.3.1 appVersion: "auto" description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/calibre-web/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/calibre-web/2.0.0/README.md b/charts/calibre-web/2.0.0/README.md index c36b29af887..a366d584a11 100644 --- a/charts/calibre-web/2.0.0/README.md +++ b/charts/calibre-web/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/calibre-web/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.9](https://img.shields.io/badge/AppVersion-0.6.9-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.9](https://img.shields.io/badge/AppVersion-0.6.9-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/calibre-web/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/calibre-web/2.0.0/charts/common-2.0.0.tgz b/charts/calibre-web/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/calibre-web/2.0.0/charts/common-2.0.0.tgz and b/charts/calibre-web/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/calibre-web/2.0.0/questions.yaml b/charts/calibre-web/2.0.0/questions.yaml index 9c3df98b7fe..c36585d9152 100644 --- a/charts/calibre-web/2.0.0/questions.yaml +++ b/charts/calibre-web/2.0.0/questions.yaml @@ -236,6 +236,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -292,6 +293,7 @@ questions: default: "media" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/collabora-online/2.0.0/Chart.yaml b/charts/collabora-online/2.0.0/Chart.yaml index a19b3dabffd..18f8b59903a 100644 --- a/charts/collabora-online/2.0.0/Chart.yaml +++ b/charts/collabora-online/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: collabora-online -<<<<<<< HEAD:charts/collabora-online/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/Chart.yaml # upstream_version: appVersion: "auto" description: Collabora Online Development Edition – an awesome, Online Office suite image suitable for home use. @@ -23,11 +19,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/collabora-online/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/collabora-online/2.0.0/README.md b/charts/collabora-online/2.0.0/README.md index 46f84f4a274..7bee9d36fb2 100644 --- a/charts/collabora-online/2.0.0/README.md +++ b/charts/collabora-online/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/collabora-online/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.4.6.1](https://img.shields.io/badge/AppVersion-6.4.6.1-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.4.6.1](https://img.shields.io/badge/AppVersion-6.4.6.1-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Collabora Online Development Edition – an awesome, Online Office suite image suitable for home use. @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/collabora-online/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/collabora-online/2.0.0/charts/common-2.0.0.tgz b/charts/collabora-online/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/collabora-online/2.0.0/charts/common-2.0.0.tgz and b/charts/collabora-online/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/collabora-online/2.0.0/questions.yaml b/charts/collabora-online/2.0.0/questions.yaml index 7a1d93e8958..734954edb42 100644 --- a/charts/collabora-online/2.0.0/questions.yaml +++ b/charts/collabora-online/2.0.0/questions.yaml @@ -120,7 +120,7 @@ questions: schema: type: string private: true - default: "changeme" + default: "" required: true - variable: dictionaries label: "Dictionaries to use, leave empty to use all" diff --git a/charts/deluge/2.0.0/Chart.yaml b/charts/deluge/2.0.0/Chart.yaml index 48c84ecdebc..792b3f24df1 100644 --- a/charts/deluge/2.0.0/Chart.yaml +++ b/charts/deluge/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: deluge -<<<<<<< HEAD:charts/deluge/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/Chart.yaml upstream_version: 1.1.1 appVersion: "latest" description: Deluge is a torrent download client @@ -23,11 +19,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/deluge/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/deluge/2.0.0/README.md b/charts/deluge/2.0.0/README.md index e78af4e3d7d..1322bf180cc 100644 --- a/charts/deluge/2.0.0/README.md +++ b/charts/deluge/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/deluge/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.0.3-2201906121747](https://img.shields.io/badge/AppVersion-v2.0.3--2201906121747-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.0.3-2201906121747](https://img.shields.io/badge/AppVersion-v2.0.3--2201906121747-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) Deluge is a torrent download client @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/deluge/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/deluge/2.0.0/charts/common-2.0.0.tgz b/charts/deluge/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/deluge/2.0.0/charts/common-2.0.0.tgz and b/charts/deluge/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/deluge/2.0.0/questions.yaml b/charts/deluge/2.0.0/questions.yaml index d29ee3e1562..b4a4cab6e38 100644 --- a/charts/deluge/2.0.0/questions.yaml +++ b/charts/deluge/2.0.0/questions.yaml @@ -363,6 +363,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/emby/2.0.0/README.md b/charts/emby/2.0.0/README.md index f09f1a6db8c..3722ff326e7 100644 --- a/charts/emby/2.0.0/README.md +++ b/charts/emby/2.0.0/README.md @@ -1,18 +1,17 @@ # Introduction -![Version: 1.6.3](https://img.shields.io/badge/Version-1.6.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.6.4](https://img.shields.io/badge/AppVersion-10.6.4-informational?style=flat-square) +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) -Jellyfin is a Free Software Media System +Emby Server is a home media server TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. **This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** ## Source Code -* -* -* -* +* +* +* ## Requirements @@ -22,11 +21,11 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -| https://charts.truecharts.org/ | common | 1.6.5 | +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart -To install the chart with the release name `jellyfin` +To install the chart with the release name `emby` - Open TrueNAS SCALE - Go to Apps @@ -35,7 +34,7 @@ To install the chart with the release name `jellyfin` ## Uninstalling the Chart -To uninstall the `jellyfin` deployment +To uninstall the `emby` deployment - Open TrueNAS SCALE - Go to Apps @@ -51,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/emby/2.0.0/charts/common-2.0.0.tgz b/charts/emby/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/emby/2.0.0/charts/common-2.0.0.tgz and b/charts/emby/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/emby/2.0.0/ix_values.yaml b/charts/emby/2.0.0/ix_values.yaml index 97c75b5650b..955b3ef7b78 100644 --- a/charts/emby/2.0.0/ix_values.yaml +++ b/charts/emby/2.0.0/ix_values.yaml @@ -11,6 +11,9 @@ image: startAsRoot: true +# 44=video 107=render +supplementalGroups: 44,107 + ## # Most other defaults are set in questions.yaml # For other options please refer to the wiki, default_values.yaml or the common library chart diff --git a/charts/emby/2.0.0/questions.yaml b/charts/emby/2.0.0/questions.yaml index a75131bef72..ab8f309bbe4 100644 --- a/charts/emby/2.0.0/questions.yaml +++ b/charts/emby/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -294,6 +295,7 @@ questions: default: "media" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/emby/2.0.0/test_values.yaml b/charts/emby/2.0.0/test_values.yaml index 163b9057708..febde8e46ec 100644 --- a/charts/emby/2.0.0/test_values.yaml +++ b/charts/emby/2.0.0/test_values.yaml @@ -11,6 +11,10 @@ strategy: startAsRoot: true +# 44=video 107=render +supplementalGroups: 44,107 + + services: main: port: diff --git a/charts/esphome/2.0.0/Chart.yaml b/charts/esphome/2.0.0/Chart.yaml index 3db0597aad6..0a18039f590 100644 --- a/charts/esphome/2.0.0/Chart.yaml +++ b/charts/esphome/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: esphome -<<<<<<< HEAD:charts/esphome/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/Chart.yaml upstream_version: 4.3.1 appVersion: "auto" description: ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems. @@ -23,11 +19,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/esphome/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/esphome/2.0.0/README.md b/charts/esphome/2.0.0/README.md index d0497930cee..651dd6938fc 100644 --- a/charts/esphome/2.0.0/README.md +++ b/charts/esphome/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/esphome/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.15.3](https://img.shields.io/badge/AppVersion-1.15.3-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.15.3](https://img.shields.io/badge/AppVersion-1.15.3-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems. @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/esphome/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/esphome/2.0.0/charts/common-2.0.0.tgz b/charts/esphome/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/esphome/2.0.0/charts/common-2.0.0.tgz and b/charts/esphome/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/esphome/2.0.0/ix_values.yaml b/charts/esphome/2.0.0/ix_values.yaml index 00d035fd9d0..3f501763679 100644 --- a/charts/esphome/2.0.0/ix_values.yaml +++ b/charts/esphome/2.0.0/ix_values.yaml @@ -9,8 +9,6 @@ image: pullPolicy: IfNotPresent tag: 1.15.3 -startAsRoot: true - ## # Most other defaults are set in questions.yaml # For other options please refer to the wiki, default_values.yaml or the common library chart diff --git a/charts/esphome/2.0.0/questions.yaml b/charts/esphome/2.0.0/questions.yaml index efff326bc35..0366af6ec2f 100644 --- a/charts/esphome/2.0.0/questions.yaml +++ b/charts/esphome/2.0.0/questions.yaml @@ -253,6 +253,40 @@ questions: schema: type: hostpath required: true + # platformio ------------------------ + - variable: platformio + label: "platformio" + schema: + hidden: true + type: dict + $ref: + - "normalize/ixVolume" + attrs: + - variable: enabled + label: "Enabled" + schema: + type: boolean + default: true + - variable: setPermissions + label: "Automatic Permissions" + schema: + type: boolean + default: true + - variable: emptyDir + label: "Empty Dir" + schema: + type: boolean + default: false + - variable: datasetName + label: "Dataset Name" + schema: + type: string + default: "platformio" + - variable: mountPath + label: "Mount Path" + schema: + type: path + default: "/.platformio" - variable: additionalAppVolumeMounts label: "Custom app storage" diff --git a/charts/freshrss/2.0.0/Chart.yaml b/charts/freshrss/2.0.0/Chart.yaml index c8df1424cfc..31087cbdd59 100644 --- a/charts/freshrss/2.0.0/Chart.yaml +++ b/charts/freshrss/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: freshrss -<<<<<<< HEAD:charts/freshrss/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/Chart.yaml upstream_version: 2.3.1 appVersion: "auto" description: FreshRSS is a self-hosted RSS feed aggregator @@ -24,11 +20,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/freshrss/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/freshrss/2.0.0/README.md b/charts/freshrss/2.0.0/README.md index d91ccc8e2cb..dfe7fdfd9c9 100644 --- a/charts/freshrss/2.0.0/README.md +++ b/charts/freshrss/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/freshrss/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.17.0](https://img.shields.io/badge/AppVersion-1.17.0-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.17.0](https://img.shields.io/badge/AppVersion-1.17.0-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) FreshRSS is a self-hosted RSS feed aggregator @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/freshrss/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/freshrss/2.0.0/charts/common-2.0.0.tgz b/charts/freshrss/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/freshrss/2.0.0/charts/common-2.0.0.tgz and b/charts/freshrss/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/freshrss/2.0.0/questions.yaml b/charts/freshrss/2.0.0/questions.yaml index 9d743ddc10a..6440d955d13 100644 --- a/charts/freshrss/2.0.0/questions.yaml +++ b/charts/freshrss/2.0.0/questions.yaml @@ -237,6 +237,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/gaps/2.0.0/Chart.yaml b/charts/gaps/2.0.0/Chart.yaml index ee15e749b56..44d380ec25e 100644 --- a/charts/gaps/2.0.0/Chart.yaml +++ b/charts/gaps/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: gaps -<<<<<<< HEAD:charts/gaps/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/Chart.yaml upstream_version: 1.1.1 appVersion: "auto" description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. @@ -24,11 +20,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/gaps/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/gaps/2.0.0/README.md b/charts/gaps/2.0.0/README.md index 94c6faf31fd..77ae6e2851a 100644 --- a/charts/gaps/2.0.0/README.md +++ b/charts/gaps/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/gaps/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. @@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/gaps/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/gaps/2.0.0/charts/common-2.0.0.tgz b/charts/gaps/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/gaps/2.0.0/charts/common-2.0.0.tgz and b/charts/gaps/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/grocy/2.0.0/Chart.yaml b/charts/grocy/2.0.0/Chart.yaml index e53d793e448..2aa118caba1 100644 --- a/charts/grocy/2.0.0/Chart.yaml +++ b/charts/grocy/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: grocy -<<<<<<< HEAD:charts/grocy/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/Chart.yaml upstream_version: 4.3.1 appVersion: "auto" description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home @@ -22,11 +18,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/grocy/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/grocy/2.0.0/README.md b/charts/grocy/2.0.0/README.md index 239de036e89..e85b569faef 100644 --- a/charts/grocy/2.0.0/README.md +++ b/charts/grocy/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/grocy/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.7.1](https://img.shields.io/badge/AppVersion-v2.7.1-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.7.1](https://img.shields.io/badge/AppVersion-v2.7.1-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home @@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/grocy/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/grocy/2.0.0/charts/common-2.0.0.tgz b/charts/grocy/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/grocy/2.0.0/charts/common-2.0.0.tgz and b/charts/grocy/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/grocy/2.0.0/questions.yaml b/charts/grocy/2.0.0/questions.yaml index 258725a4a29..aa0b1a1fda1 100644 --- a/charts/grocy/2.0.0/questions.yaml +++ b/charts/grocy/2.0.0/questions.yaml @@ -237,6 +237,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/handbrake/2.0.0/Chart.yaml b/charts/handbrake/2.0.0/Chart.yaml index 66e1f5fb913..e6bcfba6af5 100644 --- a/charts/handbrake/2.0.0/Chart.yaml +++ b/charts/handbrake/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: handbrake -<<<<<<< HEAD:charts/handbrake/1.3.4/Chart.yaml -version: 1.3.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/Chart.yaml # upstream_version: appVersion: "auto" description: HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/handbrake/1.3.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/handbrake/2.0.0/README.md b/charts/handbrake/2.0.0/README.md index 2dca59b5eef..10fa8c6d407 100644 --- a/charts/handbrake/2.0.0/README.md +++ b/charts/handbrake/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/handbrake/1.3.4/README.md -![Version: 1.3.4](https://img.shields.io/badge/Version-1.3.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.23.1](https://img.shields.io/badge/AppVersion-1.23.1-informational?style=flat-square) -======= -![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.23.1](https://img.shields.io/badge/AppVersion-1.23.1-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/handbrake/1.3.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/handbrake/2.0.0/charts/common-2.0.0.tgz b/charts/handbrake/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/handbrake/2.0.0/charts/common-2.0.0.tgz and b/charts/handbrake/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/handbrake/2.0.0/ix_values.yaml b/charts/handbrake/2.0.0/ix_values.yaml index 28dcfd2d272..cbeeae8c451 100644 --- a/charts/handbrake/2.0.0/ix_values.yaml +++ b/charts/handbrake/2.0.0/ix_values.yaml @@ -11,6 +11,9 @@ image: startAsRoot: true +# 24=cdrom 44=video 107=render +supplementalGroups: 24,44,107 + #All values here are set as the docker defaults. envTpl: # Permissions Settings diff --git a/charts/handbrake/2.0.0/questions.yaml b/charts/handbrake/2.0.0/questions.yaml index 6132179f136..87bf2f55061 100644 --- a/charts/handbrake/2.0.0/questions.yaml +++ b/charts/handbrake/2.0.0/questions.yaml @@ -22,14 +22,14 @@ groups: portals: web_portal: protocols: - - "$kubernetes-resource_configmap_main-portal_protocol" + - "$kubernetes-resource_configmap_portal_protocol" host: - - "$kubernetes-resource_configmap_main-portal_host" + - "$kubernetes-resource_configmap_portal_host" ports: - - "$kubernetes-resource_configmap_main-portal_port" + - "$kubernetes-resource_configmap_portal_port" # UI questions: - # Update Policy + # Portal - variable: portal group: "Container Image" label: "Configure Portal Button" @@ -53,6 +53,7 @@ questions: editable: false type: string default: "http" + # Update Policy - variable: strategyType group: "Container Image" label: "Update Strategy" @@ -345,6 +346,298 @@ questions: required: true +# TrueCharts Specific + - variable: appVolumeMounts + label: "app storage" + group: "Storage and Devices" + schema: + type: dict + attrs: + # Config ------------------------ + - variable: config + label: "config dataset" + schema: + type: dict + $ref: + - "normalize/ixVolume" + attrs: + - variable: enabled + label: "Enabled" + schema: + type: boolean + default: true + required: true + hidden: true + editable: false + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + type: boolean + default: true + hidden: false + - variable: emptyDir + label: "emptyDir" + schema: + type: boolean + default: false + hidden: true + editable: false + - variable: datasetName + label: "Dataset Name" + schema: + type: string + default: "config" + required: true + editable: false + hidden: true + - variable: mountPath + label: "Mount Path" + description: "Path to mount inside the pod" + schema: + type: path + required: true + default: "/config" + editable: false + - variable: hostPathEnabled + label: "host Path Enabled" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostPath + label: "Host Path" + schema: + type: hostpath + required: true + # storage ------------------------ + - variable: storage + label: "storage dataset" + schema: + type: dict + $ref: + - "normalize/ixVolume" + attrs: + - variable: enabled + label: "Enabled" + schema: + type: boolean + default: true + required: true + hidden: true + editable: false + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + type: boolean + default: true + hidden: false + - variable: emptyDir + label: "emptyDir" + schema: + type: boolean + default: false + hidden: true + editable: false + - variable: datasetName + label: "Dataset Name" + schema: + type: string + default: "storage" + required: true + editable: false + - variable: mountPath + label: "Mount Path" + description: "Path to mount inside the pod" + schema: + type: path + required: true + default: "/storage" + editable: false + - variable: hostPathEnabled + label: "host Path Enabled" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostPath + label: "Host Path" + schema: + type: hostpath + required: true + # watch ------------------------ + - variable: watch + label: "watch dataset" + schema: + type: dict + $ref: + - "normalize/ixVolume" + attrs: + - variable: enabled + label: "Enabled" + schema: + type: boolean + default: true + required: true + hidden: true + editable: false + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + type: boolean + default: true + hidden: false + - variable: emptyDir + label: "emptyDir" + schema: + type: boolean + default: false + hidden: true + editable: false + - variable: datasetName + label: "Dataset Name" + schema: + type: string + default: "watch" + required: true + editable: false + - variable: mountPath + label: "Mount Path" + description: "Path to mount inside the pod" + schema: + type: path + required: true + default: "/watch" + editable: false + - variable: hostPathEnabled + label: "host Path Enabled" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostPath + label: "Host Path" + schema: + type: hostpath + required: true + # output ------------------------ + - variable: output + label: "output dataset" + schema: + type: dict + $ref: + - "normalize/ixVolume" + attrs: + - variable: enabled + label: "Enabled" + schema: + type: boolean + default: true + required: true + hidden: true + editable: false + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + type: boolean + default: true + hidden: false + - variable: emptyDir + label: "emptyDir" + schema: + type: boolean + default: false + hidden: true + editable: false + - variable: datasetName + label: "Dataset Name" + schema: + type: string + default: "output" + required: true + editable: false + - variable: mountPath + label: "Mount Path" + description: "Path to mount inside the pod" + schema: + type: path + required: true + default: "/output" + editable: false + - variable: hostPathEnabled + label: "host Path Enabled" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostPath + label: "Host Path" + schema: + type: hostpath + required: true + # Optical Drive + - variable: opticaldrive + label: "Optical Drive Device" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable Optical Drive Device" + schema: + type: boolean + default: false + required: false + editable: true + show_subquestions_if: true + subquestions: + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + type: boolean + default: false + hidden: true + - variable: name + label: "Mountpoint Name" + schema: + type: string + default: "opticaldrive" + required: true + editable: true + - variable: emptyDir + label: "emptyDir" + schema: + type: boolean + default: false + hidden: true + editable: false + - variable: mountPath + label: "Path to Optical Drive device inside the pod" + description: "Preferably the same as the path to the Optical Drive on the host" + schema: + type: path + required: true + default: "" + editable: true + - variable: hostPathEnabled + label: "host Path Enabled" + schema: + type: boolean + default: true + hidden: true + - variable: hostPath + label: "Path to Optical Drive device on host" + description: 'Best to use path "by-id"' + schema: + type: path + required: true # Privileged - variable: securityContext group: "Storage and Devices" @@ -357,263 +650,7 @@ questions: schema: type: boolean default: true - required: true - -# TrueCharts Specific - - variable: appVolumeMounts - label: "" - group: "Storage and Devices" - schema: - type: dict - attrs: - # config - - variable: config - label: "config Volume" - schema: - type: dict - $ref: - - "normalize/ixVolume" - attrs: - - variable: enabled - label: "Enabled" - schema: - type: boolean - default: true - required: true - hidden: true - editable: false - - variable: setPermissions - label: "Automatic Permissions" - description: "Automatically set permissions on install" - schema: - type: boolean - default: true - hidden: false - - variable: emptyDir - label: "emptyDir" - schema: - type: boolean - default: false - hidden: true - editable: false - - variable: datasetName - label: "Name" - schema: - type: string - default: "config" - editable: false - - variable: mountPath - label: "Mount Path inside the container" - schema: - type: path - default: "/config" - editable: false - - variable: hostPathEnabled - label: "config - Enable Host Path" - schema: - type: boolean - default: false - show_subquestions_if: true - subquestions: - - variable: hostPath - label: "config Host Path" - description: "Host path to store config" - schema: - type: hostpath - required: true - # storage - - variable: storage - label: "storage Volume" - schema: - type: dict - $ref: - - "normalize/ixVolume" - attrs: - - variable: enabled - label: "Enabled" - schema: - type: boolean - default: true - required: true - hidden: true - editable: false - - variable: setPermissions - label: "Automatic Permissions" - description: "Automatically set permissions on install" - schema: - type: boolean - default: true - hidden: false - - variable: emptyDir - label: "emptyDir" - schema: - type: boolean - default: false - hidden: true - editable: false - - variable: datasetName - label: "Name" - schema: - type: string - default: "storage" - editable: false - - variable: mountPath - label: "Mount Path inside the container" - schema: - type: path - default: "/storage" - editable: false - - variable: hostPathEnabled - label: "storage - Enable Host Path" - schema: - type: boolean - default: false - show_subquestions_if: true - subquestions: - - variable: hostPath - label: "storage Host Path" - description: "Host path to store storage" - schema: - type: hostpath - required: true - # watch - - variable: watch - label: "watch Volume" - schema: - type: dict - $ref: - - "normalize/ixVolume" - attrs: - - variable: enabled - label: "Enabled" - schema: - type: boolean - default: true - required: true - hidden: true - editable: false - - variable: setPermissions - label: "Automatic Permissions" - description: "Automatically set permissions on install" - schema: - type: boolean - default: true - hidden: false - - variable: emptyDir - label: "emptyDir" - schema: - type: boolean - default: false - hidden: true - editable: false - - variable: datasetName - label: "Name" - schema: - type: string - default: "watch" - editable: false - - variable: mountPath - label: "Mount Path inside the container" - schema: - type: path - default: "/watch" - editable: false - - variable: hostPathEnabled - label: "watch - Enable Host Path" - schema: - type: boolean - default: false - show_subquestions_if: true - subquestions: - - variable: hostPath - label: "watch Host Path" - description: "Host path to store watch" - schema: - type: hostpath - required: true - # output - - variable: output - label: "output Volume" - schema: - type: dict - $ref: - - "normalize/ixVolume" - attrs: - - variable: enabled - label: "Enabled" - schema: - type: boolean - default: true - required: true - hidden: true - editable: false - - variable: setPermissions - label: "Automatic Permissions" - description: "Automatically set permissions on install" - schema: - type: boolean - default: true - hidden: false - - variable: emptyDir - label: "emptyDir" - schema: - type: boolean - default: false - hidden: true - editable: false - - variable: datasetName - label: "Name" - schema: - type: string - default: "output" - editable: false - - variable: mountPath - label: "Mount Path inside the container" - schema: - type: path - default: "/output" - editable: false - - variable: hostPathEnabled - label: "output - Enable Host Path" - schema: - type: boolean - default: false - show_subquestions_if: true - subquestions: - - variable: hostPath - label: "output Host Path" - description: "Host path to store output" - schema: - type: hostpath - required: true - # Optical Drive - - variable: opticaldrive - label: "Optical Drive Device" - schema: - type: dict - attrs: - - variable: setPermissions - label: "Automatic Permissions" - description: "Automatically set permissions on install" - schema: - type: boolean - default: false - hidden: true - - variable: hostPath - label: "Path to Optical Drive device on host" - description: 'Best to use path "by-id"' - schema: - type: path - required: true - default: "/dev/sr0" - - variable: mountPath - label: "Path to mount device inside the container" - schema: - type: path - default: "/dev/sr0" - required: true - - # Reverse Proxy + required: false - variable: additionalAppVolumeMounts label: "Custom app storage" group: "Storage and Devices" @@ -674,7 +711,7 @@ questions: schema: type: hostpath required: true - + # Reverse Proxy - variable: ingress label: "" group: "Reverse Proxy Configuration" diff --git a/charts/handbrake/2.0.0/test_values.yaml b/charts/handbrake/2.0.0/test_values.yaml index 09e26b9c564..5193bdb128b 100644 --- a/charts/handbrake/2.0.0/test_values.yaml +++ b/charts/handbrake/2.0.0/test_values.yaml @@ -8,6 +8,9 @@ strategy: startAsRoot: true +# 24=cdrom 44=video 107=render +supplementalGroups: 24,44,107 + services: main: port: diff --git a/charts/heimdall/2.0.0/Chart.yaml b/charts/heimdall/2.0.0/Chart.yaml index c60af70da41..8ce6756e5e5 100644 --- a/charts/heimdall/2.0.0/Chart.yaml +++ b/charts/heimdall/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: heimdall -<<<<<<< HEAD:charts/heimdall/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/Chart.yaml upstream_version: 4.1.1 appVersion: "auto" description: An Application dashboard and launcher @@ -21,11 +17,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/heimdall/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/heimdall/2.0.0/README.md b/charts/heimdall/2.0.0/README.md index 68e4862f6db..cabc7f73e36 100644 --- a/charts/heimdall/2.0.0/README.md +++ b/charts/heimdall/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/heimdall/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.2.2](https://img.shields.io/badge/AppVersion-2.2.2-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.2.2](https://img.shields.io/badge/AppVersion-2.2.2-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) An Application dashboard and launcher @@ -24,11 +20,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/heimdall/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -57,5 +49,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/heimdall/2.0.0/charts/common-2.0.0.tgz b/charts/heimdall/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/heimdall/2.0.0/charts/common-2.0.0.tgz and b/charts/heimdall/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/heimdall/2.0.0/questions.yaml b/charts/heimdall/2.0.0/questions.yaml index a43f53345a9..15083202c36 100644 --- a/charts/heimdall/2.0.0/questions.yaml +++ b/charts/heimdall/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/home-assistant/2.0.0/Chart.yaml b/charts/home-assistant/2.0.0/Chart.yaml index 5016329eee2..e65265573fc 100644 --- a/charts/home-assistant/2.0.0/Chart.yaml +++ b/charts/home-assistant/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: home-assistant -<<<<<<< HEAD:charts/home-assistant/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/Chart.yaml upstream_version: 5.3.0 appVersion: "auto" description: home-assistant App for TrueNAS SCALE @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/home-assistant/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/home-assistant/2.0.0/README.md b/charts/home-assistant/2.0.0/README.md index c15a6498186..e636cc67d95 100644 --- a/charts/home-assistant/2.0.0/README.md +++ b/charts/home-assistant/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/home-assistant/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2021.2.2](https://img.shields.io/badge/AppVersion-2021.2.2-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2021.2.2](https://img.shields.io/badge/AppVersion-2021.2.2-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) home-assistant App for TrueNAS SCALE @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/home-assistant/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/home-assistant/2.0.0/charts/common-2.0.0.tgz b/charts/home-assistant/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/home-assistant/2.0.0/charts/common-2.0.0.tgz and b/charts/home-assistant/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/home-assistant/2.0.0/ix_values.yaml b/charts/home-assistant/2.0.0/ix_values.yaml index d50df2f8c29..41134d2bf5b 100644 --- a/charts/home-assistant/2.0.0/ix_values.yaml +++ b/charts/home-assistant/2.0.0/ix_values.yaml @@ -11,6 +11,9 @@ image: startAsRoot: true +# 5=tty 20=dailout 24=cdrom +supplementalGroups: 5,20,24 + ## # Most other defaults are set in questions.yaml # For other options please refer to the wiki, default_values.yaml or the common library chart diff --git a/charts/home-assistant/2.0.0/questions.yaml b/charts/home-assistant/2.0.0/questions.yaml index 4c2d4313ca5..f005284f9ac 100644 --- a/charts/home-assistant/2.0.0/questions.yaml +++ b/charts/home-assistant/2.0.0/questions.yaml @@ -151,11 +151,13 @@ questions: hidden: true editable: false - variable: datasetName - label: "Name" + label: "Dataset Name" schema: type: string default: "config" + required: true editable: false + hidden: true - variable: mountPath label: "Mount path inside the container" schema: @@ -187,12 +189,6 @@ questions: default: false show_subquestions_if: true subquestions: - - variable: hostPathEnabled - label: "enabled" - schema: - type: boolean - default: true - hidden: true - variable: setPermissions label: "Automatic Permissions" description: "Automatically set permissions on install" @@ -200,18 +196,41 @@ questions: type: boolean default: false hidden: true + - variable: name + label: "Mountpoint Name" + schema: + type: string + default: "ZWave" + required: true + editable: true + - variable: emptyDir + label: "emptyDir" + schema: + type: boolean + default: false + hidden: true + editable: false + - variable: mountPath + label: "Path to mount device inside the container" + description: "Preferably the same as the path to the device path on the host" + schema: + type: path + required: true + default: "/dev/ttyUSB0" + editable: true + - variable: hostPathEnabled + label: "host Path Enabled" + schema: + type: boolean + default: true + hidden: true - variable: hostPath label: "Path to Z-Wave device on host" schema: type: path required: true default: "/dev/ttyUSB0" - - variable: mountPath - label: "Path to mount device inside the container" - schema: - type: path - required: true - default: "/dev/ttyUSB0" + # Zigbee device ----------------- - variable: zigbee label: "USB Zigbee Device" @@ -225,12 +244,6 @@ questions: default: false show_subquestions_if: true subquestions: - - variable: hostPathEnabled - label: "enabled" - schema: - type: boolean - default: true - hidden: true - variable: setPermissions label: "Automatic Permissions" description: "Automatically set permissions on install" @@ -238,18 +251,40 @@ questions: type: boolean default: false hidden: true + - variable: name + label: "Mountpoint Name" + schema: + type: string + default: "ZWave" + required: true + editable: true + - variable: emptyDir + label: "emptyDir" + schema: + type: boolean + default: false + hidden: true + editable: false + - variable: mountPath + label: "Path to mount device inside the container" + description: "Preferably the same as the path to the device path on the host" + schema: + type: path + required: true + default: "/dev/ttyUSB0" + editable: true + - variable: hostPathEnabled + label: "host Path Enabled" + schema: + type: boolean + default: true + hidden: true - variable: hostPath label: "Path to Zigbee device on host" schema: type: path required: true - default: "/dev/ttyUSB1" - - variable: mountPath - label: "Path to mount device inside the container" - schema: - type: path - required: true - default: "/dev/ttyUSB1" + default: "/dev/ttyUSB0" # Enable privileged - variable: securityContext group: "Storage and Devices" diff --git a/charts/home-assistant/2.0.0/templates/servicemonitor.yaml b/charts/home-assistant/2.0.0/templates/servicemonitor.yaml deleted file mode 100644 index e58ceac8186..00000000000 --- a/charts/home-assistant/2.0.0/templates/servicemonitor.yaml +++ /dev/null @@ -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 }} diff --git a/charts/home-assistant/2.0.0/test_values.yaml b/charts/home-assistant/2.0.0/test_values.yaml index e792a95bf93..263e46667d3 100644 --- a/charts/home-assistant/2.0.0/test_values.yaml +++ b/charts/home-assistant/2.0.0/test_values.yaml @@ -10,6 +10,9 @@ strategy: startAsRoot: true +# 5=tty 20=dailout 24=cdrom +supplementalGroups: 5,20,24 + env: {} # TZ: diff --git a/charts/jackett/2.0.0/Chart.yaml b/charts/jackett/2.0.0/Chart.yaml index b8f8589f1d8..30d3d61673b 100644 --- a/charts/jackett/2.0.0/Chart.yaml +++ b/charts/jackett/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: jackett -<<<<<<< HEAD:charts/jackett/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/Chart.yaml upstream_version: 7.0.1 appVersion: "auto" description: API Support for your favorite torrent trackers. @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/jackett/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/jackett/2.0.0/README.md b/charts/jackett/2.0.0/README.md index e6e7ab61da7..49d82b73aae 100644 --- a/charts/jackett/2.0.0/README.md +++ b/charts/jackett/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/jackett/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: version-v0.17.153](https://img.shields.io/badge/AppVersion-version--v0.17.153-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: version-v0.17.153](https://img.shields.io/badge/AppVersion-version--v0.17.153-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) API Support for your favorite torrent trackers. @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/jackett/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/jackett/2.0.0/charts/common-2.0.0.tgz b/charts/jackett/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/jackett/2.0.0/charts/common-2.0.0.tgz and b/charts/jackett/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/jackett/2.0.0/questions.yaml b/charts/jackett/2.0.0/questions.yaml index d038e251a4b..6f9624dcaf2 100644 --- a/charts/jackett/2.0.0/questions.yaml +++ b/charts/jackett/2.0.0/questions.yaml @@ -237,6 +237,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/jellyfin/2.0.0/Chart.yaml b/charts/jellyfin/2.0.0/Chart.yaml index 9ac06eec798..cea1d95729a 100644 --- a/charts/jellyfin/2.0.0/Chart.yaml +++ b/charts/jellyfin/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: jellyfin -<<<<<<< HEAD:charts/jellyfin/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/Chart.yaml upstream_version: 4.2.1 appVersion: "auto" description: Jellyfin is a Free Software Media System @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/jellyfin/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/jellyfin/2.0.0/README.md b/charts/jellyfin/2.0.0/README.md index 7573fe2bd2e..b2aa2a787c4 100644 --- a/charts/jellyfin/2.0.0/README.md +++ b/charts/jellyfin/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/jellyfin/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.6.4](https://img.shields.io/badge/AppVersion-10.6.4-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.6.4](https://img.shields.io/badge/AppVersion-10.6.4-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Jellyfin is a Free Software Media System @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/jellyfin/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/jellyfin/2.0.0/charts/common-2.0.0.tgz b/charts/jellyfin/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/jellyfin/2.0.0/charts/common-2.0.0.tgz and b/charts/jellyfin/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/jellyfin/2.0.0/ix_values.yaml b/charts/jellyfin/2.0.0/ix_values.yaml index 489e46e36a5..a449dc416ed 100644 --- a/charts/jellyfin/2.0.0/ix_values.yaml +++ b/charts/jellyfin/2.0.0/ix_values.yaml @@ -9,6 +9,9 @@ image: pullPolicy: IfNotPresent tag: 10.6.4 +# 44=video 107=render +supplementalGroups: 44,107 + ## # Most other defaults are set in questions.yaml # For other options please refer to the wiki, default_values.yaml or the common library chart diff --git a/charts/jellyfin/2.0.0/questions.yaml b/charts/jellyfin/2.0.0/questions.yaml index aa03f2381dd..6f7dba39a91 100644 --- a/charts/jellyfin/2.0.0/questions.yaml +++ b/charts/jellyfin/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -294,6 +295,7 @@ questions: default: "media" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/jellyfin/2.0.0/test_values.yaml b/charts/jellyfin/2.0.0/test_values.yaml index f4642687320..2f7011c8764 100644 --- a/charts/jellyfin/2.0.0/test_values.yaml +++ b/charts/jellyfin/2.0.0/test_values.yaml @@ -9,6 +9,9 @@ image: strategy: type: Recreate +# 44=video 107=render +supplementalGroups: 44,107 + services: main: port: diff --git a/charts/kms/2.0.0/Chart.yaml b/charts/kms/2.0.0/Chart.yaml index c10113e0296..0f8e957fe68 100644 --- a/charts/kms/2.0.0/Chart.yaml +++ b/charts/kms/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: kms -<<<<<<< HEAD:charts/kms/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/Chart.yaml # upstream_version: appVersion: "minimal" description: Private Windows Activation Server for development and testing @@ -21,11 +17,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/kms/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/kms/2.0.0/README.md b/charts/kms/2.0.0/README.md index d7981c2a56d..fb11001e160 100644 --- a/charts/kms/2.0.0/README.md +++ b/charts/kms/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/kms/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: minimal](https://img.shields.io/badge/AppVersion-minimal-informational?style=flat-square) Private Windows Activation Server for development and testing @@ -24,11 +20,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/kms/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -57,5 +49,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/kms/2.0.0/charts/common-2.0.0.tgz b/charts/kms/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/kms/2.0.0/charts/common-2.0.0.tgz and b/charts/kms/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/lazylibrarian/2.0.0/Chart.yaml b/charts/lazylibrarian/2.0.0/Chart.yaml index 22cf5e85f37..5e318bd34e8 100644 --- a/charts/lazylibrarian/2.0.0/Chart.yaml +++ b/charts/lazylibrarian/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: lazylibrarian -<<<<<<< HEAD:charts/lazylibrarian/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/Chart.yaml upstream_version: 2.1.0 appVersion: "latest" description: Get all your books, like series with Sonarr... @@ -24,11 +20,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/lazylibrarian/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/lazylibrarian/2.0.0/README.md b/charts/lazylibrarian/2.0.0/README.md index 1132ecfad03..78f7fb8c580 100644 --- a/charts/lazylibrarian/2.0.0/README.md +++ b/charts/lazylibrarian/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/lazylibrarian/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.7.2](https://img.shields.io/badge/AppVersion-1.7.2-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.7.2](https://img.shields.io/badge/AppVersion-1.7.2-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) Get all your books, like series with Sonarr... @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/lazylibrarian/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/lazylibrarian/2.0.0/charts/common-2.0.0.tgz b/charts/lazylibrarian/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/lazylibrarian/2.0.0/charts/common-2.0.0.tgz and b/charts/lazylibrarian/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/lazylibrarian/2.0.0/questions.yaml b/charts/lazylibrarian/2.0.0/questions.yaml index 2c22c77ae49..41d48c4a5ff 100644 --- a/charts/lazylibrarian/2.0.0/questions.yaml +++ b/charts/lazylibrarian/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -294,6 +295,7 @@ questions: default: "media" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/lidarr/2.0.0/Chart.yaml b/charts/lidarr/2.0.0/Chart.yaml index 1876eb62e7a..9aad5745990 100644 --- a/charts/lidarr/2.0.0/Chart.yaml +++ b/charts/lidarr/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: lidarr -<<<<<<< HEAD:charts/lidarr/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/Chart.yaml upstream_version: 7.1.0 appVersion: "auto" description: Looks and smells like Sonarr but made for music @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/lidarr/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/lidarr/2.0.0/README.md b/charts/lidarr/2.0.0/README.md index 48ff242dab3..12e538d26be 100644 --- a/charts/lidarr/2.0.0/README.md +++ b/charts/lidarr/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/lidarr/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.0.1886](https://img.shields.io/badge/AppVersion-0.8.0.1886-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.0.1886](https://img.shields.io/badge/AppVersion-0.8.0.1886-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Looks and smells like Sonarr but made for music @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/lidarr/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/lidarr/2.0.0/charts/common-2.0.0.tgz b/charts/lidarr/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/lidarr/2.0.0/charts/common-2.0.0.tgz and b/charts/lidarr/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/lidarr/2.0.0/ix_values.yaml b/charts/lidarr/2.0.0/ix_values.yaml index f9d62470f46..2bc01da5009 100644 --- a/charts/lidarr/2.0.0/ix_values.yaml +++ b/charts/lidarr/2.0.0/ix_values.yaml @@ -7,7 +7,7 @@ image: repository: ghcr.io/truecharts/lidarr pullPolicy: IfNotPresent - tag: version-0.8.0.2082 + tag: v0.8.0.2082 probes: liveness: diff --git a/charts/lidarr/2.0.0/questions.yaml b/charts/lidarr/2.0.0/questions.yaml index b063bbfecb5..f46a6af856a 100644 --- a/charts/lidarr/2.0.0/questions.yaml +++ b/charts/lidarr/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -294,6 +295,7 @@ questions: default: "media" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/lychee/2.0.0/Chart.yaml b/charts/lychee/2.0.0/Chart.yaml index 12ae769eadd..84ea494c663 100644 --- a/charts/lychee/2.0.0/Chart.yaml +++ b/charts/lychee/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: lychee -<<<<<<< HEAD:charts/lychee/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/Chart.yaml upstream_version: 2.3.1 appVersion: "auto" description: Lychee is a free photo-management tool, which runs on your server or web-space @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/lychee/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/lychee/2.0.0/README.md b/charts/lychee/2.0.0/README.md index b325a155b80..68fa573417a 100644 --- a/charts/lychee/2.0.0/README.md +++ b/charts/lychee/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/lychee/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.0.8](https://img.shields.io/badge/AppVersion-4.0.8-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.0.8](https://img.shields.io/badge/AppVersion-4.0.8-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Lychee is a free photo-management tool, which runs on your server or web-space @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/lychee/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/lychee/2.0.0/charts/common-2.0.0.tgz b/charts/lychee/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/lychee/2.0.0/charts/common-2.0.0.tgz and b/charts/lychee/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/lychee/2.0.0/questions.yaml b/charts/lychee/2.0.0/questions.yaml index 1263684176c..2ae7593b4cf 100644 --- a/charts/lychee/2.0.0/questions.yaml +++ b/charts/lychee/2.0.0/questions.yaml @@ -237,6 +237,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/navidrome/2.0.0/Chart.yaml b/charts/navidrome/2.0.0/Chart.yaml index 1d03d928e2b..80dabee782a 100644 --- a/charts/navidrome/2.0.0/Chart.yaml +++ b/charts/navidrome/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: navidrome -<<<<<<< HEAD:charts/navidrome/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/Chart.yaml upstream_version: 2.3.1 appVersion: "auto" description: Navidrome is an open source web-based music collection server and streamer @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/navidrome/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/navidrome/2.0.0/README.md b/charts/navidrome/2.0.0/README.md index 8328044c502..0010f4bf8a2 100644 --- a/charts/navidrome/2.0.0/README.md +++ b/charts/navidrome/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/navidrome/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.39.0](https://img.shields.io/badge/AppVersion-0.39.0-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.39.0](https://img.shields.io/badge/AppVersion-0.39.0-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Navidrome is an open source web-based music collection server and streamer @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/navidrome/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/navidrome/2.0.0/charts/common-2.0.0.tgz b/charts/navidrome/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/navidrome/2.0.0/charts/common-2.0.0.tgz and b/charts/navidrome/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/navidrome/2.0.0/questions.yaml b/charts/navidrome/2.0.0/questions.yaml index 180b6421e98..d55ed705431 100644 --- a/charts/navidrome/2.0.0/questions.yaml +++ b/charts/navidrome/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/node-red/2.0.0/Chart.yaml b/charts/node-red/2.0.0/Chart.yaml index a126edc7a91..2bd9ebf88f0 100644 --- a/charts/node-red/2.0.0/Chart.yaml +++ b/charts/node-red/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: node-red -<<<<<<< HEAD:charts/node-red/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/Chart.yaml upstream_version: 5.2.1 appVersion: "auto" description: Node-RED is low-code programming for event-driven applications @@ -23,11 +19,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/node-red/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/node-red/2.0.0/README.md b/charts/node-red/2.0.0/README.md index c65f82d6efb..3b9cb0e4c33 100644 --- a/charts/node-red/2.0.0/README.md +++ b/charts/node-red/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/node-red/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.2.5](https://img.shields.io/badge/AppVersion-1.2.5-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.2.5](https://img.shields.io/badge/AppVersion-1.2.5-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Node-RED is low-code programming for event-driven applications @@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/node-red/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/node-red/2.0.0/charts/common-2.0.0.tgz b/charts/node-red/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/node-red/2.0.0/charts/common-2.0.0.tgz and b/charts/node-red/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/node-red/2.0.0/questions.yaml b/charts/node-red/2.0.0/questions.yaml index ec7342ac533..5cdf826e737 100644 --- a/charts/node-red/2.0.0/questions.yaml +++ b/charts/node-red/2.0.0/questions.yaml @@ -235,9 +235,10 @@ questions: label: "Dataset Name" schema: type: string - default: "data" + default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/nzbget/2.0.0/Chart.yaml b/charts/nzbget/2.0.0/Chart.yaml index 784d1440043..37fc39cd8bf 100644 --- a/charts/nzbget/2.0.0/Chart.yaml +++ b/charts/nzbget/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: nzbget -<<<<<<< HEAD:charts/nzbget/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/Chart.yaml upstream_version: 7.3.1 appVersion: "auto" description: NZBGet is a Usenet downloader client @@ -24,11 +20,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/nzbget/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/nzbget/2.0.0/README.md b/charts/nzbget/2.0.0/README.md index e1b862be18e..60d3c4d981c 100644 --- a/charts/nzbget/2.0.0/README.md +++ b/charts/nzbget/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/nzbget/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v21.0](https://img.shields.io/badge/AppVersion-v21.0-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v21.0](https://img.shields.io/badge/AppVersion-v21.0-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) NZBGet is a Usenet downloader client @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/nzbget/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/nzbget/2.0.0/charts/common-2.0.0.tgz b/charts/nzbget/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/nzbget/2.0.0/charts/common-2.0.0.tgz and b/charts/nzbget/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/nzbget/2.0.0/questions.yaml b/charts/nzbget/2.0.0/questions.yaml index cf93270528a..daa0f28acd7 100644 --- a/charts/nzbget/2.0.0/questions.yaml +++ b/charts/nzbget/2.0.0/questions.yaml @@ -237,6 +237,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/nzbhydra/2.0.0/Chart.yaml b/charts/nzbhydra/2.0.0/Chart.yaml index 46c8b47e82d..89143a6fa6c 100644 --- a/charts/nzbhydra/2.0.0/Chart.yaml +++ b/charts/nzbhydra/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: nzbhydra -<<<<<<< HEAD:charts/nzbhydra/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/Chart.yaml upstream_version: 5.3.1 appVersion: "auto" description: Usenet meta search @@ -24,11 +20,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/nzbhydra/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/nzbhydra/2.0.0/README.md b/charts/nzbhydra/2.0.0/README.md index 7b90d6628dd..33cc5c436ee 100644 --- a/charts/nzbhydra/2.0.0/README.md +++ b/charts/nzbhydra/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/nzbhydra/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.8.1](https://img.shields.io/badge/AppVersion-v3.8.1-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.8.1](https://img.shields.io/badge/AppVersion-v3.8.1-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Usenet meta search @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/nzbhydra/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/nzbhydra/2.0.0/charts/common-2.0.0.tgz b/charts/nzbhydra/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/nzbhydra/2.0.0/charts/common-2.0.0.tgz and b/charts/nzbhydra/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/nzbhydra/2.0.0/questions.yaml b/charts/nzbhydra/2.0.0/questions.yaml index b83930a0774..22f055628b2 100644 --- a/charts/nzbhydra/2.0.0/questions.yaml +++ b/charts/nzbhydra/2.0.0/questions.yaml @@ -237,6 +237,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/ombi/2.0.0/Chart.yaml b/charts/ombi/2.0.0/Chart.yaml index 510bdcb418b..191d95699f8 100644 --- a/charts/ombi/2.0.0/Chart.yaml +++ b/charts/ombi/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: ombi -<<<<<<< HEAD:charts/ombi/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/ombi/2.0.0/Chart.yaml upstream_version: 8.0.1 appVersion: "auto" description: Want a Movie or TV Show on Plex or Emby? Use Ombi! @@ -28,11 +24,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/ombi/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/ombi/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/ombi/2.0.0/README.md b/charts/ombi/2.0.0/README.md index 3a9e8c27cd8..a7c38b6b0c5 100644 --- a/charts/ombi/2.0.0/README.md +++ b/charts/ombi/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/ombi/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.0.681](https://img.shields.io/badge/AppVersion-4.0.681-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.681](https://img.shields.io/badge/AppVersion-4.0.681-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/ombi/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Want a Movie or TV Show on Plex or Emby? Use Ombi! @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/ombi/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/ombi/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/ombi/2.0.0/charts/common-2.0.0.tgz b/charts/ombi/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/ombi/2.0.0/charts/common-2.0.0.tgz and b/charts/ombi/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/ombi/2.0.0/ix_values.yaml b/charts/ombi/2.0.0/ix_values.yaml index 6abe44526f6..6aa17fdfdfd 100644 --- a/charts/ombi/2.0.0/ix_values.yaml +++ b/charts/ombi/2.0.0/ix_values.yaml @@ -5,11 +5,9 @@ ## image: - repository: linuxserver/ombi + repository: ghcr.io/truecharts/ombi pullPolicy: IfNotPresent - tag: version-v4.0.681 - -startAsRoot: true + tag: v4.0.1222 ## # Most other defaults are set in questions.yaml diff --git a/charts/ombi/2.0.0/questions.yaml b/charts/ombi/2.0.0/questions.yaml index 1a54394385d..0427f5c2edd 100644 --- a/charts/ombi/2.0.0/questions.yaml +++ b/charts/ombi/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/ombi/2.0.0/test_values.yaml b/charts/ombi/2.0.0/test_values.yaml index 95b0afb12ba..601e7b6102f 100644 --- a/charts/ombi/2.0.0/test_values.yaml +++ b/charts/ombi/2.0.0/test_values.yaml @@ -2,15 +2,13 @@ # Default values for Ombi. image: - repository: linuxserver/ombi + repository: ghcr.io/truecharts/ombi pullPolicy: IfNotPresent - tag: version-v4.0.681 + tag: v4.0.1222 strategy: type: Recreate -startAsRoot: true - services: main: port: diff --git a/charts/organizr/2.0.0/Chart.yaml b/charts/organizr/2.0.0/Chart.yaml index 1600af0d610..1b9a496ffec 100644 --- a/charts/organizr/2.0.0/Chart.yaml +++ b/charts/organizr/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: organizr -<<<<<<< HEAD:charts/organizr/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/organizr/2.0.0/Chart.yaml upstream_version: 3.2.1 appVersion: "latest" description: HTPC/Homelab Services Organizer @@ -23,11 +19,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/organizr/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/organizr/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/organizr/2.0.0/README.md b/charts/organizr/2.0.0/README.md index 3e4c65ce946..f1126539a3d 100644 --- a/charts/organizr/2.0.0/README.md +++ b/charts/organizr/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/organizr/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/organizr/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) HTPC/Homelab Services Organizer @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/organizr/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/organizr/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/organizr/2.0.0/charts/common-2.0.0.tgz b/charts/organizr/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/organizr/2.0.0/charts/common-2.0.0.tgz and b/charts/organizr/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/organizr/2.0.0/questions.yaml b/charts/organizr/2.0.0/questions.yaml index c23220832fe..23222a73697 100644 --- a/charts/organizr/2.0.0/questions.yaml +++ b/charts/organizr/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/qbittorrent/2.0.0/Chart.yaml b/charts/qbittorrent/2.0.0/Chart.yaml index 4ace0829690..22edd1aca2e 100644 --- a/charts/qbittorrent/2.0.0/Chart.yaml +++ b/charts/qbittorrent/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: qbittorrent -<<<<<<< HEAD:charts/qbittorrent/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/qbittorrent/2.0.0/Chart.yaml upstream_version: 7.2.1 appVersion: "auto" description: qBittorrent is a cross-platform free and open-source BitTorrent client @@ -23,11 +19,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/qbittorrent/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/qbittorrent/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/qbittorrent/2.0.0/README.md b/charts/qbittorrent/2.0.0/README.md index 4706f869e7f..51eb2b77eea 100644 --- a/charts/qbittorrent/2.0.0/README.md +++ b/charts/qbittorrent/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/qbittorrent/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.3.0](https://img.shields.io/badge/AppVersion-4.3.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: 4.3.0](https://img.shields.io/badge/AppVersion-4.3.0-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/qbittorrent/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) qBittorrent is a cross-platform free and open-source BitTorrent client @@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/qbittorrent/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/qbittorrent/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/qbittorrent/2.0.0/charts/common-2.0.0.tgz b/charts/qbittorrent/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/qbittorrent/2.0.0/charts/common-2.0.0.tgz and b/charts/qbittorrent/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/qbittorrent/2.0.0/questions.yaml b/charts/qbittorrent/2.0.0/questions.yaml index 626c732d5f3..50373e31801 100644 --- a/charts/qbittorrent/2.0.0/questions.yaml +++ b/charts/qbittorrent/2.0.0/questions.yaml @@ -363,6 +363,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/radarr/2.0.0/Chart.yaml b/charts/radarr/2.0.0/Chart.yaml index def8a74b9e8..9b4c239864d 100644 --- a/charts/radarr/2.0.0/Chart.yaml +++ b/charts/radarr/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: radarr -<<<<<<< HEAD:charts/radarr/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/radarr/2.0.0/Chart.yaml upstream_version: 9.1.0 appVersion: "auto" description: A fork of Sonarr to work with movies à la Couchpotato @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/radarr/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/radarr/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/radarr/2.0.0/README.md b/charts/radarr/2.0.0/README.md index 84616fad29e..fdb1c55b5dd 100644 --- a/charts/radarr/2.0.0/README.md +++ b/charts/radarr/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/radarr/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: version-3.0.0.3989](https://img.shields.io/badge/AppVersion-version--3.0.0.3989-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-3.0.0.3989](https://img.shields.io/badge/AppVersion-version--3.0.0.3989-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/radarr/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) A fork of Sonarr to work with movies à la Couchpotato @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/radarr/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/radarr/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/radarr/2.0.0/charts/common-2.0.0.tgz b/charts/radarr/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/radarr/2.0.0/charts/common-2.0.0.tgz and b/charts/radarr/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/radarr/2.0.0/questions.yaml b/charts/radarr/2.0.0/questions.yaml index cb94e937129..cbab3090f8b 100644 --- a/charts/radarr/2.0.0/questions.yaml +++ b/charts/radarr/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -294,6 +295,7 @@ questions: default: "media" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/readarr/2.0.0/Chart.yaml b/charts/readarr/2.0.0/Chart.yaml index 02e091de046..b4c53699df2 100644 --- a/charts/readarr/2.0.0/Chart.yaml +++ b/charts/readarr/2.0.0/Chart.yaml @@ -1,13 +1,9 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: readarr -<<<<<<< HEAD:charts/readarr/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/readarr/2.0.0/Chart.yaml upstream_version: 2.1.0 -appVersion: "nightly" +appVersion: "auto" description: A fork of Radarr to work with Books & AudioBooks type: application deprecated: false @@ -27,11 +23,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/readarr/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/readarr/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/readarr/2.0.0/README.md b/charts/readarr/2.0.0/README.md index 835e437f9ad..5408566cfcc 100644 --- a/charts/readarr/2.0.0/README.md +++ b/charts/readarr/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/readarr/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) -======= -![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) ->>>>>>> [Common] Refactor Services (#212):charts/readarr/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: nightly](https://img.shields.io/badge/AppVersion-nightly-informational?style=flat-square) A fork of Radarr to work with Books & AudioBooks @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/readarr/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/readarr/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/readarr/2.0.0/charts/common-2.0.0.tgz b/charts/readarr/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/readarr/2.0.0/charts/common-2.0.0.tgz and b/charts/readarr/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/readarr/2.0.0/ix_values.yaml b/charts/readarr/2.0.0/ix_values.yaml index 263d4c7a33a..86d56b218b2 100644 --- a/charts/readarr/2.0.0/ix_values.yaml +++ b/charts/readarr/2.0.0/ix_values.yaml @@ -5,11 +5,9 @@ ## image: - repository: hotio/readarr + repository: ghcr.io/truecharts/readarr pullPolicy: IfNotPresent - tag: nightly - -startAsRoot: true + tag: v0.1.0.535 probes: liveness: diff --git a/charts/readarr/2.0.0/questions.yaml b/charts/readarr/2.0.0/questions.yaml index 98339d128e0..5ebf052e468 100644 --- a/charts/readarr/2.0.0/questions.yaml +++ b/charts/readarr/2.0.0/questions.yaml @@ -237,6 +237,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -293,6 +294,7 @@ questions: default: "media" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/readarr/2.0.0/test_values.yaml b/charts/readarr/2.0.0/test_values.yaml index ef3e02563d4..7563944f92c 100644 --- a/charts/readarr/2.0.0/test_values.yaml +++ b/charts/readarr/2.0.0/test_values.yaml @@ -1,15 +1,13 @@ # Default values for Radarr. image: - repository: hotio/readarr + repository: ghcr.io/truecharts/readarr pullPolicy: IfNotPresent - tag: nightly + tag: v0.1.0.535 strategy: type: Recreate -startAsRoot: true - services: main: port: diff --git a/charts/sabnzbd/2.0.0/Chart.yaml b/charts/sabnzbd/2.0.0/Chart.yaml index f7e4886662b..17bbee39c15 100644 --- a/charts/sabnzbd/2.0.0/Chart.yaml +++ b/charts/sabnzbd/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: sabnzbd -<<<<<<< HEAD:charts/sabnzbd/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/sabnzbd/2.0.0/Chart.yaml upstream_version: 5.0.1 appVersion: "auto" description: Free and easy binary newsreader @@ -24,11 +20,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/sabnzbd/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/sabnzbd/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/sabnzbd/2.0.0/README.md b/charts/sabnzbd/2.0.0/README.md index fa2d52e4e52..8d532d48eb4 100644 --- a/charts/sabnzbd/2.0.0/README.md +++ b/charts/sabnzbd/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/sabnzbd/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.1.0](https://img.shields.io/badge/AppVersion-3.1.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: 3.1.0](https://img.shields.io/badge/AppVersion-3.1.0-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/sabnzbd/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Free and easy binary newsreader @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/sabnzbd/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/sabnzbd/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/sabnzbd/2.0.0/charts/common-2.0.0.tgz b/charts/sabnzbd/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/sabnzbd/2.0.0/charts/common-2.0.0.tgz and b/charts/sabnzbd/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/sabnzbd/2.0.0/questions.yaml b/charts/sabnzbd/2.0.0/questions.yaml index 963f2335630..515692973eb 100644 --- a/charts/sabnzbd/2.0.0/questions.yaml +++ b/charts/sabnzbd/2.0.0/questions.yaml @@ -238,6 +238,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/sonarr/2.0.0/Chart.yaml b/charts/sonarr/2.0.0/Chart.yaml index 8a369eb78fd..eedfc9cc04e 100644 --- a/charts/sonarr/2.0.0/Chart.yaml +++ b/charts/sonarr/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: sonarr -<<<<<<< HEAD:charts/sonarr/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/sonarr/2.0.0/Chart.yaml upstream_version: 9.1.0 appVersion: "auto" description: Smart PVR for newsgroup and bittorrent users @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/sonarr/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/sonarr/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/sonarr/2.0.0/README.md b/charts/sonarr/2.0.0/README.md index 6701f18eb89..28531b2d1f8 100644 --- a/charts/sonarr/2.0.0/README.md +++ b/charts/sonarr/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/sonarr/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: version-3.0.4.993](https://img.shields.io/badge/AppVersion-version--3.0.4.993-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-3.0.4.993](https://img.shields.io/badge/AppVersion-version--3.0.4.993-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/sonarr/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Smart PVR for newsgroup and bittorrent users @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/sonarr/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/sonarr/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/sonarr/2.0.0/charts/common-2.0.0.tgz b/charts/sonarr/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/sonarr/2.0.0/charts/common-2.0.0.tgz and b/charts/sonarr/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/sonarr/2.0.0/ix_values.yaml b/charts/sonarr/2.0.0/ix_values.yaml index 178c78124ca..46f8a600248 100644 --- a/charts/sonarr/2.0.0/ix_values.yaml +++ b/charts/sonarr/2.0.0/ix_values.yaml @@ -10,7 +10,7 @@ image: tag: v3.0.5.1143 probes: - liveness: + liveness: enabled: true ## Set this to true if you wish to specify your own livenessProbe custom: true diff --git a/charts/sonarr/2.0.0/questions.yaml b/charts/sonarr/2.0.0/questions.yaml index 5fe786cb54c..482eed982e9 100644 --- a/charts/sonarr/2.0.0/questions.yaml +++ b/charts/sonarr/2.0.0/questions.yaml @@ -239,6 +239,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -295,6 +296,7 @@ questions: default: "media" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/tautulli/2.0.0/Chart.yaml b/charts/tautulli/2.0.0/Chart.yaml index 47792d722b2..4e92d102376 100644 --- a/charts/tautulli/2.0.0/Chart.yaml +++ b/charts/tautulli/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: tautulli -<<<<<<< HEAD:charts/tautulli/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/tautulli/2.0.0/Chart.yaml upstream_version: 7.0.1 appVersion: "auto" description: A Python based monitoring and tracking tool for Plex Media Server @@ -24,11 +20,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/tautulli/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/tautulli/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/tautulli/2.0.0/README.md b/charts/tautulli/2.0.0/README.md index d64bf2a143b..1ff584d9425 100644 --- a/charts/tautulli/2.0.0/README.md +++ b/charts/tautulli/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/tautulli/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.6.6](https://img.shields.io/badge/AppVersion-v2.6.6-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.6.6](https://img.shields.io/badge/AppVersion-v2.6.6-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/tautulli/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) A Python based monitoring and tracking tool for Plex Media Server @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/tautulli/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/tautulli/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/tautulli/2.0.0/charts/common-2.0.0.tgz b/charts/tautulli/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/tautulli/2.0.0/charts/common-2.0.0.tgz and b/charts/tautulli/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/tautulli/2.0.0/questions.yaml b/charts/tautulli/2.0.0/questions.yaml index c17e0dc5844..63b45bb3c96 100644 --- a/charts/tautulli/2.0.0/questions.yaml +++ b/charts/tautulli/2.0.0/questions.yaml @@ -239,6 +239,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/traefik/2.0.0/Chart.yaml b/charts/traefik/2.0.0/Chart.yaml index a7d0a26d258..d44529b086c 100644 --- a/charts/traefik/2.0.0/Chart.yaml +++ b/charts/traefik/2.0.0/Chart.yaml @@ -1,13 +1,9 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: traefik -<<<<<<< HEAD:charts/traefik/1.3.5/Chart.yaml -version: 1.3.5 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/traefik/2.0.0/Chart.yaml -upstream_version: 9.14.2 -appVersion: 2.4.2 +upstream_version: 9.15.2 +appVersion: "auto" description: A Traefik based Reverse Proxy and Certificate Manager type: application deprecated: false @@ -24,17 +20,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/traefik/1.3.5/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/traefik/2.0.0/Chart.yaml - - name: cert-manager - repository: "https://charts.jetstack.io" - version: v1.2.0 - - name: reflector - repository: "https://emberstack.github.io/helm-charts" - version: 5.4.17 # condition: # tags: # import-values: diff --git a/charts/traefik/2.0.0/README.md b/charts/traefik/2.0.0/README.md index b626c567a65..1f03eb189eb 100644 --- a/charts/traefik/2.0.0/README.md +++ b/charts/traefik/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/traefik/1.3.5/README.md -![Version: 1.3.5](https://img.shields.io/badge/Version-1.3.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.4.2](https://img.shields.io/badge/AppVersion-2.4.2-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: 2.4.2](https://img.shields.io/badge/AppVersion-2.4.2-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/traefik/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) A Traefik based Reverse Proxy and Certificate Manager @@ -26,13 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -| https://charts.jetstack.io | cert-manager | v1.2.0 | -<<<<<<< HEAD:charts/traefik/1.3.5/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/traefik/2.0.0/README.md -| https://emberstack.github.io/helm-charts | reflector | 5.4.17 | +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -61,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/traefik/2.0.0/charts/common-2.0.0.tgz b/charts/traefik/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/traefik/2.0.0/charts/common-2.0.0.tgz and b/charts/traefik/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/traefik/2.0.0/docs/externalservices.md b/charts/traefik/2.0.0/docs/externalservices.md index 136171fa1ce..1a2089d0089 100644 --- a/charts/traefik/2.0.0/docs/externalservices.md +++ b/charts/traefik/2.0.0/docs/externalservices.md @@ -6,6 +6,6 @@ Some users may want to use Traefik for things that are not part of a TrueNAS SCA ##### Configuration -External Services require both the IP Adress and Port of the service you want to forward. These will internally create a special 'service' that recieves traffic on the same ports (internally) and forwards it to the external service. +External Services require both the IP Address and Port of the service you want to forward. These will internally create a special 'service' that receives traffic on the same ports (internally) and forwards it to the external service. Additionally it creates an ingress which forwards traffic to the special forwarding service. diff --git a/charts/traefik/2.0.0/docs/used-ports.md b/charts/traefik/2.0.0/docs/used-ports.md index bd8473c4da5..75f1ccaaa0e 100644 --- a/charts/traefik/2.0.0/docs/used-ports.md +++ b/charts/traefik/2.0.0/docs/used-ports.md @@ -4,6 +4,7 @@ Traefik forwards traffic for a lot of applications and we don't want to require This means that by default Traefik will claim a lot of ports from the node. Please be aware: these ports can NOT be used by other applications as NodePorts. Under "Advanced" we offer options to disable exposing these ports, freeing them for other applications, or altering the port numbers. +Note that these default ports also clash with the defaults for the TrueNAS SCALE UI. To avoid losing access to the UI after Traefik starts up, go to System Settings -> General and edit the GUI settings to listen on a different port. ###### Used Port List diff --git a/charts/traefik/2.0.0/questions.yaml b/charts/traefik/2.0.0/questions.yaml index 337c3595710..0a4e470285b 100644 --- a/charts/traefik/2.0.0/questions.yaml +++ b/charts/traefik/2.0.0/questions.yaml @@ -119,9 +119,10 @@ questions: label: "Dataset Name" schema: type: string - default: "data" + default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" @@ -331,7 +332,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] default: 9000 - variable: protocol label: "Protocol" @@ -352,19 +353,19 @@ questions: type: int required: true hidden: true - default: 80 + default: 8081 - variable: expose label: "Expose to Outside" description: "Port to the outside of all(!) nodes" schema: type: boolean - default: false + default: true - variable: exposedPort label: "Outside Port" description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 80 - variable: protocol @@ -413,7 +414,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 443 - variable: protocol @@ -448,7 +449,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: false default: 32400 - variable: protocol @@ -483,7 +484,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 1688 - variable: protocol @@ -518,7 +519,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 53 - variable: protocol @@ -553,7 +554,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 53 - variable: protocol @@ -588,7 +589,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 3478 - variable: protocol @@ -623,7 +624,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 3478 - variable: protocol @@ -658,7 +659,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 51413 - variable: protocol @@ -693,7 +694,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 51413 - variable: protocol @@ -728,7 +729,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 1812 - variable: protocol @@ -763,7 +764,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 1813 - variable: protocol @@ -798,7 +799,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 636 - variable: protocol @@ -834,7 +835,7 @@ questions: description: "Port to the outside of all(!) nodes" schema: type: int - show_if: [["exposedPort", "=", true]] + show_if: [["expose", "=", true]] required: true default: 8080 - variable: protocol @@ -965,14 +966,14 @@ questions: default: "" - variable: warning - label: "This App binds to the same ports as TrueNAS SCALE UI: 80 and 443" + label: "This App binds to the same ports as the defaults for TrueNAS SCALE UI (80 and 443). This means you may not be able to access the TrueNAS SCALE UI after starting the App." description: "Please be sure to set the UI to a different port or adapter" group: "WARNING" schema: type: dict attrs: - variable: confirm-warning - description: "Check this to confirm you have made precautions against conflicts on port 80 and 443" + description: "Check this to confirm you have made precautions against conflicts on port 80 and 443, such as running the TrueNAS SCALE UI on a different port or adapter." label: "I understand above warning and its consequences" schema: type: boolean diff --git a/charts/traefik/2.0.0/templates/custom/delay_postinstall.yaml b/charts/traefik/2.0.0/templates/custom/delay_postinstall.yaml deleted file mode 100644 index 4fca82bc6fc..00000000000 --- a/charts/traefik/2.0.0/templates/custom/delay_postinstall.yaml +++ /dev/null @@ -1,28 +0,0 @@ -apiVersion: batch/v1 -kind: Job -metadata: - name: "{{ .Release.Name }}-wait" - labels: - app.kubernetes.io/managed-by: {{ .Release.Service | quote }} - app.kubernetes.io/instance: {{ .Release.Name | quote }} - app.kubernetes.io/version: {{ .Chart.AppVersion }} - helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" - annotations: - # hooks are defined here - "helm.sh/hook": post-install - "helm.sh/hook-weight": "-10" - "helm.sh/hook-delete-policy": hook-succeeded,hook-failed,before-hook-creation -spec: - template: - metadata: - name: "{{ .Release.Name }}" - labels: - app.kubernetes.io/managed-by: {{ .Release.Service | quote }} - app.kubernetes.io/instance: {{ .Release.Name | quote }} - helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" - spec: - restartPolicy: Never - containers: - - name: wait-30s - image: "alpine:3.3" - command: ["/bin/sleep","30"] diff --git a/charts/transmission/2.0.0/Chart.yaml b/charts/transmission/2.0.0/Chart.yaml index dca3ee6203b..f4e329702a7 100644 --- a/charts/transmission/2.0.0/Chart.yaml +++ b/charts/transmission/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: transmission -<<<<<<< HEAD:charts/transmission/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/transmission/2.0.0/Chart.yaml # upstream_version: appVersion: "auto" description: API Support for your favorite torrent trackers. @@ -24,11 +20,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/transmission/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/transmission/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/transmission/2.0.0/README.md b/charts/transmission/2.0.0/README.md index 36f3366bacb..e14545ace32 100644 --- a/charts/transmission/2.0.0/README.md +++ b/charts/transmission/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/transmission/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: version-v0.17.153](https://img.shields.io/badge/AppVersion-version--v0.17.153-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: version-v0.17.153](https://img.shields.io/badge/AppVersion-version--v0.17.153-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/transmission/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) API Support for your favorite torrent trackers. @@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/transmission/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/transmission/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/transmission/2.0.0/charts/common-2.0.0.tgz b/charts/transmission/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/transmission/2.0.0/charts/common-2.0.0.tgz and b/charts/transmission/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/transmission/2.0.0/questions.yaml b/charts/transmission/2.0.0/questions.yaml index 1da9f47f736..a5bcda96cf8 100644 --- a/charts/transmission/2.0.0/questions.yaml +++ b/charts/transmission/2.0.0/questions.yaml @@ -364,6 +364,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/truecommand/2.0.0/Chart.yaml b/charts/truecommand/2.0.0/Chart.yaml index 17a777a9f79..65e55ecd585 100644 --- a/charts/truecommand/2.0.0/Chart.yaml +++ b/charts/truecommand/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: truecommand -<<<<<<< HEAD:charts/truecommand/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/truecommand/2.0.0/Chart.yaml # upstream_version: 1.1.0 appVersion: "auto" description: Aggregated management of TrueNAS devices @@ -21,11 +17,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/truecommand/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/truecommand/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/truecommand/2.0.0/README.md b/charts/truecommand/2.0.0/README.md index a6f0db74834..921e42c5e69 100644 --- a/charts/truecommand/2.0.0/README.md +++ b/charts/truecommand/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/truecommand/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.2](https://img.shields.io/badge/AppVersion-1.3.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.3.2](https://img.shields.io/badge/AppVersion-1.3.2-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/truecommand/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Aggregated management of TrueNAS devices @@ -24,11 +20,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/truecommand/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/truecommand/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -57,5 +49,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/truecommand/2.0.0/charts/common-2.0.0.tgz b/charts/truecommand/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/truecommand/2.0.0/charts/common-2.0.0.tgz and b/charts/truecommand/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/truecommand/2.0.0/questions.yaml b/charts/truecommand/2.0.0/questions.yaml index a547082a413..a662d5958f9 100644 --- a/charts/truecommand/2.0.0/questions.yaml +++ b/charts/truecommand/2.0.0/questions.yaml @@ -239,6 +239,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/tvheadend/2.0.0/Chart.yaml b/charts/tvheadend/2.0.0/Chart.yaml index 5eae703dde4..a8b33611528 100644 --- a/charts/tvheadend/2.0.0/Chart.yaml +++ b/charts/tvheadend/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: tvheadend -<<<<<<< HEAD:charts/tvheadend/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/tvheadend/2.0.0/Chart.yaml upstream_version: 1.1.2 appVersion: "latest" description: TVheadend - a TV streaming server and digital video recorder @@ -25,11 +21,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/tvheadend/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/tvheadend/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/tvheadend/2.0.0/README.md b/charts/tvheadend/2.0.0/README.md index 22d1fd12bed..50d5dda5f09 100644 --- a/charts/tvheadend/2.0.0/README.md +++ b/charts/tvheadend/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/tvheadend/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) -======= -![Version: 1.6.1](https://img.shields.io/badge/Version-1.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/tvheadend/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) TVheadend - a TV streaming server and digital video recorder @@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/tvheadend/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/tvheadend/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/tvheadend/2.0.0/charts/common-2.0.0.tgz b/charts/tvheadend/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/tvheadend/2.0.0/charts/common-2.0.0.tgz and b/charts/tvheadend/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/tvheadend/2.0.0/questions.yaml b/charts/tvheadend/2.0.0/questions.yaml index 2ab8ee0cb21..1bd85818958 100644 --- a/charts/tvheadend/2.0.0/questions.yaml +++ b/charts/tvheadend/2.0.0/questions.yaml @@ -273,11 +273,13 @@ questions: hidden: true editable: false - variable: datasetName - label: "Name" + label: "Dataset Name" schema: type: string - default: "store" + default: "config" + required: true editable: false + hidden: true - variable: mountPath label: "Mount path inside the container" schema: @@ -329,11 +331,13 @@ questions: hidden: true editable: false - variable: datasetName - label: "Name" + label: "Dataset Name" schema: type: string - default: "store" + default: "config" + required: true editable: false + hidden: true - variable: mountPath label: "Mount path inside the container" schema: diff --git a/charts/unifi/2.0.0/Chart.yaml b/charts/unifi/2.0.0/Chart.yaml index 19c2d48f705..ea482df313c 100644 --- a/charts/unifi/2.0.0/Chart.yaml +++ b/charts/unifi/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: unifi -<<<<<<< HEAD:charts/unifi/1.3.4/Chart.yaml -version: 1.3.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/unifi/2.0.0/Chart.yaml upstream_version: 1.5.1 appVersion: "auto" description: Ubiquiti Network's Unifi Controller @@ -23,11 +19,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/unifi/1.3.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/unifi/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/unifi/2.0.0/README.md b/charts/unifi/2.0.0/README.md index 5763996408c..1a37211c1b2 100644 --- a/charts/unifi/2.0.0/README.md +++ b/charts/unifi/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/unifi/1.3.4/README.md -![Version: 1.3.4](https://img.shields.io/badge/Version-1.3.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.14.23](https://img.shields.io/badge/AppVersion-5.14.23-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: 5.14.23](https://img.shields.io/badge/AppVersion-5.14.23-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/unifi/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Ubiquiti Network's Unifi Controller @@ -25,11 +21,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/unifi/1.3.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/unifi/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -58,5 +50,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/unifi/2.0.0/charts/common-2.0.0.tgz b/charts/unifi/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/unifi/2.0.0/charts/common-2.0.0.tgz and b/charts/unifi/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/unifi/2.0.0/questions.yaml b/charts/unifi/2.0.0/questions.yaml index 6a72a7243d9..cb56f1c22da 100644 --- a/charts/unifi/2.0.0/questions.yaml +++ b/charts/unifi/2.0.0/questions.yaml @@ -363,6 +363,7 @@ questions: default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/charts/zwavejs2mqtt/2.0.0/Chart.yaml b/charts/zwavejs2mqtt/2.0.0/Chart.yaml index 5dabd5cadbd..705affffe39 100644 --- a/charts/zwavejs2mqtt/2.0.0/Chart.yaml +++ b/charts/zwavejs2mqtt/2.0.0/Chart.yaml @@ -1,11 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: zwavejs2mqtt -<<<<<<< HEAD:charts/zwavejs2mqtt/1.6.4/Chart.yaml -version: 1.6.4 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/zwavejs2mqtt/2.0.0/Chart.yaml upstream_version: 1.1.0 appVersion: "auto" description: Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue @@ -26,11 +22,7 @@ sources: dependencies: - name: common repository: https://charts.truecharts.org/ -<<<<<<< HEAD:charts/zwavejs2mqtt/1.6.4/Chart.yaml - version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212):charts/zwavejs2mqtt/2.0.0/Chart.yaml # condition: # tags: # import-values: diff --git a/charts/zwavejs2mqtt/2.0.0/README.md b/charts/zwavejs2mqtt/2.0.0/README.md index c485e988ddb..6bb0204ae60 100644 --- a/charts/zwavejs2mqtt/2.0.0/README.md +++ b/charts/zwavejs2mqtt/2.0.0/README.md @@ -1,10 +1,6 @@ # Introduction -<<<<<<< HEAD:charts/zwavejs2mqtt/1.6.4/README.md -![Version: 1.6.4](https://img.shields.io/badge/Version-1.6.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.1](https://img.shields.io/badge/AppVersion-1.1.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: 1.1.1](https://img.shields.io/badge/AppVersion-1.1.1-informational?style=flat-square) ->>>>>>> [Common] Refactor Services (#212):charts/zwavejs2mqtt/2.0.0/README.md +![Version: 2.0.0](https://img.shields.io/badge/Version-2.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue @@ -26,11 +22,7 @@ Kubernetes: `>=1.16.0-0` | Repository | Name | Version | |------------|------|---------| -<<<<<<< HEAD:charts/zwavejs2mqtt/1.6.4/README.md -| https://charts.truecharts.org/ | common | 1.6.7 | -======= -| https://charts.truecharts.org/ | common | 1.6.1 | ->>>>>>> [Common] Refactor Services (#212):charts/zwavejs2mqtt/2.0.0/README.md +| https://charts.truecharts.org/ | common | 2.0.0 | ## Installing the Chart @@ -59,5 +51,6 @@ The command removes all the Kubernetes components associated with the chart **in - Open a [issue](https://github.com/truecharts/charts/issues/new/choose) - Ask a [question](https://github.com/truecharts/charts/discussions) + ---------------------------------------------- Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/charts/zwavejs2mqtt/2.0.0/charts/common-2.0.0.tgz b/charts/zwavejs2mqtt/2.0.0/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/charts/zwavejs2mqtt/2.0.0/charts/common-2.0.0.tgz and b/charts/zwavejs2mqtt/2.0.0/charts/common-2.0.0.tgz differ diff --git a/charts/zwavejs2mqtt/2.0.0/ix_values.yaml b/charts/zwavejs2mqtt/2.0.0/ix_values.yaml index 31c97dd8c13..5cc67d97534 100644 --- a/charts/zwavejs2mqtt/2.0.0/ix_values.yaml +++ b/charts/zwavejs2mqtt/2.0.0/ix_values.yaml @@ -7,7 +7,10 @@ image: repository: zwavejs/zwavejs2mqtt pullPolicy: IfNotPresent - tag: 1.1.1 + tag: 2.3.0 + +# 5=tty 20=dailout 24=cdrom +supplementalGroups: 5,20,24 probes: liveness: diff --git a/charts/zwavejs2mqtt/2.0.0/questions.yaml b/charts/zwavejs2mqtt/2.0.0/questions.yaml index 5eb0905529c..1b551201bd9 100644 --- a/charts/zwavejs2mqtt/2.0.0/questions.yaml +++ b/charts/zwavejs2mqtt/2.0.0/questions.yaml @@ -273,11 +273,13 @@ questions: hidden: true editable: false - variable: datasetName - label: "Name" + label: "Dataset Name" schema: type: string - default: "store" + default: "config" + required: true editable: false + hidden: true - variable: mountPath label: "Mount path inside the container" schema: @@ -304,6 +306,14 @@ questions: schema: type: dict 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" @@ -311,18 +321,41 @@ questions: type: boolean default: false hidden: true + - variable: name + label: "Mountpoint Name" + schema: + type: string + default: "ZWave" + required: true + editable: true + - variable: emptyDir + label: "emptyDir" + schema: + type: boolean + default: false + hidden: true + editable: false + - variable: mountPath + label: "Path to mount device inside the container" + description: "Preferably the same as the path to the device path on the host" + schema: + type: path + required: true + default: "/dev/ttyUSB0" + editable: true + - variable: hostPathEnabled + label: "host Path Enabled" + schema: + type: boolean + default: true + hidden: true - variable: hostPath label: "Path to Z-Wave device on host" schema: type: path required: true default: "/dev/ttyUSB0" - - variable: mountPath - label: "Path to mount device inside the container" - schema: - type: path - required: true - default: "/dev/ttyUSB0" + # Enable privileged - variable: securityContext group: "Storage and Devices" diff --git a/charts/zwavejs2mqtt/2.0.0/test_values.yaml b/charts/zwavejs2mqtt/2.0.0/test_values.yaml index 94bdf9af4ab..6722f62f5bd 100644 --- a/charts/zwavejs2mqtt/2.0.0/test_values.yaml +++ b/charts/zwavejs2mqtt/2.0.0/test_values.yaml @@ -5,7 +5,7 @@ image: repository: zwavejs/zwavejs2mqtt pullPolicy: IfNotPresent - tag: 1.1.1 + tag: 2.3.0 strategy: type: Recreate diff --git a/docs/FAQ.md b/docs/FAQ.md deleted file mode 100644 index 059a0b27563..00000000000 --- a/docs/FAQ.md +++ /dev/null @@ -1,32 +0,0 @@ -# FAQ - -- Q: I tried to run TrueCharts on TrueNAS SCALE 20.12 and it doesn't work.
-A: TrueNAS SCALE 20.12 has never supported custom charts in any way, shape or form. Hence TrueCharts is 21.02+ only - -- Q: Please include app X
-A: Please file an issue about it, after checking the wiki to make sure it hasn't been discussed already: -https://github.com/truecharts/truecharts/wiki/k8s-at-home-to-SCALE-App-migration-list - -- Q: Isn't there more documentation for app x
-A: If it's not on our [wiki](https://wiki.truecharts.org), we do not. Currently during TrueNAS SCALE ALPHA/BETA we focus on the technical aspects. - -- Q: Function x doesn't seem to be working, should it be working?
-A: Maybe, please file an issue - -- Q: I'm missing a lot of configuration opions in the install GUI.
-A: We try to aim for a balance in the amount of options vs the simplicity of installation. Suggestions are always welcome - -- Q: The portal button isn't working.
-A: Portal buttons are current't not implemented very well and are considered "not supported" for the time being - -- Q: I selected letsencrypt but still get a traefik certificate.
-A: Cert Manager might take up to 10 minutes to fetch the right certificate and requires free access to 1.1.1.1:53. Until the right certificate is fetched, it will use the Traefik Default cert. - -- Q: Is my data guaranteed to be secure?
-A: ix_volumes (the auto generated storage) is considered relatively secure as long as you don't delete the App, but we can't give an absolute guarantee. data mounted using a hostPath, is as secure as the application that is using the data, our charts do not actively alter said dataset/folder. However: SCALE is still ALPHA, so breaking changes in the storage design are very likely. - -- Q: sabnzbd isn't starting.
-A: SabNZBD has a weird security implementation that requires you to add the hostname or IP adress to their config file. In the future we might automate this proces, but currently we do not. - -- Q: An app is asking for a password.
-A: We almost allways use the defaults from the upstream project, if we are forced to use a password and not add the option to change it in the install GUI. diff --git a/.github/docs/_static/custom.css b/docs/_static/custom.css similarity index 100% rename from .github/docs/_static/custom.css rename to docs/_static/custom.css diff --git a/.github/docs/about/Apach2-licence.md b/docs/about/Apach2-licence.md similarity index 100% rename from .github/docs/about/Apach2-licence.md rename to docs/about/Apach2-licence.md diff --git a/.github/docs/about/FAQ.md b/docs/about/FAQ.md similarity index 100% rename from .github/docs/about/FAQ.md rename to docs/about/FAQ.md diff --git a/.github/docs/about/License-headers.md b/docs/about/License-headers.md similarity index 100% rename from .github/docs/about/License-headers.md rename to docs/about/License-headers.md diff --git a/.github/docs/about/maintainers-wanted.md b/docs/about/maintainers-wanted.md similarity index 100% rename from .github/docs/about/maintainers-wanted.md rename to docs/about/maintainers-wanted.md diff --git a/docs/development/storage.md b/docs/development/storage.md index c92f3c5d8a0..3714fd53748 100644 --- a/docs/development/storage.md +++ b/docs/development/storage.md @@ -60,6 +60,7 @@ Preventing the user to disable them, ensures that users don't (by mistake) remov default: "config" required: true editable: false + hidden: true - variable: mountPath label: "Mount Path" description: "Path to mount inside the pod" diff --git a/docs/general/general-configuration.md b/docs/general/general-configuration.md index b12cb5cdb5c..b6012ccdb76 100644 --- a/docs/general/general-configuration.md +++ b/docs/general/general-configuration.md @@ -21,4 +21,4 @@ _Select the group of the user running your application. Defaults to 568 aka the - **UMASK** -_The mask here gets substracted from the default CHOWN setting of your App, it's an advanced setting and we advice not to change this unless you already know what UMASK does._Select +_The mask here gets substracted from the default CHOWN setting of your App, it's an advanced setting and we advice not to change this unless you already know what UMASK does_. diff --git a/docs/general/reverse-proxy.md b/docs/general/reverse-proxy.md index 4e38aa1ab53..afc040d629c 100644 --- a/docs/general/reverse-proxy.md +++ b/docs/general/reverse-proxy.md @@ -1,6 +1,6 @@ # Reverse Proxy -Within TrueCharts our aim is to make it as easy as possible to secure your Apps. To support this we Supply a Traefik "Reverse Proxy", which has been preconfigured to provide secure and fast connections. +Within TrueCharts our aim is to make it as easy as possible to secure your Apps. To support this we supply a seperate Traefik "Reverse Proxy" app, which has been preconfigured to provide secure and fast connections. To use Traefik as a Reverse Proxy, all you have to do is enable "Reverse Proxy" in the App of your choice and fill out a little form. @@ -16,7 +16,7 @@ We currently offer the following types of pre-configured reverse proxies: - UDP -Besides HTTP, all these options, require Traefik to be installed before you enable Reverse Proxy on your App. I many cases, the maintainer of your app has hidden specific settings, like the type of Reverse proxies available, to suit your App. +Besides HTTP, all these options, require Traefik to be installed before you enable Reverse Proxy on your App. In many cases, the maintainer of your app has hidden specific settings, like the type of Reverse proxies available, to suit your App. ### Adding Certificates diff --git a/.github/docs/index.md b/docs/index.md similarity index 100% rename from .github/docs/index.md rename to docs/index.md diff --git a/docs/legal/Apach2-licence.md b/docs/legal/Apach2-licence.md deleted file mode 100644 index 07585c9870c..00000000000 --- a/docs/legal/Apach2-licence.md +++ /dev/null @@ -1,202 +0,0 @@ -# Apache2.0 License - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2020 k8s@Home - - 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. diff --git a/docs/legal/License-headers.md b/docs/legal/License-headers.md deleted file mode 100644 index b6fc5032562..00000000000 --- a/docs/legal/License-headers.md +++ /dev/null @@ -1,46 +0,0 @@ -# License Header Format - -Within TrueCharts we sometimes use code thats has a different license from the rest of the project. -When there is not already a license header present, we use these standard license headers. - -##### TPL -``` -{{/* -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. -*/}} -``` - -##### YAML -``` -## -# 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. -## -``` diff --git a/docs/maintainers-wanted.md b/docs/maintainers-wanted.md deleted file mode 100644 index 89d971f76d2..00000000000 --- a/docs/maintainers-wanted.md +++ /dev/null @@ -1,28 +0,0 @@ -# Maintainers Wanted - -While a lot of containers are based on the common chart, we at TrueCharts still prefer to have at least one dedicated actual maintainer for every chart. Preferably someone who actually uses said App. - -#### Are you the one we are looking for? -If you have experience working on SCALE Apps, TrueCharts and/or Helm Charts and are interested in maintaing one of the Apps below please contact us by [email](mailto://info@truecharts.org) - -_Please note: We always prefer maintainers that have worked on one of our Apps before and, if thats not the case, people with verifyable experience with SCALE Apps and/or Helm Charts_ - -### Current Apps without maintainers - -- Calibre-web -- deluge -- freshrss -- gaps -- grocy -- heimdall -- lychee -- navidrome -- node-red -- nzb-get -- nzbhydra -- organizr -- qbittorrent -- readarr -- sabnzbd -- truecommand -- tvheadend diff --git a/library/common-test/charts/common-2.0.0.tgz b/library/common-test/charts/common-2.0.0.tgz index 84ade1a3ae7..9b66ccde1d2 100644 Binary files a/library/common-test/charts/common-2.0.0.tgz and b/library/common-test/charts/common-2.0.0.tgz differ diff --git a/library/common/Chart.yaml b/library/common/Chart.yaml index bde0d8198b8..941797fac80 100644 --- a/library/common/Chart.yaml +++ b/library/common/Chart.yaml @@ -1,12 +1,8 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: common -<<<<<<< HEAD -version: 1.6.7 -======= version: 2.0.0 ->>>>>>> [Common] Refactor Services (#212) -# upstream_version: 3.0.1 +# upstream_version: # appVersion: description: Function library for TrueCharts type: library diff --git a/library/common/templates/lib/controller/_pod.tpl b/library/common/templates/lib/controller/_pod.tpl index bcc518b7ca7..5645c1b0951 100644 --- a/library/common/templates/lib/controller/_pod.tpl +++ b/library/common/templates/lib/controller/_pod.tpl @@ -30,6 +30,9 @@ securityContext: {{- if not .Values.startAsRoot }} runAsUser: {{ .Values.PUID }} runAsGroup: {{ .Values.PGID }} + fsGroup: {{ .Values.PGID }} + # 5=tty 20=dailout 24=cdrom 44=video 107=render + supplementalGroups: [{{- .Values.supplementalGroups }}] runAsNonRoot: true {{- end }} {{- with .Values.podSecurityContext }} diff --git a/library/common/templates/lib/storage/_appStorage.tpl b/library/common/templates/lib/storage/_appStorage.tpl index f9aebb328ee..b23369ce863 100644 --- a/library/common/templates/lib/storage/_appStorage.tpl +++ b/library/common/templates/lib/storage/_appStorage.tpl @@ -3,7 +3,7 @@ Define appVolumeMounts for container */}} {{- define "common.storage.configureAppVolumeMountsInContainer" -}} {{ range $name, $avm := . }} -{{- if (default true $avm.enabled) -}} +{{- if $avm.enabled -}} {{ if $avm.name }} {{ $name = $avm.name }} {{ end }} @@ -22,7 +22,7 @@ Define hostPath for appVolumes */}} {{- define "common.storage.configureAppVolumes" -}} {{- range $name, $av := $.volMounts -}} -{{ if (default true $av.enabled) }} +{{ if $av.enabled }} {{ if $av.name }} {{ $name = $av.name }} {{ end }} diff --git a/library/common/templates/lib/storage/_mountPermissions.tpl b/library/common/templates/lib/storage/_mountPermissions.tpl index e65ba17d636..1a0d38a8983 100644 --- a/library/common/templates/lib/storage/_mountPermissions.tpl +++ b/library/common/templates/lib/storage/_mountPermissions.tpl @@ -3,12 +3,14 @@ This template serves as the blueprint for the mountPermissions job that is run before chart installation. */}} {{- define "common.storage.permissions" -}} -{{- if and .Values.appVolumeMounts .Values.fixMountPermissions }} -{{- range $name, $avm := .Values.appVolumeMounts -}} -{{- if and $avm.enabled $avm.setPermissions}} +{{- if .Values.fixMountPermissions }} + +{{- if .Values.appVolumeMounts }} +{{- range $name, $vm := .Values.appVolumeMounts -}} +{{- if and $vm.enabled $vm.setPermissions}} {{- print "---" | nindent 0 -}} -{{- $VMValues := $avm -}} +{{- $VMValues := $vm -}} {{- if not $VMValues.nameSuffix -}} {{- $_ := set $VMValues "nameSuffix" $name -}} {{ end -}} @@ -18,4 +20,23 @@ before chart installation. {{- end }} {{- end }} {{- end }} + + +{{- if .Values.additionalAppVolumeMounts }} +{{- range $index, $avm := .Values.additionalAppVolumeMounts -}} +{{- if and $avm.enabled $avm.setPermissions}} +{{- print "---" | nindent 0 -}} + +{{- $AVMValues := $avm -}} +{{- if not $AVMValues.nameSuffix -}} + {{- $_ := set $AVMValues "nameSuffix" $index -}} +{{ end -}} +{{- $_ := set $ "ObjectValues" (dict "appVolumeMounts" $AVMValues) -}} + +{{ include "common.storage.permissions.job" $ | nindent 0 }} +{{- end }} +{{- end }} +{{- end }} + +{{- end }} {{- end }}