diff --git a/.github/CODE_OF_CONDUCT b/.github/CODE_OF_CONDUCT index ea332bf3ff5..6185a5dc8bb 100644 --- a/.github/CODE_OF_CONDUCT +++ b/.github/CODE_OF_CONDUCT @@ -5,8 +5,8 @@ In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body -size, disability, ethnicity, sex characteristics, gender, level of experience, -education, socio-economic status, nationality, personal appearance, race, +size, disability, ethnicity, sex characteristics, gender, level of experience, +education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards diff --git a/.github/CONTRIBUTING b/.github/CONTRIBUTING index f95229b8369..a6af5331ac4 100644 --- a/.github/CONTRIBUTING +++ b/.github/CONTRIBUTING @@ -1,4 +1,4 @@ -# Contribution and Review Guidelines +# Contribution Guidelines This project welcomes any and all input, but we need to have a few quality guidelines. These guidelines will be examplained here, in this document. @@ -6,11 +6,11 @@ This project welcomes any and all input, but we need to have a few quality guide *** #### New to GIT -If you have never used git before, you can look up our general reference on our wiki. +If you have never used git before, you can look up our general reference on our wiki. #### Git and You -GIT is a fantastic system, but while using it we have a few guidelines to keep it fantastic for everyone. +GIT is a fantastic system, but while using it we have a few guidelines to keep it fantastic for everyone. * Submit complete PR's. * Add [DNM] if you do not want your PR merged yet. diff --git a/.github/README.md b/.github/README.md index 440d041dd69..05ff29c117a 100644 --- a/.github/README.md +++ b/.github/README.md @@ -29,7 +29,7 @@ A: Please file an issue about it, after checking the wiki to make sure it hasn't 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. +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 diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 6c3247088c5..ffd07fe73f6 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -13,4 +13,3 @@ If you find any security issue, please email the project maintainer. Currently the Project Maintainer is: [Ornias1993](https://github.com/Ornias1993) - diff --git a/.github/docs/development/setting-up.md b/.github/docs/development/setting-up.md new file mode 100644 index 00000000000..d910c4bcc5b --- /dev/null +++ b/.github/docs/development/setting-up.md @@ -0,0 +1,39 @@ +# Setting up your dev environment + +With TrueCharts we use some custom tools to make sure you have the least amount of work possible when working on the project. +However, this means you need some custom tools before you can start working on TrueCharts: + +- Git (git client optional) +- Python (including Pip, added to path on windows) +- Pre-Commit (prefered) + +## Windows + +### Terminal basics: +When we talk about "In a terminal" we mean doing the following: +- hit windows+r +- enter "cmd" + +### GIT + +- Download and install GIT (https://git-scm.com/download/win) +- Most default options would be fine + +In a terminal window or GUI client: +- Clone the repository in a specific directory of your choice (we will call this "Project-Root") + + +### Python +- Install Python3 with the installer (https://www.python.org/downloads/) +- Right click "Run as administrator" +- Check "Add to Path" +- Click the big install button + +### Pre-Commit +Run .tools/pre-commit-install.bat +(Advanced users: This is for beginner users and will also execute "git config --unset-all core.hooksPath") +OR +In a terminal window: +- Enter "pip install pre-commit" +- CD to Project-Root +- Enter "pre-commit install" diff --git a/.github/workflows/chart-testing.yml b/.github/workflows/chart-testing.yml index c4ae0ab026b..14218051617 100644 --- a/.github/workflows/chart-testing.yml +++ b/.github/workflows/chart-testing.yml @@ -43,7 +43,7 @@ jobs: run: ct lint --config .github/ct.yaml --charts 'library/common' - name: Create kind cluster uses: helm/kind-action@v1.1.0 - + common-unittest: runs-on: ubuntu-latest needs: common-lint @@ -72,7 +72,7 @@ jobs: bundle install - name: Run tests run: | - bundle exec m -r .test/charts + bundle exec m -r .tools/tests/charts chart-tests: @@ -100,4 +100,4 @@ jobs: sudo pip3 install -U catalog_validation/. - name: Validate changed charts - run: /bin/bash -c "PWD=${pwd}; sudo /usr/local/bin/charts_validate deploy --path $PWD" \ No newline at end of file + run: /bin/bash -c "PWD=${pwd}; sudo /usr/local/bin/charts_validate deploy --path $PWD" diff --git a/.github/workflows/charts-release.yaml b/.github/workflows/charts-release.yaml index 701869d1962..8fb95a30550 100644 --- a/.github/workflows/charts-release.yaml +++ b/.github/workflows/charts-release.yaml @@ -3,56 +3,26 @@ name: "Charts: Release" on: push: branches: - - master + - charts tags-ignore: - '**' paths: - 'charts/**' + - '!charts/**/*.md' - '!charts/**/README.md' + - '!charts/**/README.md.gotmpl' + - '!charts/**/app-readme.md' + - '!charts/**/app-readme.md.gotmpl' + - '!charts/**/docs/*' - 'library/**' + - '!library/**/*.md' - '!library/**/README.md' + - '!library/**/README.md.gotmpl' + - '!library/**/app-readme.md' + - '!library/**/app-readme.md.gotmpl' + - '!library/**/docs/*' jobs: - copy: - runs-on: ubuntu-latest - steps: - - name: Checkout-Master - uses: actions/checkout@v2 - with: - ref: 'master' - path: 'master' - - name: Checkout-Charts - uses: actions/checkout@v2 - with: - ref: 'charts' - path: 'charts' - - - name: Generate Helm Structure - run: | - cd master - rm -Rf ../charts/charts/* - for chart in charts/*; do - if [ -d "${chart}" ]; then - maxversion=$(ls -l ${chart} | grep ^d | awk '{print $9}' | tail -n 1) - chartname=$(basename ${chart}) - echo "Processing ${chart} version ${maxversion}" - mv ${chart}/${maxversion} ../charts/charts/${chartname} - rm ../charts/charts/${chartname}/Chart.lock || echo "chart.lock missing for ${chartname}, continuing..." - fi - done - mv library/* ../charts/charts/ - ls ../charts/charts/ - cd .. - - - name: Commit and push updated charts - run: | - cd charts - git config user.name "$GITHUB_ACTOR" - git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - git add --all - git commit -sm "Publish Chart updates" || exit 0 - git push - pre-release: needs: copy runs-on: ubuntu-latest @@ -79,7 +49,6 @@ jobs: - name: Checkout uses: actions/checkout@v2 with: - ref: 'charts' fetch-depth: 0 - name: Configure Git @@ -97,7 +66,7 @@ jobs: charts_repo_url: https://charts.truecharts.org/ env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - + # Update the generated timestamp in the index.yaml # needed until https://github.com/helm/chart-releaser/issues/90 # or helm/chart-releaser-action supports this diff --git a/.github/workflows/charts-renovate.yaml b/.github/workflows/charts-renovate.yaml index 810e77282ed..013f1cf74f6 100644 --- a/.github/workflows/charts-renovate.yaml +++ b/.github/workflows/charts-renovate.yaml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v2 with: token: ${{ secrets.RENOVPUSH }} - + - name: Configure Git run: | git config user.name "$GITHUB_ACTOR" diff --git a/.github/workflows/charts-restructure.yaml b/.github/workflows/charts-restructure.yaml new file mode 100644 index 00000000000..0dba9affe80 --- /dev/null +++ b/.github/workflows/charts-restructure.yaml @@ -0,0 +1,64 @@ +name: "Charts: Release" + +on: + push: + branches: + - master + tags-ignore: + - '**' + paths: + - 'charts/**' + - '!charts/**/*.md' + - '!charts/**/README.md' + - '!charts/**/README.md.gotmpl' + - '!charts/**/app-readme.md' + - '!charts/**/app-readme.md.gotmpl' + - '!charts/**/docs/*' + - 'library/**' + - '!library/**/*.md' + - '!library/**/README.md' + - '!library/**/README.md.gotmpl' + - '!library/**/app-readme.md' + - '!library/**/app-readme.md.gotmpl' + - '!library/**/docs/*' + +jobs: + copy: + runs-on: ubuntu-latest + steps: + - name: Checkout-Master + uses: actions/checkout@v2 + with: + ref: 'master' + path: 'master' + - name: Checkout-Charts + uses: actions/checkout@v2 + with: + ref: 'charts' + path: 'charts' + + - name: Generate Helm Structure + run: | + cd master + rm -Rf ../charts/charts/* + for chart in charts/*; do + if [ -d "${chart}" ]; then + maxversion=$(ls -l ${chart} | grep ^d | awk '{print $9}' | tail -n 1) + chartname=$(basename ${chart}) + echo "Processing ${chart} version ${maxversion}" + mv ${chart}/${maxversion} ../charts/charts/${chartname} + rm ../charts/charts/${chartname}/Chart.lock || echo "chart.lock missing for ${chartname}, continuing..." + fi + done + mv library/* ../charts/charts/ + ls ../charts/charts/ + cd .. + + - name: Commit and push updated charts + run: | + cd charts + git config user.name "$GITHUB_ACTOR" + git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + git add --all + git commit -sm "Publish Chart updates" || exit 0 + git push diff --git a/.github/workflows/wiki-create-docs.yaml b/.github/workflows/wiki-create-docs.yaml index d76eb02399d..ae7b634bbb2 100644 --- a/.github/workflows/wiki-create-docs.yaml +++ b/.github/workflows/wiki-create-docs.yaml @@ -28,24 +28,37 @@ jobs: repository: 'truecharts/wiki' path: 'wiki' token: ${{ secrets.RENOVPUSH }} + + + - name: install helm-docs + run: | + brew install norwoodj/tap/helm-docs + + - name: (re)generate docs + run: | + cd master + .tools/gen-helm-docs.sh + cd .. + - name: Clean-Wiki run: | rm -Rf wiki/content mkdir -p wiki/content + mkdir -p wiki/content/development cp -f wiki/CNAME wiki/content/CNAME - + - name: Create general wiki run: | cd master - # for doc in docs/*; do - # if [ -d "${doc}" ]; then - # docname=$(basename ${doc}) - # cp -Rf docs/${docname} ../wiki/content/ - # fi - # done + for doc in .github/docs/*; do + if [ -d "${doc}" ]; then + docname=$(basename ${doc}) + cp -Rf ${doc} ../wiki/content/ + fi + done 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/contributing.md || echo "CONTRIBUTING copy failed, continuing..." + cp .github/CONTRIBUTING ../wiki/content/development/contributing.md || echo "CONTRIBUTING copy failed, continuing..." ls ../wiki/content/ cd .. @@ -65,7 +78,7 @@ jobs: ls ../wiki/content/apps/ cd .. - - name: Commit and push updated charts + - name: Commit and push updated wiki run: | cd wiki git config user.name "$GITHUB_ACTOR" @@ -73,3 +86,13 @@ jobs: git add --all git commit -sm "Publish general wiki updates" || exit 0 git push + cd .. + + - name: Commit and push updated charts + run: | + cd master + git config user.name "$GITHUB_ACTOR" + git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + git add --all + git commit -sm "Publish docs updates" || exit 0 + git push diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5e0b125cf0c..d7fc402cf7f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,9 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v3.4.0 hooks: - - id: end-of-file-fixer - exclude: '\.github(.+)' - id: trailing-whitespace - exclude: '\.github(.+)' + - id: end-of-file-fixer + - id: fix-byte-order-marker + - id: mixed-line-ending + - id: check-merge-conflict + - id: check-case-conflict diff --git a/.tools/fixfolders.sh b/.tools/fixfolders.sh old mode 100644 new mode 100755 diff --git a/.tools/gen-helm-docs.sh b/.tools/gen-helm-docs.sh new file mode 100755 index 00000000000..478d6d46fa4 --- /dev/null +++ b/.tools/gen-helm-docs.sh @@ -0,0 +1,57 @@ +#!/usr/bin/env bash +set -eu + +# Generate helm-docs for Helm charts +# Usage ./gen-helm-docs.sh [chart] + +# require helm-docs +command -v helm-docs >/dev/null 2>&1 || { + echo >&2 "helm-docs is not installed. Aborting." + exit 1 +} + +# Absolute path of repository +repository=$(git rev-parse --show-toplevel) + +# Templates to copy into each chart directory +readme_template="${repository}/.tools/templates/chart/README.md.gotmpl" +config_template="${repository}/.tools/templates/chart/docs/CONFIG.md.gotmpl" +app_readme_template="${repository}/.tools/templates/chart/app-readme.md.gotmpl" + +# Gather all charts using the common library, excluding common-test +charts=$(find "${repository}" -name "Chart.yaml" -exec grep --exclude="*common-test*" -l "\- name\: common" {} \;) +root="${repository}" + +for chart in charts/*; do + if [ -d "${chart}" ]; then + maxfolderversion=$(ls -l ${chart} | grep ^d | awk '{print $9}' | tail -n 1) + maxchartversion=$(cat ${chart}/${maxfolderversion}/Chart.yaml | grep "^version: " | awk -F" " '{ print $2 }') + chartname=$(basename ${chart}) + mkdir -p ${chart}/${maxfolderversion}/docs || true + echo "-] Copying templates to ${chart}/${maxfolderversion}" + # Copy README template into each Chart directory, remove current if existing + rm -f "${chart}/${maxfolderversion}/README.md.gotmpl" || true + cp -f "${readme_template}" "${chart}/${maxfolderversion}/README.md.gotmpl" || true + # Copy README template into each Chart directory, remove current if existing + rm -f "${chart}/${maxfolderversion}/app-readme.md.gotmpl" || true + cp -f "${app_readme_template}" "${chart}/${maxfolderversion}/app-readme.md.gotmpl" || true + # Copy CONFIG template to each Chart directory, do not overwrite if exists + cp -n "${config_template}" "${chart}/${maxfolderversion}/docs/CONFIG.md.gotmpl" || true + helm-docs \ + --ignore-file="${repository}/.helmdocsignore" \ + --template-files="${chart}/${maxfolderversion}/README.md.gotmpl" \ + --chart-search-root="${chart}/${maxfolderversion}" + helm-docs \ + --ignore-file="${repository}/.helmdocsignore" \ + --output-file="docs/CONFIG.md" \ + --template-files="${chart}/${maxfolderversion}/docs/CONFIG.md.gotmpl" \ + --chart-search-root="${chart}/${maxfolderversion}" + helm-docs \ + --ignore-file="${repository}/.helmdocsignore" \ + --output-file="app-readme.md" \ + --template-files="${chart}/${maxfolderversion}/app-readme.md.gotmpl" \ + --chart-search-root="${chart}/${maxfolderversion}" + + + fi +done diff --git a/.tools/pre-commit-install.bat b/.tools/pre-commit-install.bat new file mode 100644 index 00000000000..c815a9f3149 --- /dev/null +++ b/.tools/pre-commit-install.bat @@ -0,0 +1,4 @@ +pip install pre-commit +git config --unset-all core.hooksPath +cd .. +pre-commit install diff --git a/.tools/templates/chart/.helmignore b/.tools/templates/chart/.helmignore new file mode 100644 index 00000000000..4379e2b3014 --- /dev/null +++ b/.tools/templates/chart/.helmignore @@ -0,0 +1,26 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl diff --git a/.tools/templates/chart/Chart.yaml b/.tools/templates/chart/Chart.yaml new file mode 100644 index 00000000000..b17b7509bd0 --- /dev/null +++ b/.tools/templates/chart/Chart.yaml @@ -0,0 +1,20 @@ +apiVersion: v2 +appVersion: 1.0.0 +description: ${CHARTNAME} helm package +name: ${CHARTNAME} +version: 1.0.0 +kubeVersion: ">=1.16.0-0" +keywords: +- ${CHARTNAME} +home: https://github.com/k8s-at-home/charts/tree/master/charts/${CHARTNAME} +icon: https://${CHARTNAME}.org/icon +sources: +- https://github.com/${CHARTNAME}/${CHARTNAME}-docker +- https://github.com/k8s-at-home/charts/tree/master/charts/${CHARTNAME} +maintainers: +- name: ${CHARTNAME} + email: ${CHARTNAME}@${CHARTNAME}.com +dependencies: +- name: common + repository: https://k8s-at-home.com/charts/ + version: 3.0.1 diff --git a/.tools/templates/chart/README.md b/.tools/templates/chart/README.md new file mode 100644 index 00000000000..936b3fd7db2 --- /dev/null +++ b/.tools/templates/chart/README.md @@ -0,0 +1,117 @@ +# ${CHARTNAME} + +![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square) + +${CHARTNAME} helm package + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** + +## Source Code + +* +* + +## Requirements + +Kubernetes: `>=1.16.0-0` + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://k8s-at-home.com/charts/ | common | 3.0.1 | + +## TL;DR + +```console +helm repo add k8s-at-home https://k8s-at-home.com/charts/ +helm repo update +helm install ${CHARTNAME} k8s-at-home/${CHARTNAME} +``` + +## Installing the Chart + +To install the chart with the release name `${CHARTNAME}` + +```console +helm install ${CHARTNAME} k8s-at-home/${CHARTNAME} +``` + +## Uninstalling the Chart + +To uninstall the `${CHARTNAME}` deployment + +```console +helm uninstall ${CHARTNAME} +``` + +The command removes all the Kubernetes components associated with the chart **including persistent volumes** and deletes the release. + +## Configuration + +Read through the [values.yaml](./values.yaml) file. It has several commented out suggested values. +Other values may be used from the [values.yaml](../common/values.yaml) from the [common library](../common). + +Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. + +```console +helm install ${CHARTNAME} \ + --set env.TZ="America/New York" \ + k8s-at-home/${CHARTNAME} +``` + +Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. + +```console +helm install ${CHARTNAME} k8s-at-home/${CHARTNAME} -f values.yaml +``` + +## Custom configuration + +N/A + +## Values + +**Important**: When deploying an application Helm chart you can add more values from our common library chart [here](https://github.com/k8s-at-home/charts/tree/master/charts/common/) + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| env | object | `{}` | | +| image.pullPolicy | string | `"IfNotPresent"` | | +| image.repository | string | `"${CHARTNAME}/${CHARTNAME}"` | | +| image.tag | string | `"1.0.0"` | | +| ingress.enabled | bool | `false` | | +| service.port.port | int | `1880` | | +| strategy.type | string | `"Recreate"` | | + +## Changelog + +All notable changes to this application Helm chart will be documented in this file but does not include changes from our common library. To read those click [here](https://github.com/k8s-at-home/charts/tree/master/charts/common/README.md#Changelog). + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +### [1.0.0] + +#### Added + +- N/A + +#### Changed + +- N/A + +#### Removed + +- N/A + +[1.0.0]: #1.0.0 + +## Support + +- See the [Wiki](https://github.com/k8s-at-home/charts/wiki) +- Open a [issue](https://github.com/k8s-at-home/charts/issues/new/choose) +- Ask a [question](https://github.com/k8s-at-home/charts/discussions) +- Join our [Discord](https://discord.gg/sTMX7Vh) community + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/.tools/templates/chart/README.md.gotmpl b/.tools/templates/chart/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/.tools/templates/chart/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/collabora-online/1.3.0/app-readme.md b/.tools/templates/chart/app-readme.md similarity index 100% rename from charts/collabora-online/1.3.0/app-readme.md rename to .tools/templates/chart/app-readme.md diff --git a/.tools/templates/chart/app-readme.md.gotmpl b/.tools/templates/chart/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/.tools/templates/chart/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/.tools/templates/chart/docs/CONFIG.md.gotmpl b/.tools/templates/chart/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/.tools/templates/chart/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/calibre-web/1.3.0/templates/NOTES.txt b/.tools/templates/chart/templates/NOTES.txt similarity index 100% rename from charts/calibre-web/1.3.0/templates/NOTES.txt rename to .tools/templates/chart/templates/NOTES.txt diff --git a/charts/bazarr/1.3.0/templates/common.yaml b/.tools/templates/chart/templates/common.yaml similarity index 100% rename from charts/bazarr/1.3.0/templates/common.yaml rename to .tools/templates/chart/templates/common.yaml diff --git a/.tools/templates/chart/values.yaml b/.tools/templates/chart/values.yaml new file mode 100644 index 00000000000..992f90524f3 --- /dev/null +++ b/.tools/templates/chart/values.yaml @@ -0,0 +1,32 @@ +# +# IMPORTANT NOTE +# +# This chart inherits from our common library chart. You can check the default values/options here: +# https://github.com/k8s-at-home/charts/tree/master/charts/common/values.yaml +# + +image: + repository: ${CHARTNAME}/${CHARTNAME} + pullPolicy: IfNotPresent + tag: 1.0.0 + +strategy: + type: Recreate + +# See more environment variables in the ${CHARTNAME} documentation +# https://${CHARTNAME}.org/docs +env: {} + # TZ: + +service: + port: + port: 1880 + +ingress: + enabled: false + +# persistence: +# data: +# enabled: false +# emptyDir: false +# mountPath: /data diff --git a/.test/charts/common-test_spec.rb b/.tools/tests/charts/common-test_spec.rb similarity index 99% rename from .test/charts/common-test_spec.rb rename to .tools/tests/charts/common-test_spec.rb index 8a7ab445a77..b8804d56686 100644 --- a/.test/charts/common-test_spec.rb +++ b/.tools/tests/charts/common-test_spec.rb @@ -3,7 +3,7 @@ require_relative '../test_helper' class Test < ChartTest @@chart = Chart.new('library/common-test') - + describe @@chart.name do describe 'controller type' do it 'defaults to "Deployment"' do @@ -11,14 +11,14 @@ class Test < ChartTest assert_nil(resource('DaemonSet')) refute_nil(resource('Deployment')) end - + it 'accepts "statefulset"' do chart.value controllerType: 'statefulset' assert_nil(resource('Deployment')) assert_nil(resource('DaemonSet')) refute_nil(resource('StatefulSet')) end - + it 'accepts "daemonset"' do chart.value controllerType: 'daemonset' assert_nil(resource('Deployment')) @@ -26,12 +26,12 @@ class Test < ChartTest refute_nil(resource('DaemonSet')) end end - + describe 'pod replicas' do it 'defaults to 1' do jq('.spec.replicas', resource('Deployment')).must_equal 1 end - + it 'accepts integer as value' do chart.value replicas: 3 jq('.spec.replicas', resource('Deployment')).must_equal 3 @@ -109,7 +109,7 @@ class Test < ChartTest jq('.spec.template.spec.containers[0].env[4].name', resource('Deployment')).must_equal values[:envTpl].keys[0].to_s jq('.spec.template.spec.containers[0].env[4].value', resource('Deployment')).must_equal 'common-test-admin' end - + it 'set "Dynamic/Tpl" environment variables' do values = { envTpl: { @@ -139,7 +139,7 @@ class Test < ChartTest jq('.spec.template.spec.containers[0].ports[0].containerPort', resource('Deployment')).must_equal default_port jq('.spec.template.spec.containers[0].ports[0].name', resource('Deployment')).must_equal default_name end - + it 'port name can be overridden' do values = { service: { diff --git a/.test/test_helper.rb b/.tools/tests/test_helper.rb similarity index 100% rename from .test/test_helper.rb rename to .tools/tests/test_helper.rb diff --git a/charts/bazarr/1.3.0/README.md b/charts/bazarr/1.3.0/README.md deleted file mode 100644 index e8523f97fa4..00000000000 --- a/charts/bazarr/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Bazarr helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/bazarr/1.3.0/app-readme.md b/charts/bazarr/1.3.0/app-readme.md deleted file mode 100644 index 8d330e68e50..00000000000 --- a/charts/bazarr/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Bazarr - -Bazarr chart is a chart designed to deploy Bazarr in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/bazarr/1.3.0/.helmignore b/charts/bazarr/1.3.1/.helmignore similarity index 100% rename from charts/bazarr/1.3.0/.helmignore rename to charts/bazarr/1.3.1/.helmignore diff --git a/charts/bazarr/1.3.0/Chart.lock b/charts/bazarr/1.3.1/Chart.lock similarity index 100% rename from charts/bazarr/1.3.0/Chart.lock rename to charts/bazarr/1.3.1/Chart.lock diff --git a/charts/bazarr/1.3.0/Chart.yaml b/charts/bazarr/1.3.1/Chart.yaml similarity index 97% rename from charts/bazarr/1.3.0/Chart.yaml rename to charts/bazarr/1.3.1/Chart.yaml index c94b8aa0da4..04434f596f0 100644 --- a/charts/bazarr/1.3.0/Chart.yaml +++ b/charts/bazarr/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.9.0.5 description: Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements name: bazarr -version: 1.3.0 +version: 1.3.1 upstream_version: 5.2.1 keywords: - bazarr diff --git a/charts/bazarr/1.3.0/LICENSE b/charts/bazarr/1.3.1/LICENSE similarity index 100% rename from charts/bazarr/1.3.0/LICENSE rename to charts/bazarr/1.3.1/LICENSE diff --git a/charts/bazarr/1.3.1/README.md b/charts/bazarr/1.3.1/README.md new file mode 100644 index 00000000000..0f8e2308819 --- /dev/null +++ b/charts/bazarr/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: v0.9.0.5](https://img.shields.io/badge/AppVersion-v0.9.0.5-informational?style=flat-square) + +Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `bazarr` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `bazarr` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/bazarr/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/bazarr/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/bazarr/1.3.1/app-readme.md b/charts/bazarr/1.3.1/app-readme.md new file mode 100644 index 00000000000..72b30ac1c20 --- /dev/null +++ b/charts/bazarr/1.3.1/app-readme.md @@ -0,0 +1 @@ +Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements diff --git a/charts/bazarr/1.3.1/app-readme.md.gotmpl b/charts/bazarr/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/bazarr/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/bazarr/1.3.0/charts/common-1.3.0.tgz b/charts/bazarr/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/bazarr/1.3.0/charts/common-1.3.0.tgz rename to charts/bazarr/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/bazarr/1.3.1/docs/CONFIG.md b/charts/bazarr/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/bazarr/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/bazarr/1.3.1/docs/CONFIG.md.gotmpl b/charts/bazarr/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/bazarr/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/bazarr/1.3.0/questions.yaml b/charts/bazarr/1.3.1/questions.yaml similarity index 99% rename from charts/bazarr/1.3.0/questions.yaml rename to charts/bazarr/1.3.1/questions.yaml index 12b3fe83b72..1ea54469859 100644 --- a/charts/bazarr/1.3.0/questions.yaml +++ b/charts/bazarr/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -244,7 +244,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -300,7 +300,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -432,4 +432,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/calibre-web/1.3.0/templates/common.yaml b/charts/bazarr/1.3.1/templates/common.yaml similarity index 100% rename from charts/calibre-web/1.3.0/templates/common.yaml rename to charts/bazarr/1.3.1/templates/common.yaml diff --git a/charts/bazarr/1.3.0/test_values.yaml b/charts/bazarr/1.3.1/test_values.yaml similarity index 99% rename from charts/bazarr/1.3.0/test_values.yaml rename to charts/bazarr/1.3.1/test_values.yaml index 5f8463ccec2..851d649f3b0 100644 --- a/charts/bazarr/1.3.0/test_values.yaml +++ b/charts/bazarr/1.3.1/test_values.yaml @@ -57,5 +57,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/downloads" - - diff --git a/charts/bazarr/1.3.0/values.yaml b/charts/bazarr/1.3.1/values.yaml similarity index 100% rename from charts/bazarr/1.3.0/values.yaml rename to charts/bazarr/1.3.1/values.yaml diff --git a/charts/calibre-web/1.3.0/README.md b/charts/calibre-web/1.3.0/README.md deleted file mode 100644 index 0d7dcd13fe7..00000000000 --- a/charts/calibre-web/1.3.0/README.md +++ /dev/null @@ -1,85 +0,0 @@ -# Calibre-Web - -This is a helm chart for [Calibre-Web](https://github.com/janeczku/calibre-web). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/calibre-web -``` - -## Storage - -If you plan to use networked storage to store your media or config for Booksonic, (NFS, etc.) please take a look at the -Fast Access option in the Booksonic settings. This will help improve the perfomance of the application -by not constantly monitoring media folders. - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/calibre-web -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/calibre-web/values.yaml) -file. It has several commented out suggested values. Most notably, these include several environment variables used to -customize the container. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install calibre-web \ - --set env.TZ="America/New_York" \ - k8s-at-home/calibre-web -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install calibre-web k8s-at-home/calibre-web -f values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 4.0.1 -> 5.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. - -### Upgrading from 2.x.x to 3.x.x - -Due to migrating to a centralized common library some values in `values.yaml` have changed. - -Examples: - -* `service.port` has been moved to `service.port.port`. -* `persistence.type` has been moved to `controllerType`. - -Refer to the library values.yaml for more configuration options. diff --git a/charts/calibre-web/1.3.0/app-readme.md b/charts/calibre-web/1.3.0/app-readme.md deleted file mode 100644 index 4f90cc4402c..00000000000 --- a/charts/calibre-web/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The calibre App is designed to deploy calibre in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/calibre-web/1.3.0/.helmignore b/charts/calibre-web/1.3.1/.helmignore similarity index 100% rename from charts/calibre-web/1.3.0/.helmignore rename to charts/calibre-web/1.3.1/.helmignore diff --git a/charts/calibre-web/1.3.0/Chart.lock b/charts/calibre-web/1.3.1/Chart.lock similarity index 100% rename from charts/calibre-web/1.3.0/Chart.lock rename to charts/calibre-web/1.3.1/Chart.lock diff --git a/charts/calibre-web/1.3.0/Chart.yaml b/charts/calibre-web/1.3.1/Chart.yaml similarity index 97% rename from charts/calibre-web/1.3.0/Chart.yaml rename to charts/calibre-web/1.3.1/Chart.yaml index 9f3a1519564..e6a35db6d4a 100644 --- a/charts/calibre-web/1.3.0/Chart.yaml +++ b/charts/calibre-web/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.6.9 description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. name: calibre-web -version: 1.3.0 +version: 1.3.1 upstream_version: 4.3.1 keywords: - calibre @@ -18,4 +18,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/calibre-web/1.3.0/LICENSE b/charts/calibre-web/1.3.1/LICENSE similarity index 100% rename from charts/calibre-web/1.3.0/LICENSE rename to charts/calibre-web/1.3.1/LICENSE diff --git a/charts/calibre-web/1.3.1/README.md b/charts/calibre-web/1.3.1/README.md new file mode 100644 index 00000000000..73933692a61 --- /dev/null +++ b/charts/calibre-web/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 0.6.9](https://img.shields.io/badge/AppVersion-0.6.9-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. + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `calibre-web` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `calibre-web` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/calibre-web/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/calibre-web/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/calibre-web/1.3.1/app-readme.md b/charts/calibre-web/1.3.1/app-readme.md new file mode 100644 index 00000000000..f623e40b732 --- /dev/null +++ b/charts/calibre-web/1.3.1/app-readme.md @@ -0,0 +1 @@ +Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. diff --git a/charts/calibre-web/1.3.1/app-readme.md.gotmpl b/charts/calibre-web/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/calibre-web/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/calibre-web/1.3.0/charts/common-1.3.0.tgz b/charts/calibre-web/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/calibre-web/1.3.0/charts/common-1.3.0.tgz rename to charts/calibre-web/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/calibre-web/1.3.1/docs/CONFIG.md b/charts/calibre-web/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/calibre-web/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/calibre-web/1.3.1/docs/CONFIG.md.gotmpl b/charts/calibre-web/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/calibre-web/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/calibre-web/1.3.0/questions.yaml b/charts/calibre-web/1.3.1/questions.yaml similarity index 99% rename from charts/calibre-web/1.3.0/questions.yaml rename to charts/calibre-web/1.3.1/questions.yaml index 9cb8f8d5da2..0a66fb9f0a5 100644 --- a/charts/calibre-web/1.3.0/questions.yaml +++ b/charts/calibre-web/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -187,7 +187,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -243,7 +243,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/collabora-online/1.3.0/templates/NOTES.txt b/charts/calibre-web/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/collabora-online/1.3.0/templates/NOTES.txt rename to charts/calibre-web/1.3.1/templates/NOTES.txt diff --git a/charts/collabora-online/1.3.0/templates/common.yaml b/charts/calibre-web/1.3.1/templates/common.yaml similarity index 100% rename from charts/collabora-online/1.3.0/templates/common.yaml rename to charts/calibre-web/1.3.1/templates/common.yaml diff --git a/charts/calibre-web/1.3.0/test_values.yaml b/charts/calibre-web/1.3.1/test_values.yaml similarity index 99% rename from charts/calibre-web/1.3.0/test_values.yaml rename to charts/calibre-web/1.3.1/test_values.yaml index f70b21820a1..bf0ba994498 100644 --- a/charts/calibre-web/1.3.0/test_values.yaml +++ b/charts/calibre-web/1.3.1/test_values.yaml @@ -41,7 +41,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + appVolumeMounts: config: @@ -54,4 +54,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/media" - diff --git a/charts/calibre-web/1.3.0/values.yaml b/charts/calibre-web/1.3.1/values.yaml similarity index 99% rename from charts/calibre-web/1.3.0/values.yaml rename to charts/calibre-web/1.3.1/values.yaml index 6f000496460..18d419b5594 100644 --- a/charts/calibre-web/1.3.0/values.yaml +++ b/charts/calibre-web/1.3.1/values.yaml @@ -41,7 +41,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + #appVolumeMounts: # config: @@ -50,4 +50,3 @@ appIngressEnabled: false # media: # enabled: false # emptyDir: false - diff --git a/charts/collabora-online/1.3.0/README.md b/charts/collabora-online/1.3.0/README.md deleted file mode 100644 index 174a5d7123c..00000000000 --- a/charts/collabora-online/1.3.0/README.md +++ /dev/null @@ -1,18 +0,0 @@ -# Collabora Online (CODE) - -## Introduction - -This chart installs a collabora online (code) server - -## Configuration - -| **Description** | **Parameter** | **Type** | **Values** | **Command Example (This is the defaults)** | -|------------------------------------------------------------------------------------------------------------------------|-----------------------|----------|---------------------|--------------------------------------------| -| Controls whether the welcome screen should be shown to the users on new install and updates. | welcome.enable | bool | true|false | -o:welcome.enable=true | -| Controls whether the welcome screen should have an explanatory button instead of an X button to close the dialog. | welcome.enable_button | bool | true|false | -o:welcome.enable_button=false | -| Controls whether the welcome screen should have an explanatory button instead of an X button to close the dialog. | user_interface.mode | string | classic|notebookbar | -o:user_interface.mode=notebookbar | -| Opacity of on-screen watermark from 0.0 to 1.0 | watermark.opacity | double | 0.0 - 1.0 | -o:watermark.opacity=0.2 | -| Watermark text to be displayed on the document if entered | watermark.text | string | Any text | -o:watermark.text="" | - - -For more parameters and options, Bash in your container and `cat /etc/loolwsd/loolwsd.xml` \ No newline at end of file diff --git a/charts/collabora-online/1.3.0/Chart.lock b/charts/collabora-online/1.3.1/Chart.lock similarity index 100% rename from charts/collabora-online/1.3.0/Chart.lock rename to charts/collabora-online/1.3.1/Chart.lock diff --git a/charts/collabora-online/1.3.0/Chart.yaml b/charts/collabora-online/1.3.1/Chart.yaml similarity index 85% rename from charts/collabora-online/1.3.0/Chart.yaml rename to charts/collabora-online/1.3.1/Chart.yaml index 0bbc20ef3b1..46950054418 100644 --- a/charts/collabora-online/1.3.0/Chart.yaml +++ b/charts/collabora-online/1.3.1/Chart.yaml @@ -1,15 +1,15 @@ apiVersion: v2 name: collabora-online -version: 1.3.0 +version: 1.3.1 appVersion: 6.4.6.1 -description: Collabora Online Development Edition – an awesome, Online Office suite image suitable for home use. +description: Collabora Online Development Edition – an awesome, Online Office suite image suitable for home use. keywords: - collabora - collaboration - documents home: https://www.collaboraoffice.com/ icon: https://avatars.githubusercontent.com/u/22418908?s=200&v=4 -sources: +sources: - https://hub.docker.com/r/collabora/code - https://www.collaboraoffice.com/code/docker/ dependencies: diff --git a/charts/collabora-online/1.3.1/README.md b/charts/collabora-online/1.3.1/README.md new file mode 100644 index 00000000000..91cf10fb11a --- /dev/null +++ b/charts/collabora-online/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 6.4.6.1](https://img.shields.io/badge/AppVersion-6.4.6.1-informational?style=flat-square) + +Collabora Online Development Edition – an awesome, Online Office suite image suitable for home use. + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `collabora-online` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `collabora-online` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/collabora-online/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/collabora-online/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/collabora-online/1.3.1/app-readme.md b/charts/collabora-online/1.3.1/app-readme.md new file mode 100644 index 00000000000..f093e83c835 --- /dev/null +++ b/charts/collabora-online/1.3.1/app-readme.md @@ -0,0 +1 @@ +Collabora Online Development Edition – an awesome, Online Office suite image suitable for home use. diff --git a/charts/collabora-online/1.3.1/app-readme.md.gotmpl b/charts/collabora-online/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/collabora-online/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/collabora-online/1.3.0/charts/common-1.3.0.tgz b/charts/collabora-online/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/collabora-online/1.3.0/charts/common-1.3.0.tgz rename to charts/collabora-online/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/collabora-online/1.3.1/docs/CONFIG.md b/charts/collabora-online/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/collabora-online/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/collabora-online/1.3.1/docs/CONFIG.md.gotmpl b/charts/collabora-online/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/collabora-online/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/collabora-online/1.3.0/questions.yaml b/charts/collabora-online/1.3.1/questions.yaml similarity index 97% rename from charts/collabora-online/1.3.0/questions.yaml rename to charts/collabora-online/1.3.1/questions.yaml index 478bf80e361..d9e759d4106 100644 --- a/charts/collabora-online/1.3.0/questions.yaml +++ b/charts/collabora-online/1.3.1/questions.yaml @@ -1,6 +1,6 @@ groups: - name: "Container Image" - description: "Configure Container Image" + description: "Configure Container Image" - name: "Configuration" description: "additional container configuration" - name: "Networking" @@ -17,7 +17,7 @@ portals: web_portal: protocols: - "https" - host: + host: - "$node_ip" ports: - "$variable-service.port.nodePort" @@ -36,7 +36,7 @@ questions: - variable: repository label: "Image Repository" schema: - type: string + type: string default: "collabora/code" editable: false #Tag @@ -71,7 +71,7 @@ questions: - value: "RollingUpdate" description: "Create new pods and then kill old ones" - value: "Recreate" - description: "Kill existing pods before creating new ones" + description: "Kill existing pods before creating new ones" # Configure Time Zone - variable: timezone @@ -145,7 +145,7 @@ questions: max: 65535 default: 30980 required: true - + # environmentVariables Configuraiton - variable: env group: "Environment Variables" @@ -161,7 +161,7 @@ questions: type: string default: 'nextcloud\.domain\.tld|othernextcloud\.domain\.tld' required: true - - variable: username + - variable: username label: "Username for WebUI" schema: type: string @@ -184,10 +184,10 @@ questions: description: 'e.g. "–o:welcome.enable=false", See more on /etc/loolwsd/loowsd.xml. Separate params with space' schema: type: string - default: "-o:welcome.enable=false -o:user_interface.mode=notebookbar -o:ssl.termination=true -o:ssl.enable=false" + default: "-o:welcome.enable=false -o:user_interface.mode=notebookbar -o:ssl.termination=true -o:ssl.enable=false" - variable: server_name label: "Server Name" - description: "When this environment variable is set (is not “”), then its value will be used as server name in /etc/loolwsd/loolwsd.xml. Without this, CODE is not delivering a correct host for the websocket connection in case of a proxy in front of it." + description: "When this environment variable is set (is not “”), then its value will be used as server name in /etc/loolwsd/loolwsd.xml. Without this, CODE is not delivering a correct host for the websocket connection in case of a proxy in front of it." schema: type: string default: 'collabora\.domain\.tld' @@ -289,4 +289,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" + default: "" diff --git a/charts/deluge/1.3.0/templates/NOTES.txt b/charts/collabora-online/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/deluge/1.3.0/templates/NOTES.txt rename to charts/collabora-online/1.3.1/templates/NOTES.txt diff --git a/charts/deluge/1.3.0/templates/common.yaml b/charts/collabora-online/1.3.1/templates/common.yaml similarity index 100% rename from charts/deluge/1.3.0/templates/common.yaml rename to charts/collabora-online/1.3.1/templates/common.yaml diff --git a/charts/collabora-online/1.3.0/test_values.yaml b/charts/collabora-online/1.3.1/test_values.yaml similarity index 83% rename from charts/collabora-online/1.3.0/test_values.yaml rename to charts/collabora-online/1.3.1/test_values.yaml index 8fdd5674e57..fb7db54dca7 100644 --- a/charts/collabora-online/1.3.0/test_values.yaml +++ b/charts/collabora-online/1.3.1/test_values.yaml @@ -12,9 +12,9 @@ service: port: 9980 nodePort: 30980 -env: - domain: nextcloud\.domain\.tld - dictionaries: de_DE en_GB en_US es_ES fr_FR it nl pt_BR pt_PT ru +env: + domain: nextcloud\.domain\.tld + dictionaries: de_DE en_GB en_US es_ES fr_FR it nl pt_BR pt_PT ru username: admin password: changeme extra_params: diff --git a/charts/collabora-online/1.3.0/values.yaml b/charts/collabora-online/1.3.1/values.yaml similarity index 80% rename from charts/collabora-online/1.3.0/values.yaml rename to charts/collabora-online/1.3.1/values.yaml index e2ecb966f2b..fa70ff74f2d 100644 --- a/charts/collabora-online/1.3.0/values.yaml +++ b/charts/collabora-online/1.3.1/values.yaml @@ -10,9 +10,9 @@ service: port: port: 9980 -env: - domain: - dictionaries: +env: + domain: + dictionaries: username: admin password: changeme extra_params: diff --git a/charts/deluge/1.3.0/README.md b/charts/deluge/1.3.0/README.md deleted file mode 100644 index db78b4f3305..00000000000 --- a/charts/deluge/1.3.0/README.md +++ /dev/null @@ -1,57 +0,0 @@ -# Deluge - -This is a helm chart for [Deluge](https://deluge-torrent.org/). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/deluge -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/deluge -``` - -The default login details (change ASAP) are: - -* password:deluge - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/deluge/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install deluge \ - --set env.TZ="America/New_York" \ - k8s-at-home/deluge -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install deluge k8s-at-home/deluge --values values.yaml -``` - -These values will be nested as it is a dependency, for example -```yaml -image: - tag: ... -``` diff --git a/charts/deluge/1.3.0/app-readme.md b/charts/deluge/1.3.0/app-readme.md deleted file mode 100644 index 7b89040cd61..00000000000 --- a/charts/deluge/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The deluge App is designed to deploy deluge in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/deluge/1.3.0/.helmignore b/charts/deluge/1.3.1/.helmignore similarity index 100% rename from charts/deluge/1.3.0/.helmignore rename to charts/deluge/1.3.1/.helmignore diff --git a/charts/deluge/1.3.0/Chart.lock b/charts/deluge/1.3.1/Chart.lock similarity index 100% rename from charts/deluge/1.3.0/Chart.lock rename to charts/deluge/1.3.1/Chart.lock diff --git a/charts/deluge/1.3.0/Chart.yaml b/charts/deluge/1.3.1/Chart.yaml similarity index 96% rename from charts/deluge/1.3.0/Chart.yaml rename to charts/deluge/1.3.1/Chart.yaml index 520462dfa2e..cc388f3700b 100644 --- a/charts/deluge/1.3.0/Chart.yaml +++ b/charts/deluge/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.0.3-2201906121747 description: Deluge is a torrent download client name: deluge -version: 1.3.0 +version: 1.3.1 upstream_version: 1.1.1 keywords: - deluge @@ -18,4 +18,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/deluge/1.3.0/LICENSE b/charts/deluge/1.3.1/LICENSE similarity index 100% rename from charts/deluge/1.3.0/LICENSE rename to charts/deluge/1.3.1/LICENSE diff --git a/charts/deluge/1.3.1/README.md b/charts/deluge/1.3.1/README.md new file mode 100644 index 00000000000..ff5aea1048d --- /dev/null +++ b/charts/deluge/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: v2.0.3-2201906121747](https://img.shields.io/badge/AppVersion-v2.0.3--2201906121747-informational?style=flat-square) + +Deluge is a torrent download client + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `deluge` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `deluge` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/deluge/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/deluge/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/deluge/1.3.1/app-readme.md b/charts/deluge/1.3.1/app-readme.md new file mode 100644 index 00000000000..37877646515 --- /dev/null +++ b/charts/deluge/1.3.1/app-readme.md @@ -0,0 +1 @@ +Deluge is a torrent download client diff --git a/charts/deluge/1.3.1/app-readme.md.gotmpl b/charts/deluge/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/deluge/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/deluge/1.3.0/charts/common-1.3.0.tgz b/charts/deluge/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/deluge/1.3.0/charts/common-1.3.0.tgz rename to charts/deluge/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/deluge/1.3.1/docs/CONFIG.md b/charts/deluge/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/deluge/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/deluge/1.3.1/docs/CONFIG.md.gotmpl b/charts/deluge/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/deluge/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/deluge/1.3.0/questions.yaml b/charts/deluge/1.3.1/questions.yaml similarity index 99% rename from charts/deluge/1.3.0/questions.yaml rename to charts/deluge/1.3.1/questions.yaml index 32225ffd802..1395a846492 100644 --- a/charts/deluge/1.3.0/questions.yaml +++ b/charts/deluge/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + # Enable Host Network - variable: hostNetwork group: "Networking" @@ -119,7 +119,7 @@ questions: schema: type: boolean default: false - + - variable: service group: "Networking" label: "Configure Service" @@ -315,7 +315,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -371,7 +371,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/freshrss/1.3.0/templates/NOTES.txt b/charts/deluge/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/freshrss/1.3.0/templates/NOTES.txt rename to charts/deluge/1.3.1/templates/NOTES.txt diff --git a/charts/esphome/1.3.0/templates/common.yaml b/charts/deluge/1.3.1/templates/common.yaml similarity index 100% rename from charts/esphome/1.3.0/templates/common.yaml rename to charts/deluge/1.3.1/templates/common.yaml diff --git a/charts/deluge/1.3.0/test_values.yaml b/charts/deluge/1.3.1/test_values.yaml similarity index 99% rename from charts/deluge/1.3.0/test_values.yaml rename to charts/deluge/1.3.1/test_values.yaml index edd480089bb..a40fbb1064a 100644 --- a/charts/deluge/1.3.0/test_values.yaml +++ b/charts/deluge/1.3.1/test_values.yaml @@ -45,7 +45,7 @@ env: {} # DELUGE_LOGLEVEL: "error" appIngressEnabled: false - + appVolumeMounts: config: enabled: true @@ -57,7 +57,7 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/downloads" - + appAdditionalServicesEnabled: true appAdditionalServices: tcp: @@ -76,4 +76,3 @@ appAdditionalServices: name: bittorrent-udp protocol: UDP targetPort: 51413 - diff --git a/charts/deluge/1.3.0/values.yaml b/charts/deluge/1.3.1/values.yaml similarity index 98% rename from charts/deluge/1.3.0/values.yaml rename to charts/deluge/1.3.1/values.yaml index fe861de3995..3043a75ebeb 100644 --- a/charts/deluge/1.3.0/values.yaml +++ b/charts/deluge/1.3.1/values.yaml @@ -45,7 +45,7 @@ env: {} # DELUGE_LOGLEVEL: "error" appIngressEnabled: false - + # appVolumeMounts: # config: # enabled: false @@ -53,7 +53,7 @@ appIngressEnabled: false # downloads: # enabled: false # emptyDir: false - + appAdditionalServicesEnabled: true appAdditionalServices: tcp: @@ -72,4 +72,3 @@ appAdditionalServices: name: bittorrent-udp protocol: UDP targetPort: 51413 - diff --git a/charts/esphome/1.3.0/README.md b/charts/esphome/1.3.0/README.md deleted file mode 100644 index 9b19b6d8923..00000000000 --- a/charts/esphome/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# ESPHome helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/esphome/1.3.0/app-readme.md b/charts/esphome/1.3.0/app-readme.md deleted file mode 100644 index 7660605dae0..00000000000 --- a/charts/esphome/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# ESPHome - -ESPHome chart is a chart designed to deploy ESPHome in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/esphome/1.3.0/.helmignore b/charts/esphome/1.3.1/.helmignore similarity index 100% rename from charts/esphome/1.3.0/.helmignore rename to charts/esphome/1.3.1/.helmignore diff --git a/charts/esphome/1.3.0/Chart.lock b/charts/esphome/1.3.1/Chart.lock similarity index 100% rename from charts/esphome/1.3.0/Chart.lock rename to charts/esphome/1.3.1/Chart.lock diff --git a/charts/esphome/1.3.0/Chart.yaml b/charts/esphome/1.3.1/Chart.yaml similarity index 97% rename from charts/esphome/1.3.0/Chart.yaml rename to charts/esphome/1.3.1/Chart.yaml index c893a97def1..930ebd53095 100644 --- a/charts/esphome/1.3.0/Chart.yaml +++ b/charts/esphome/1.3.1/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 appVersion: 1.15.3 -version: 1.3.0 +version: 1.3.1 upstream_version: 4.3.1 name: esphome diff --git a/charts/esphome/1.3.0/LICENSE b/charts/esphome/1.3.1/LICENSE similarity index 100% rename from charts/esphome/1.3.0/LICENSE rename to charts/esphome/1.3.1/LICENSE diff --git a/charts/esphome/1.3.1/README.md b/charts/esphome/1.3.1/README.md new file mode 100644 index 00000000000..99720773b46 --- /dev/null +++ b/charts/esphome/1.3.1/README.md @@ -0,0 +1,52 @@ +# Introduction + +![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.15.3](https://img.shields.io/badge/AppVersion-1.15.3-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. + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `esphome` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `esphome` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/esphome/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/esphome/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/esphome/1.3.1/app-readme.md b/charts/esphome/1.3.1/app-readme.md new file mode 100644 index 00000000000..aef2e1b409e --- /dev/null +++ b/charts/esphome/1.3.1/app-readme.md @@ -0,0 +1 @@ +ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems. diff --git a/charts/esphome/1.3.1/app-readme.md.gotmpl b/charts/esphome/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/esphome/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/esphome/1.3.0/charts/common-1.3.0.tgz b/charts/esphome/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/esphome/1.3.0/charts/common-1.3.0.tgz rename to charts/esphome/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/esphome/1.3.1/docs/CONFIG.md b/charts/esphome/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/esphome/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/esphome/1.3.1/docs/CONFIG.md.gotmpl b/charts/esphome/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/esphome/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/esphome/1.3.0/questions.yaml b/charts/esphome/1.3.1/questions.yaml similarity index 99% rename from charts/esphome/1.3.0/questions.yaml rename to charts/esphome/1.3.1/questions.yaml index f252cd76875..a204c75fe3c 100644 --- a/charts/esphome/1.3.0/questions.yaml +++ b/charts/esphome/1.3.1/questions.yaml @@ -196,7 +196,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/freshrss/1.3.0/templates/common.yaml b/charts/esphome/1.3.1/templates/common.yaml similarity index 100% rename from charts/freshrss/1.3.0/templates/common.yaml rename to charts/esphome/1.3.1/templates/common.yaml diff --git a/charts/esphome/1.3.0/test_values.yaml b/charts/esphome/1.3.1/test_values.yaml similarity index 99% rename from charts/esphome/1.3.0/test_values.yaml rename to charts/esphome/1.3.1/test_values.yaml index 8afbac96709..9dd3b57bc02 100644 --- a/charts/esphome/1.3.0/test_values.yaml +++ b/charts/esphome/1.3.1/test_values.yaml @@ -47,6 +47,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - - diff --git a/charts/esphome/1.3.0/values.yaml b/charts/esphome/1.3.1/values.yaml similarity index 99% rename from charts/esphome/1.3.0/values.yaml rename to charts/esphome/1.3.1/values.yaml index be8fbdc71eb..304352d69eb 100644 --- a/charts/esphome/1.3.0/values.yaml +++ b/charts/esphome/1.3.1/values.yaml @@ -52,5 +52,3 @@ persistence: # datasetName: "config" # mountPath: "/config" # hostPathEnabled: false - - diff --git a/charts/freshrss/1.3.0/README.md b/charts/freshrss/1.3.0/README.md deleted file mode 100644 index 9e9a098d9f7..00000000000 --- a/charts/freshrss/1.3.0/README.md +++ /dev/null @@ -1,67 +0,0 @@ -# FreshRSS - -This is a helm chart for [FreshRSS](https://github.com/FreshRSS/FreshRSS). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/freshrss -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/freshrss -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/freshrss/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install freshrss \ - --set env.TZ="America/New_York" \ - k8s-at-home/freshrss -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install freshrss k8s-at-home/freshrss --values values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 1.0.1 -> 2.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. diff --git a/charts/freshrss/1.3.0/app-readme.md b/charts/freshrss/1.3.0/app-readme.md deleted file mode 100644 index 569504c547a..00000000000 --- a/charts/freshrss/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The freshrss App is designed to deploy freshrss in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/freshrss/1.3.0/.helmignore b/charts/freshrss/1.3.1/.helmignore similarity index 100% rename from charts/freshrss/1.3.0/.helmignore rename to charts/freshrss/1.3.1/.helmignore diff --git a/charts/freshrss/1.3.0/Chart.lock b/charts/freshrss/1.3.1/Chart.lock similarity index 100% rename from charts/freshrss/1.3.0/Chart.lock rename to charts/freshrss/1.3.1/Chart.lock diff --git a/charts/freshrss/1.3.0/Chart.yaml b/charts/freshrss/1.3.1/Chart.yaml similarity index 96% rename from charts/freshrss/1.3.0/Chart.yaml rename to charts/freshrss/1.3.1/Chart.yaml index 79b9ed55900..7b54e4558ab 100644 --- a/charts/freshrss/1.3.0/Chart.yaml +++ b/charts/freshrss/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.17.0 description: FreshRSS is a self-hosted RSS feed aggregator name: freshrss -version: 1.3.0 +version: 1.3.1 upstream_version: 2.3.1 keywords: - freshrss @@ -18,4 +18,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/freshrss/1.3.0/LICENSE b/charts/freshrss/1.3.1/LICENSE similarity index 100% rename from charts/freshrss/1.3.0/LICENSE rename to charts/freshrss/1.3.1/LICENSE diff --git a/charts/freshrss/1.3.1/README.md b/charts/freshrss/1.3.1/README.md new file mode 100644 index 00000000000..0c995a99df6 --- /dev/null +++ b/charts/freshrss/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 1.17.0](https://img.shields.io/badge/AppVersion-1.17.0-informational?style=flat-square) + +FreshRSS is a self-hosted RSS feed aggregator + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `freshrss` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `freshrss` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/freshrss/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/freshrss/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/freshrss/1.3.1/app-readme.md b/charts/freshrss/1.3.1/app-readme.md new file mode 100644 index 00000000000..bf72123e2f4 --- /dev/null +++ b/charts/freshrss/1.3.1/app-readme.md @@ -0,0 +1 @@ +FreshRSS is a self-hosted RSS feed aggregator diff --git a/charts/freshrss/1.3.1/app-readme.md.gotmpl b/charts/freshrss/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/freshrss/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/freshrss/1.3.0/charts/common-1.3.0.tgz b/charts/freshrss/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/freshrss/1.3.0/charts/common-1.3.0.tgz rename to charts/freshrss/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/freshrss/1.3.1/docs/CONFIG.md b/charts/freshrss/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/freshrss/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/freshrss/1.3.1/docs/CONFIG.md.gotmpl b/charts/freshrss/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/freshrss/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/freshrss/1.3.0/questions.yaml b/charts/freshrss/1.3.1/questions.yaml similarity index 99% rename from charts/freshrss/1.3.0/questions.yaml rename to charts/freshrss/1.3.1/questions.yaml index cbe26c8fc00..28879b549d5 100644 --- a/charts/freshrss/1.3.0/questions.yaml +++ b/charts/freshrss/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -187,7 +187,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/gaps/1.3.0/templates/NOTES.txt b/charts/freshrss/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/gaps/1.3.0/templates/NOTES.txt rename to charts/freshrss/1.3.1/templates/NOTES.txt diff --git a/charts/gaps/1.3.0/templates/common.yaml b/charts/freshrss/1.3.1/templates/common.yaml similarity index 100% rename from charts/gaps/1.3.0/templates/common.yaml rename to charts/freshrss/1.3.1/templates/common.yaml diff --git a/charts/freshrss/1.3.0/test_values.yaml b/charts/freshrss/1.3.1/test_values.yaml similarity index 97% rename from charts/freshrss/1.3.0/test_values.yaml rename to charts/freshrss/1.3.1/test_values.yaml index 652c1cbf10c..be7e8af2682 100644 --- a/charts/freshrss/1.3.0/test_values.yaml +++ b/charts/freshrss/1.3.1/test_values.yaml @@ -23,7 +23,7 @@ persistence: emptyDir: false appIngressEnabled: false - + appVolumeMounts: config: @@ -31,4 +31,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - diff --git a/charts/freshrss/1.3.0/values.yaml b/charts/freshrss/1.3.1/values.yaml similarity index 93% rename from charts/freshrss/1.3.0/values.yaml rename to charts/freshrss/1.3.1/values.yaml index 143ffd1f07d..bd967409bb0 100644 --- a/charts/freshrss/1.3.0/values.yaml +++ b/charts/freshrss/1.3.1/values.yaml @@ -23,9 +23,9 @@ persistence: emptyDir: false appIngressEnabled: false - + #appVolumeMounts: # config: # enabled: false -# emptyDir: false \ No newline at end of file +# emptyDir: false diff --git a/charts/gaps/1.3.0/README.md b/charts/gaps/1.3.0/README.md deleted file mode 100644 index cf41ee922ad..00000000000 --- a/charts/gaps/1.3.0/README.md +++ /dev/null @@ -1,67 +0,0 @@ -# Gaps - -This is a helm chart for [Gaps](https://github.com/JasonHHouse/gaps). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/gaps -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/gaps -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/gaps/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install gaps \ - --set env.TZ="America/New_York" \ - k8s-at-home/gaps -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install gaps k8s-at-home/gaps --values values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 4.0.1 -> 5.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. diff --git a/charts/gaps/1.3.0/app-readme.md b/charts/gaps/1.3.0/app-readme.md deleted file mode 100644 index 680d3e43cf5..00000000000 --- a/charts/gaps/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The gaps App is designed to deploy gaps in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/gaps/1.3.0/.helmignore b/charts/gaps/1.3.1/.helmignore similarity index 100% rename from charts/gaps/1.3.0/.helmignore rename to charts/gaps/1.3.1/.helmignore diff --git a/charts/gaps/1.3.0/Chart.lock b/charts/gaps/1.3.1/Chart.lock similarity index 100% rename from charts/gaps/1.3.0/Chart.lock rename to charts/gaps/1.3.1/Chart.lock diff --git a/charts/gaps/1.3.0/Chart.yaml b/charts/gaps/1.3.1/Chart.yaml similarity index 96% rename from charts/gaps/1.3.0/Chart.yaml rename to charts/gaps/1.3.1/Chart.yaml index fa25a33493a..fb9527e8110 100644 --- a/charts/gaps/1.3.0/Chart.yaml +++ b/charts/gaps/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. name: gaps -version: 1.3.0 +version: 1.3.1 upstream_version: 1.1.1 keywords: - plex @@ -17,4 +17,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/gaps/1.3.0/LICENSE b/charts/gaps/1.3.1/LICENSE similarity index 100% rename from charts/gaps/1.3.0/LICENSE rename to charts/gaps/1.3.1/LICENSE diff --git a/charts/gaps/1.3.1/README.md b/charts/gaps/1.3.1/README.md new file mode 100644 index 00000000000..edd30a0dc70 --- /dev/null +++ b/charts/gaps/1.3.1/README.md @@ -0,0 +1,50 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-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. + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `gaps` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `gaps` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/gaps/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/gaps/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/gaps/1.3.1/app-readme.md b/charts/gaps/1.3.1/app-readme.md new file mode 100644 index 00000000000..3f24e445a18 --- /dev/null +++ b/charts/gaps/1.3.1/app-readme.md @@ -0,0 +1 @@ +Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. diff --git a/charts/gaps/1.3.1/app-readme.md.gotmpl b/charts/gaps/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/gaps/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/gaps/1.3.0/charts/common-1.3.0.tgz b/charts/gaps/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/gaps/1.3.0/charts/common-1.3.0.tgz rename to charts/gaps/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/gaps/1.3.1/docs/CONFIG.md b/charts/gaps/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/gaps/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/gaps/1.3.1/docs/CONFIG.md.gotmpl b/charts/gaps/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/gaps/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/gaps/1.3.0/questions.yaml b/charts/gaps/1.3.1/questions.yaml similarity index 99% rename from charts/gaps/1.3.0/questions.yaml rename to charts/gaps/1.3.1/questions.yaml index f01d52b724e..66cea2d5812 100644 --- a/charts/gaps/1.3.0/questions.yaml +++ b/charts/gaps/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -187,7 +187,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/handbrake/1.0.0/templates/NOTES.txt b/charts/gaps/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/handbrake/1.0.0/templates/NOTES.txt rename to charts/gaps/1.3.1/templates/NOTES.txt diff --git a/charts/grocy/1.3.0/templates/common.yaml b/charts/gaps/1.3.1/templates/common.yaml similarity index 100% rename from charts/grocy/1.3.0/templates/common.yaml rename to charts/gaps/1.3.1/templates/common.yaml diff --git a/charts/gaps/1.3.0/test_values.yaml b/charts/gaps/1.3.1/test_values.yaml similarity index 97% rename from charts/gaps/1.3.0/test_values.yaml rename to charts/gaps/1.3.1/test_values.yaml index 9a6e959604f..9db31f2b553 100644 --- a/charts/gaps/1.3.0/test_values.yaml +++ b/charts/gaps/1.3.1/test_values.yaml @@ -22,7 +22,7 @@ persistence: mountPath: /usr/data appIngressEnabled: false - + appVolumeMounts: data: @@ -30,4 +30,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/data" - diff --git a/charts/gaps/1.3.0/values.yaml b/charts/gaps/1.3.1/values.yaml similarity index 96% rename from charts/gaps/1.3.0/values.yaml rename to charts/gaps/1.3.1/values.yaml index 829af451bcd..2c75ebcdc64 100644 --- a/charts/gaps/1.3.0/values.yaml +++ b/charts/gaps/1.3.1/values.yaml @@ -22,7 +22,3 @@ persistence: mountPath: /usr/data appIngressEnabled: false - - - - diff --git a/charts/grocy/1.3.0/README.md b/charts/grocy/1.3.0/README.md deleted file mode 100644 index 7e6cd7529e5..00000000000 --- a/charts/grocy/1.3.0/README.md +++ /dev/null @@ -1,69 +0,0 @@ -# grocy - -This is a helm chart for [grocy](https://grocy.info/). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/grocy -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/grocy -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/grocy/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install grocy \ - --set env.TZ="America/New_York" \ - k8s-at-home/grocy -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install grocy k8s-at-home/grocy --values values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 4.0.1 -> 5.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. - -Refer to the library values.yaml for more configuration options. diff --git a/charts/grocy/1.3.0/app-readme.md b/charts/grocy/1.3.0/app-readme.md deleted file mode 100644 index 609472d6fdf..00000000000 --- a/charts/grocy/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The grocy App is designed to deploy grocy in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/grocy/1.3.0/.helmignore b/charts/grocy/1.3.1/.helmignore similarity index 100% rename from charts/grocy/1.3.0/.helmignore rename to charts/grocy/1.3.1/.helmignore diff --git a/charts/grocy/1.3.0/Chart.lock b/charts/grocy/1.3.1/Chart.lock similarity index 100% rename from charts/grocy/1.3.0/Chart.lock rename to charts/grocy/1.3.1/Chart.lock diff --git a/charts/grocy/1.3.0/Chart.yaml b/charts/grocy/1.3.1/Chart.yaml similarity index 96% rename from charts/grocy/1.3.0/Chart.yaml rename to charts/grocy/1.3.1/Chart.yaml index 80f3dc5dc54..ce08f18d7ff 100644 --- a/charts/grocy/1.3.0/Chart.yaml +++ b/charts/grocy/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.7.1 description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home name: grocy -version: 1.3.0 +version: 1.3.1 upstream_version: 4.3.1 keywords: - grocy @@ -16,4 +16,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/grocy/1.3.0/LICENSE b/charts/grocy/1.3.1/LICENSE similarity index 100% rename from charts/grocy/1.3.0/LICENSE rename to charts/grocy/1.3.1/LICENSE diff --git a/charts/grocy/1.3.1/README.md b/charts/grocy/1.3.1/README.md new file mode 100644 index 00000000000..76fb24a155b --- /dev/null +++ b/charts/grocy/1.3.1/README.md @@ -0,0 +1,50 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: v2.7.1](https://img.shields.io/badge/AppVersion-v2.7.1-informational?style=flat-square) + +ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `grocy` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `grocy` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/grocy/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/grocy/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/grocy/1.3.1/app-readme.md b/charts/grocy/1.3.1/app-readme.md new file mode 100644 index 00000000000..c510fea28b5 --- /dev/null +++ b/charts/grocy/1.3.1/app-readme.md @@ -0,0 +1 @@ +ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home diff --git a/charts/grocy/1.3.1/app-readme.md.gotmpl b/charts/grocy/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/grocy/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/grocy/1.3.0/charts/common-1.3.0.tgz b/charts/grocy/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/grocy/1.3.0/charts/common-1.3.0.tgz rename to charts/grocy/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/grocy/1.3.1/docs/CONFIG.md b/charts/grocy/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/grocy/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/grocy/1.3.1/docs/CONFIG.md.gotmpl b/charts/grocy/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/grocy/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/grocy/1.3.0/questions.yaml b/charts/grocy/1.3.1/questions.yaml similarity index 99% rename from charts/grocy/1.3.0/questions.yaml rename to charts/grocy/1.3.1/questions.yaml index 5a3b7fd428e..f127beabb76 100644 --- a/charts/grocy/1.3.0/questions.yaml +++ b/charts/grocy/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -187,7 +187,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -321,4 +321,3 @@ questions: schema: type: string default: "" - diff --git a/charts/handbrake/1.0.0/templates/common.yaml b/charts/grocy/1.3.1/templates/common.yaml similarity index 100% rename from charts/handbrake/1.0.0/templates/common.yaml rename to charts/grocy/1.3.1/templates/common.yaml diff --git a/charts/grocy/1.3.0/test_values.yaml b/charts/grocy/1.3.1/test_values.yaml similarity index 98% rename from charts/grocy/1.3.0/test_values.yaml rename to charts/grocy/1.3.1/test_values.yaml index 91848cec75d..ee7f8128a30 100644 --- a/charts/grocy/1.3.0/test_values.yaml +++ b/charts/grocy/1.3.1/test_values.yaml @@ -23,7 +23,7 @@ persistence: emptyDir: false appIngressEnabled: false - + appVolumeMounts: config: diff --git a/charts/grocy/1.3.0/values.yaml b/charts/grocy/1.3.1/values.yaml similarity index 97% rename from charts/grocy/1.3.0/values.yaml rename to charts/grocy/1.3.1/values.yaml index 653c724b9d0..086a7ad17fd 100644 --- a/charts/grocy/1.3.0/values.yaml +++ b/charts/grocy/1.3.1/values.yaml @@ -23,6 +23,3 @@ persistence: emptyDir: false appIngressEnabled: false - - - diff --git a/charts/handbrake/1.0.0/README.md b/charts/handbrake/1.0.0/README.md deleted file mode 100644 index 990fe4d26c5..00000000000 --- a/charts/handbrake/1.0.0/README.md +++ /dev/null @@ -1,14 +0,0 @@ -# Handbrake - -## Introduction - -This Chart installs Handbrake in a Docker with VNC viewer - -## Configuration - -The source page of the docker explains in great detail how to configure handbrake with Enviromental Variables. -https://github.com/jlesage/docker-handbrake#multiple-watch-folders - -## NOTE - -For now it's not possible to add extra watch folder from the UI. When TrueCharts supports that, this chart should be updated to reflect that. diff --git a/charts/handbrake/1.0.0/app-readme.md b/charts/handbrake/1.0.0/app-readme.md deleted file mode 100644 index f0e623191d8..00000000000 --- a/charts/handbrake/1.0.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The handbrake App is designed to deploy handbrake in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/handbrake/1.0.1/Chart.lock b/charts/handbrake/1.0.1/Chart.lock new file mode 100644 index 00000000000..3bcf8834f87 --- /dev/null +++ b/charts/handbrake/1.0.1/Chart.lock @@ -0,0 +1,6 @@ +dependencies: +- name: common + repository: https://charts.truecharts.org/ + version: 1.3.0 +digest: sha256:a8928a03fcb76273e4859e665534195ef86dfa8710d8cb04d06114ce97227692 +generated: "2021-02-23T13:01:02.5142247+01:00" diff --git a/charts/handbrake/1.0.0/Chart.yaml b/charts/handbrake/1.0.1/Chart.yaml similarity index 95% rename from charts/handbrake/1.0.0/Chart.yaml rename to charts/handbrake/1.0.1/Chart.yaml index a836a675cb8..f3750808ef9 100644 --- a/charts/handbrake/1.0.0/Chart.yaml +++ b/charts/handbrake/1.0.1/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: handbrake -version: 1.0.0 +version: 1.0.1 appVersion: 1.23.1 description: HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. keywords: @@ -9,7 +9,7 @@ keywords: - media home: https://handbrake.fr/ icon: https://handbrake.fr/img/logo.png -sources: +sources: - https://github.com/jlesage/docker-handbrake - https://hub.docker.com/r/jlesage/handbrake/ dependencies: diff --git a/charts/handbrake/1.0.1/README.md b/charts/handbrake/1.0.1/README.md new file mode 100644 index 00000000000..93ddf1d1d34 --- /dev/null +++ b/charts/handbrake/1.0.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![AppVersion: 1.23.1](https://img.shields.io/badge/AppVersion-1.23.1-informational?style=flat-square) + +HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `handbrake` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `handbrake` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.0.1/README.md.gotmpl b/charts/handbrake/1.0.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/handbrake/1.0.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/handbrake/1.0.1/app-readme.md b/charts/handbrake/1.0.1/app-readme.md new file mode 100644 index 00000000000..8b5152ae500 --- /dev/null +++ b/charts/handbrake/1.0.1/app-readme.md @@ -0,0 +1 @@ +HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. diff --git a/charts/handbrake/1.0.1/app-readme.md.gotmpl b/charts/handbrake/1.0.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/handbrake/1.0.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/handbrake/1.0.0/charts/common-1.3.0.tgz b/charts/handbrake/1.0.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/handbrake/1.0.0/charts/common-1.3.0.tgz rename to charts/handbrake/1.0.1/charts/common-1.3.0.tgz diff --git a/charts/handbrake/1.0.1/docs/CONFIG.md b/charts/handbrake/1.0.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/handbrake/1.0.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/handbrake/1.0.1/docs/CONFIG.md.gotmpl b/charts/handbrake/1.0.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/handbrake/1.0.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/handbrake/1.0.0/questions.yaml b/charts/handbrake/1.0.1/questions.yaml similarity index 95% rename from charts/handbrake/1.0.0/questions.yaml rename to charts/handbrake/1.0.1/questions.yaml index 1cfeee7b918..f119584b9f8 100644 --- a/charts/handbrake/1.0.0/questions.yaml +++ b/charts/handbrake/1.0.1/questions.yaml @@ -23,7 +23,7 @@ portals: - "$node_ip" ports: - "$variable-service.port.nodePort" -# UI +# UI questions: # Image Related - variable: image @@ -33,7 +33,7 @@ questions: schema: type: dict required: true - attrs: + attrs: - variable: repository label: "Image repository" description: "Docker image repository" @@ -118,7 +118,7 @@ questions: schema: type: string - # Docker specific env + # Docker specific env - variable: env group: "Configuration" label: "Image Environment" @@ -132,7 +132,7 @@ questions: type: boolean default: false show_subquestions_if: true - subquestions: + subquestions: - variable: DISPLAY_WIDTH label: "DISPLAY_WIDTH" description: "Width (in pixels) of the application's window." @@ -153,14 +153,14 @@ questions: schema: type: string default: "0" - required: true + required: true - variable: VNC_PASSWORD label: "VNC_PASSWORD" description: "Password needed to connect to the application's GUI. See the VNC Password section for more details." schema: private: true type: string - default: "" + default: "" - variable: autoconv label: "Automated Conversion Settings" description: "Always read description before changing a value here. Also refer to README" @@ -174,7 +174,7 @@ questions: description: "HandBrake preset used by the automatic video converter. Identification of a preset must follow the format /" schema: type: string - default: 'General/Very Fast 1080p30' + default: 'General/Very Fast 1080p30' required: true - variable: AUTOMATED_CONVERSION_FORMAT label: "AUTOMATED_CONVERSION_FORMAT" @@ -195,9 +195,9 @@ questions: description: "When set to ignore, a non-video file found in the watch folder is ignored. If set to copy, a non-video file is copied as-is to the output folder." schema: type: string - default: 'ignore' + default: 'ignore' required: true - + # Networking - variable: service group: "Services" @@ -302,7 +302,7 @@ questions: max: 65535 default: 36053 required: false - # Host Networking + # Host Networking - variable: hostNetworking group: "Networking" label: "Enable Host Networking" @@ -331,7 +331,7 @@ questions: schema: type: dict attrs: - # config + # config - variable: config label: "config Volume" schema: @@ -353,7 +353,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -370,7 +370,7 @@ questions: - variable: mountPath label: "Mount Path inside the container" schema: - type: path + type: path default: "/config" editable: false - variable: hostPathEnabled @@ -386,7 +386,7 @@ questions: schema: type: hostpath required: true - # storage + # storage - variable: storage label: "storage Volume" schema: @@ -408,7 +408,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -437,7 +437,7 @@ questions: subquestions: - variable: hostPath label: "storage Host Path" - description: "Host path to store storage" + description: "Host path to store storage" schema: type: hostpath required: true @@ -463,7 +463,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -492,11 +492,11 @@ questions: subquestions: - variable: hostPath label: "watch Host Path" - description: "Host path to store watch" + description: "Host path to store watch" schema: type: hostpath required: true - # output + # output - variable: output label: "output Volume" schema: @@ -518,7 +518,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -547,11 +547,11 @@ questions: subquestions: - variable: hostPath label: "output Host Path" - description: "Host path to store output" + description: "Host path to store output" schema: type: hostpath required: true - # Optical Drive + # Optical Drive - variable: opticaldrive label: "Optical Drive Device" schema: @@ -563,7 +563,7 @@ questions: schema: type: boolean default: false - hidden: true + hidden: true - variable: hostPath label: "Path to Optical Drive device on host" description: 'Best to use path "by-id"' @@ -576,7 +576,7 @@ questions: schema: type: path default: "/dev/sr0" - required: true + required: true # Ingress - variable: appIngress label: "" diff --git a/charts/lychee/1.3.0/templates/NOTES.txt b/charts/handbrake/1.0.1/templates/NOTES.txt similarity index 100% rename from charts/lychee/1.3.0/templates/NOTES.txt rename to charts/handbrake/1.0.1/templates/NOTES.txt diff --git a/charts/heimdall/1.3.0/templates/common.yaml b/charts/handbrake/1.0.1/templates/common.yaml similarity index 100% rename from charts/heimdall/1.3.0/templates/common.yaml rename to charts/handbrake/1.0.1/templates/common.yaml diff --git a/charts/handbrake/1.0.0/test_values.yaml b/charts/handbrake/1.0.1/test_values.yaml similarity index 98% rename from charts/handbrake/1.0.0/test_values.yaml rename to charts/handbrake/1.0.1/test_values.yaml index 42d44a9351e..436850cf1a9 100644 --- a/charts/handbrake/1.0.0/test_values.yaml +++ b/charts/handbrake/1.0.1/test_values.yaml @@ -41,7 +41,7 @@ persistence: emptyDir: false mountPath: /storage # This can be read only - watch: + watch: enabled: false emptyDir: false mountPath: /watch @@ -55,7 +55,7 @@ persistence: ## All folders must start with "watch" and an index after ## eg. /watch1, /watch2 ## This is importand because settings can overrode to each watch folder exclusivly, with env vars with _# as a suffix -## eg. AUTOMATED_CONVERSION_PRESET_1 +## eg. AUTOMATED_CONVERSION_PRESET_1 # Path to your optical drive device in the container additionalVolumeMounts: [] diff --git a/charts/handbrake/1.0.0/values.yaml b/charts/handbrake/1.0.1/values.yaml similarity index 98% rename from charts/handbrake/1.0.0/values.yaml rename to charts/handbrake/1.0.1/values.yaml index d12a7a6fa60..97136da27be 100644 --- a/charts/handbrake/1.0.0/values.yaml +++ b/charts/handbrake/1.0.1/values.yaml @@ -41,7 +41,7 @@ persistence: emptyDir: false mountPath: /storage # This can be read only - watch: + watch: enabled: false emptyDir: false mountPath: /watch @@ -55,7 +55,7 @@ persistence: ## All folders must start with "watch" and an index after ## eg. /watch1, /watch2 ## This is importand because settings can overrode to each watch folder exclusivly, with env vars with _# as a suffix -## eg. AUTOMATED_CONVERSION_PRESET_1 +## eg. AUTOMATED_CONVERSION_PRESET_1 # Path to your optical drive device in the container additionalVolumeMounts: [] @@ -114,7 +114,7 @@ additionalVolumes: [] # hostPath: "/dev/sr0" # hostPathEnabled: true # setPermissions: true - + appAdditionalServicesEnabled: true appAdditionalServices: diff --git a/charts/heimdall/1.3.0/README.md b/charts/heimdall/1.3.0/README.md deleted file mode 100644 index d3258e0aae0..00000000000 --- a/charts/heimdall/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Heimdall helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/heimdall/1.3.0/app-readme.md b/charts/heimdall/1.3.0/app-readme.md deleted file mode 100644 index 69fdd46143c..00000000000 --- a/charts/heimdall/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Heimdall - -Heimdall chart is a chart designed to deploy Heimdall in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/heimdall/1.3.0/.helmignore b/charts/heimdall/1.3.1/.helmignore similarity index 100% rename from charts/heimdall/1.3.0/.helmignore rename to charts/heimdall/1.3.1/.helmignore diff --git a/charts/heimdall/1.3.0/Chart.lock b/charts/heimdall/1.3.1/Chart.lock similarity index 100% rename from charts/heimdall/1.3.0/Chart.lock rename to charts/heimdall/1.3.1/Chart.lock diff --git a/charts/heimdall/1.3.0/Chart.yaml b/charts/heimdall/1.3.1/Chart.yaml similarity index 97% rename from charts/heimdall/1.3.0/Chart.yaml rename to charts/heimdall/1.3.1/Chart.yaml index d735d45516e..3cf82714f50 100644 --- a/charts/heimdall/1.3.0/Chart.yaml +++ b/charts/heimdall/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.2.2 description: An Application dashboard and launcher name: heimdall -version: 1.3.0 +version: 1.3.1 upstream_version: 4.1.1 keywords: - heimdall diff --git a/charts/heimdall/1.3.0/LICENSE b/charts/heimdall/1.3.1/LICENSE similarity index 100% rename from charts/heimdall/1.3.0/LICENSE rename to charts/heimdall/1.3.1/LICENSE diff --git a/charts/heimdall/1.3.1/README.md b/charts/heimdall/1.3.1/README.md new file mode 100644 index 00000000000..e9cbd0a4b51 --- /dev/null +++ b/charts/heimdall/1.3.1/README.md @@ -0,0 +1,52 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 2.2.2](https://img.shields.io/badge/AppVersion-2.2.2-informational?style=flat-square) + +An Application dashboard and launcher + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `heimdall` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `heimdall` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/heimdall/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/heimdall/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/heimdall/1.3.1/app-readme.md b/charts/heimdall/1.3.1/app-readme.md new file mode 100644 index 00000000000..38058a79876 --- /dev/null +++ b/charts/heimdall/1.3.1/app-readme.md @@ -0,0 +1 @@ +An Application dashboard and launcher diff --git a/charts/heimdall/1.3.1/app-readme.md.gotmpl b/charts/heimdall/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/heimdall/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/heimdall/1.3.0/charts/common-1.3.0.tgz b/charts/heimdall/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/heimdall/1.3.0/charts/common-1.3.0.tgz rename to charts/heimdall/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/heimdall/1.3.1/docs/CONFIG.md b/charts/heimdall/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/heimdall/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/heimdall/1.3.1/docs/CONFIG.md.gotmpl b/charts/heimdall/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/heimdall/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/heimdall/1.3.0/questions.yaml b/charts/heimdall/1.3.1/questions.yaml similarity index 99% rename from charts/heimdall/1.3.0/questions.yaml rename to charts/heimdall/1.3.1/questions.yaml index 5178d40ac25..029d53c7a2c 100644 --- a/charts/heimdall/1.3.0/questions.yaml +++ b/charts/heimdall/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -320,4 +320,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/home-assistant/1.3.0/templates/common.yaml b/charts/heimdall/1.3.1/templates/common.yaml similarity index 100% rename from charts/home-assistant/1.3.0/templates/common.yaml rename to charts/heimdall/1.3.1/templates/common.yaml diff --git a/charts/heimdall/1.3.0/test_values.yaml b/charts/heimdall/1.3.1/test_values.yaml similarity index 99% rename from charts/heimdall/1.3.0/test_values.yaml rename to charts/heimdall/1.3.1/test_values.yaml index 9452eaaf885..23cb71bec5f 100644 --- a/charts/heimdall/1.3.0/test_values.yaml +++ b/charts/heimdall/1.3.1/test_values.yaml @@ -34,6 +34,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - - diff --git a/charts/heimdall/1.3.0/values.yaml b/charts/heimdall/1.3.1/values.yaml similarity index 100% rename from charts/heimdall/1.3.0/values.yaml rename to charts/heimdall/1.3.1/values.yaml diff --git a/charts/home-assistant/1.3.0/README.md b/charts/home-assistant/1.3.0/README.md deleted file mode 100644 index 0579bbb6548..00000000000 --- a/charts/home-assistant/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Home-Assistant helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/home-assistant/1.3.0/app-readme.md b/charts/home-assistant/1.3.0/app-readme.md deleted file mode 100644 index 0f65be1a01c..00000000000 --- a/charts/home-assistant/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Home-Assistant - -Home-Assistant chart is a chart designed to deploy Home-Assistant in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/home-assistant/1.3.0/.helmignore b/charts/home-assistant/1.3.1/.helmignore similarity index 100% rename from charts/home-assistant/1.3.0/.helmignore rename to charts/home-assistant/1.3.1/.helmignore diff --git a/charts/home-assistant/1.3.0/Chart.lock b/charts/home-assistant/1.3.1/Chart.lock similarity index 100% rename from charts/home-assistant/1.3.0/Chart.lock rename to charts/home-assistant/1.3.1/Chart.lock diff --git a/charts/home-assistant/1.3.0/Chart.yaml b/charts/home-assistant/1.3.1/Chart.yaml similarity index 98% rename from charts/home-assistant/1.3.0/Chart.yaml rename to charts/home-assistant/1.3.1/Chart.yaml index ec92a79f674..72f1da2b48a 100644 --- a/charts/home-assistant/1.3.0/Chart.yaml +++ b/charts/home-assistant/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2021.2.2 description: Home Assistant name: home-assistant -version: 1.3.0 +version: 1.3.1 upstream_version: 5.3.0 keywords: - home-assistant diff --git a/charts/home-assistant/1.3.0/LICENSE b/charts/home-assistant/1.3.1/LICENSE similarity index 100% rename from charts/home-assistant/1.3.0/LICENSE rename to charts/home-assistant/1.3.1/LICENSE diff --git a/charts/home-assistant/1.3.1/README.md b/charts/home-assistant/1.3.1/README.md new file mode 100644 index 00000000000..841dd4f91c2 --- /dev/null +++ b/charts/home-assistant/1.3.1/README.md @@ -0,0 +1,52 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 2021.2.2](https://img.shields.io/badge/AppVersion-2021.2.2-informational?style=flat-square) + +Home Assistant + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `home-assistant` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `home-assistant` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/home-assistant/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/home-assistant/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/home-assistant/1.3.1/app-readme.md b/charts/home-assistant/1.3.1/app-readme.md new file mode 100644 index 00000000000..4f008f0a381 --- /dev/null +++ b/charts/home-assistant/1.3.1/app-readme.md @@ -0,0 +1 @@ +Home Assistant diff --git a/charts/home-assistant/1.3.1/app-readme.md.gotmpl b/charts/home-assistant/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/home-assistant/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/home-assistant/1.3.0/charts/common-1.3.0.tgz b/charts/home-assistant/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/home-assistant/1.3.0/charts/common-1.3.0.tgz rename to charts/home-assistant/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/home-assistant/1.3.1/docs/CONFIG.md b/charts/home-assistant/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/home-assistant/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/home-assistant/1.3.1/docs/CONFIG.md.gotmpl b/charts/home-assistant/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/home-assistant/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/home-assistant/1.3.0/questions.yaml b/charts/home-assistant/1.3.1/questions.yaml similarity index 98% rename from charts/home-assistant/1.3.0/questions.yaml rename to charts/home-assistant/1.3.1/questions.yaml index 2806944f233..aa5d9671c83 100644 --- a/charts/home-assistant/1.3.0/questions.yaml +++ b/charts/home-assistant/1.3.1/questions.yaml @@ -99,7 +99,7 @@ questions: schema: type: string default: "002" - + # Configure Time Zone - variable: git group: "Configuration" @@ -150,7 +150,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -207,7 +207,7 @@ questions: schema: type: boolean default: false - hidden: true + hidden: true - variable: hostPath label: "Path to Z-Wave device on host" schema: @@ -245,7 +245,7 @@ questions: schema: type: boolean default: false - hidden: true + hidden: true - variable: hostPath label: "Path to Zigbee device on host" schema: @@ -293,9 +293,9 @@ questions: description: "ClusterFirst" - value: "ClusterFirstWithHostNet" description: "ClusterFirstWithHostNet" - - + + # Service Configuration - variable: service group: "Networking" @@ -432,4 +432,3 @@ questions: schema: type: string default: "" - diff --git a/charts/jackett/1.3.0/templates/common.yaml b/charts/home-assistant/1.3.1/templates/common.yaml similarity index 100% rename from charts/jackett/1.3.0/templates/common.yaml rename to charts/home-assistant/1.3.1/templates/common.yaml diff --git a/charts/home-assistant/1.3.0/templates/secret.yaml b/charts/home-assistant/1.3.1/templates/secret.yaml similarity index 100% rename from charts/home-assistant/1.3.0/templates/secret.yaml rename to charts/home-assistant/1.3.1/templates/secret.yaml diff --git a/charts/home-assistant/1.3.0/templates/servicemonitor.yaml b/charts/home-assistant/1.3.1/templates/servicemonitor.yaml similarity index 100% rename from charts/home-assistant/1.3.0/templates/servicemonitor.yaml rename to charts/home-assistant/1.3.1/templates/servicemonitor.yaml diff --git a/charts/home-assistant/1.3.0/test_values.yaml b/charts/home-assistant/1.3.1/test_values.yaml similarity index 99% rename from charts/home-assistant/1.3.0/test_values.yaml rename to charts/home-assistant/1.3.1/test_values.yaml index b8ec4323271..936cad06a36 100644 --- a/charts/home-assistant/1.3.0/test_values.yaml +++ b/charts/home-assistant/1.3.1/test_values.yaml @@ -115,5 +115,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - diff --git a/charts/home-assistant/1.3.0/values.yaml b/charts/home-assistant/1.3.1/values.yaml similarity index 100% rename from charts/home-assistant/1.3.0/values.yaml rename to charts/home-assistant/1.3.1/values.yaml diff --git a/charts/jackett/1.3.0/README.md b/charts/jackett/1.3.0/README.md deleted file mode 100644 index 61d6ccb72ae..00000000000 --- a/charts/jackett/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Jackett helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/jackett/1.3.0/app-readme.md b/charts/jackett/1.3.0/app-readme.md deleted file mode 100644 index bccdbb1a4da..00000000000 --- a/charts/jackett/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Jackett - -Jackett chart is a chart designed to deploy Jackett in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/jackett/1.3.0/.helmignore b/charts/jackett/1.3.1/.helmignore similarity index 100% rename from charts/jackett/1.3.0/.helmignore rename to charts/jackett/1.3.1/.helmignore diff --git a/charts/jackett/1.3.0/Chart.lock b/charts/jackett/1.3.1/Chart.lock similarity index 100% rename from charts/jackett/1.3.0/Chart.lock rename to charts/jackett/1.3.1/Chart.lock diff --git a/charts/jackett/1.3.0/Chart.yaml b/charts/jackett/1.3.1/Chart.yaml similarity index 97% rename from charts/jackett/1.3.0/Chart.yaml rename to charts/jackett/1.3.1/Chart.yaml index 3c9443d15ae..4981546f423 100644 --- a/charts/jackett/1.3.0/Chart.yaml +++ b/charts/jackett/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: version-v0.17.153 description: API Support for your favorite torrent trackers. name: jackett -version: 1.3.0 +version: 1.3.1 keywords: - jackett - torrent diff --git a/charts/jackett/1.3.0/LICENSE b/charts/jackett/1.3.1/LICENSE similarity index 100% rename from charts/jackett/1.3.0/LICENSE rename to charts/jackett/1.3.1/LICENSE diff --git a/charts/jackett/1.3.1/README.md b/charts/jackett/1.3.1/README.md new file mode 100644 index 00000000000..0b06b6827ae --- /dev/null +++ b/charts/jackett/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: version-v0.17.153](https://img.shields.io/badge/AppVersion-version--v0.17.153-informational?style=flat-square) + +API Support for your favorite torrent trackers. + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `jackett` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `jackett` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/jackett/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/jackett/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/jackett/1.3.1/app-readme.md b/charts/jackett/1.3.1/app-readme.md new file mode 100644 index 00000000000..0114ba37abe --- /dev/null +++ b/charts/jackett/1.3.1/app-readme.md @@ -0,0 +1 @@ +API Support for your favorite torrent trackers. diff --git a/charts/jackett/1.3.1/app-readme.md.gotmpl b/charts/jackett/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/jackett/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/jackett/1.3.0/charts/common-1.3.0.tgz b/charts/jackett/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/jackett/1.3.0/charts/common-1.3.0.tgz rename to charts/jackett/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/jackett/1.3.1/docs/CONFIG.md b/charts/jackett/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/jackett/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/jackett/1.3.1/docs/CONFIG.md.gotmpl b/charts/jackett/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/jackett/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/jackett/1.3.0/questions.yaml b/charts/jackett/1.3.1/questions.yaml similarity index 99% rename from charts/jackett/1.3.0/questions.yaml rename to charts/jackett/1.3.1/questions.yaml index 7b51497e413..88253ffb878 100644 --- a/charts/jackett/1.3.0/questions.yaml +++ b/charts/jackett/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -223,7 +223,7 @@ questions: schema: type: hostpath required: true - + - variable: appIngress label: "" group: "Ingress" diff --git a/charts/jellyfin/1.3.0/templates/common.yaml b/charts/jackett/1.3.1/templates/common.yaml similarity index 100% rename from charts/jellyfin/1.3.0/templates/common.yaml rename to charts/jackett/1.3.1/templates/common.yaml diff --git a/charts/jackett/1.3.0/test_values.yaml b/charts/jackett/1.3.1/test_values.yaml similarity index 99% rename from charts/jackett/1.3.0/test_values.yaml rename to charts/jackett/1.3.1/test_values.yaml index 04aefa09434..dee72753ed3 100644 --- a/charts/jackett/1.3.0/test_values.yaml +++ b/charts/jackett/1.3.1/test_values.yaml @@ -49,6 +49,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - - diff --git a/charts/jackett/1.3.0/values.yaml b/charts/jackett/1.3.1/values.yaml similarity index 99% rename from charts/jackett/1.3.0/values.yaml rename to charts/jackett/1.3.1/values.yaml index bbc076a3c1d..6bbfabb0fec 100644 --- a/charts/jackett/1.3.0/values.yaml +++ b/charts/jackett/1.3.1/values.yaml @@ -50,4 +50,3 @@ persistence: # enabled: true # emptyDir: false # datasetName: "ix-jackett_config" - diff --git a/charts/jellyfin/1.3.0/README.md b/charts/jellyfin/1.3.0/README.md deleted file mode 100644 index abfb40e275e..00000000000 --- a/charts/jellyfin/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Jellyfin helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/jellyfin/1.3.0/app-readme.md b/charts/jellyfin/1.3.0/app-readme.md deleted file mode 100644 index a9758baff00..00000000000 --- a/charts/jellyfin/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Jellyfin - -Jellyfin chart is a chart designed to deploy Jellyfin in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/jellyfin/1.3.0/.helmignore b/charts/jellyfin/1.3.1/.helmignore similarity index 100% rename from charts/jellyfin/1.3.0/.helmignore rename to charts/jellyfin/1.3.1/.helmignore diff --git a/charts/jellyfin/1.3.0/Chart.lock b/charts/jellyfin/1.3.1/Chart.lock similarity index 100% rename from charts/jellyfin/1.3.0/Chart.lock rename to charts/jellyfin/1.3.1/Chart.lock diff --git a/charts/jellyfin/1.3.0/Chart.yaml b/charts/jellyfin/1.3.1/Chart.yaml similarity index 97% rename from charts/jellyfin/1.3.0/Chart.yaml rename to charts/jellyfin/1.3.1/Chart.yaml index aed6edb4e8a..26c4ad95a1c 100644 --- a/charts/jellyfin/1.3.0/Chart.yaml +++ b/charts/jellyfin/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 10.6.4 description: Jellyfin is a Free Software Media System name: jellyfin -version: 1.3.0 +version: 1.3.1 upstream_version: 4.2.1 keywords: - jellyfin diff --git a/charts/jellyfin/1.3.0/LICENSE b/charts/jellyfin/1.3.1/LICENSE similarity index 100% rename from charts/jellyfin/1.3.0/LICENSE rename to charts/jellyfin/1.3.1/LICENSE diff --git a/charts/jellyfin/1.3.1/README.md b/charts/jellyfin/1.3.1/README.md new file mode 100644 index 00000000000..3ce4fbcb5bc --- /dev/null +++ b/charts/jellyfin/1.3.1/README.md @@ -0,0 +1,52 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 10.6.4](https://img.shields.io/badge/AppVersion-10.6.4-informational?style=flat-square) + +Jellyfin is a Free Software Media System + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `jellyfin` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `jellyfin` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/jellyfin/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/jellyfin/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/jellyfin/1.3.1/app-readme.md b/charts/jellyfin/1.3.1/app-readme.md new file mode 100644 index 00000000000..59ed9fc3aef --- /dev/null +++ b/charts/jellyfin/1.3.1/app-readme.md @@ -0,0 +1 @@ +Jellyfin is a Free Software Media System diff --git a/charts/jellyfin/1.3.1/app-readme.md.gotmpl b/charts/jellyfin/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/jellyfin/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/jellyfin/1.3.0/charts/common-1.3.0.tgz b/charts/jellyfin/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/jellyfin/1.3.0/charts/common-1.3.0.tgz rename to charts/jellyfin/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/jellyfin/1.3.1/docs/CONFIG.md b/charts/jellyfin/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/jellyfin/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/jellyfin/1.3.1/docs/CONFIG.md.gotmpl b/charts/jellyfin/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/jellyfin/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/jellyfin/1.3.0/questions.yaml b/charts/jellyfin/1.3.1/questions.yaml similarity index 99% rename from charts/jellyfin/1.3.0/questions.yaml rename to charts/jellyfin/1.3.1/questions.yaml index 7b806b08e45..fcea8183866 100644 --- a/charts/jellyfin/1.3.0/questions.yaml +++ b/charts/jellyfin/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -244,7 +244,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/kms/1.3.0/templates/common.yaml b/charts/jellyfin/1.3.1/templates/common.yaml similarity index 100% rename from charts/kms/1.3.0/templates/common.yaml rename to charts/jellyfin/1.3.1/templates/common.yaml diff --git a/charts/jellyfin/1.3.0/test_values.yaml b/charts/jellyfin/1.3.1/test_values.yaml similarity index 99% rename from charts/jellyfin/1.3.0/test_values.yaml rename to charts/jellyfin/1.3.1/test_values.yaml index 71d18bb9f0e..044bfb6907e 100644 --- a/charts/jellyfin/1.3.0/test_values.yaml +++ b/charts/jellyfin/1.3.1/test_values.yaml @@ -1,4 +1,4 @@ - + # Default values for jellyfin. image: @@ -49,5 +49,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/media" - - diff --git a/charts/jellyfin/1.3.0/values.yaml b/charts/jellyfin/1.3.1/values.yaml similarity index 99% rename from charts/jellyfin/1.3.0/values.yaml rename to charts/jellyfin/1.3.1/values.yaml index 7a2769fd911..6057436adea 100644 --- a/charts/jellyfin/1.3.0/values.yaml +++ b/charts/jellyfin/1.3.1/values.yaml @@ -1,4 +1,4 @@ - + # Default values for jellyfin. image: diff --git a/charts/kms/1.3.0/README.md b/charts/kms/1.3.0/README.md deleted file mode 100644 index 42a03d92387..00000000000 --- a/charts/kms/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# KMS helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/kms/1.3.0/app-readme.md b/charts/kms/1.3.0/app-readme.md deleted file mode 100644 index de06cd0aadc..00000000000 --- a/charts/kms/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# KMS - -KMS chart is a chart designed to deploy KMS in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/kms/1.3.0/.helmignore b/charts/kms/1.3.1/.helmignore similarity index 100% rename from charts/kms/1.3.0/.helmignore rename to charts/kms/1.3.1/.helmignore diff --git a/charts/kms/1.3.0/Chart.lock b/charts/kms/1.3.1/Chart.lock similarity index 100% rename from charts/kms/1.3.0/Chart.lock rename to charts/kms/1.3.1/Chart.lock diff --git a/charts/kms/1.3.0/Chart.yaml b/charts/kms/1.3.1/Chart.yaml similarity index 96% rename from charts/kms/1.3.0/Chart.yaml rename to charts/kms/1.3.1/Chart.yaml index 193cbb45385..121ebebb4ee 100644 --- a/charts/kms/1.3.0/Chart.yaml +++ b/charts/kms/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: Private Windows Activation Server for development and testing name: kms -version: 1.3.0 +version: 1.3.1 keywords: - kms home: https://github.com/truecharts/charts/tree/dev/charts/kms @@ -14,4 +14,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/kms/1.3.1/README.md b/charts/kms/1.3.1/README.md new file mode 100644 index 00000000000..e37987534c2 --- /dev/null +++ b/charts/kms/1.3.1/README.md @@ -0,0 +1,46 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) + +Private Windows Activation Server for development and testing + +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)** + +## Requirements + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `kms` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `kms` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/kms/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/kms/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/kms/1.3.1/app-readme.md b/charts/kms/1.3.1/app-readme.md new file mode 100644 index 00000000000..a522ca83a19 --- /dev/null +++ b/charts/kms/1.3.1/app-readme.md @@ -0,0 +1 @@ +Private Windows Activation Server for development and testing diff --git a/charts/kms/1.3.1/app-readme.md.gotmpl b/charts/kms/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/kms/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/kms/1.3.0/charts/common-1.3.0.tgz b/charts/kms/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/kms/1.3.0/charts/common-1.3.0.tgz rename to charts/kms/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/kms/1.3.1/docs/CONFIG.md b/charts/kms/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/kms/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/kms/1.3.1/docs/CONFIG.md.gotmpl b/charts/kms/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/kms/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/kms/1.3.0/questions.yaml b/charts/kms/1.3.1/questions.yaml similarity index 98% rename from charts/kms/1.3.0/questions.yaml rename to charts/kms/1.3.1/questions.yaml index 23a54c58938..b60247eaa9e 100644 --- a/charts/kms/1.3.0/questions.yaml +++ b/charts/kms/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -139,7 +139,7 @@ questions: label: "container port" schema: type: int - default: 1688 + default: 1688 editable: false - variable: nodePort label: "Node Port to expose for UI" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -223,7 +223,7 @@ questions: schema: type: hostpath required: true - + - variable: appIngress label: "" group: "Ingress" diff --git a/charts/lazylibrarian/1.3.0/templates/common.yaml b/charts/kms/1.3.1/templates/common.yaml similarity index 100% rename from charts/lazylibrarian/1.3.0/templates/common.yaml rename to charts/kms/1.3.1/templates/common.yaml diff --git a/charts/kms/1.3.0/test_values.yaml b/charts/kms/1.3.1/test_values.yaml similarity index 99% rename from charts/kms/1.3.0/test_values.yaml rename to charts/kms/1.3.1/test_values.yaml index 21f34fa475d..1067b1d9170 100644 --- a/charts/kms/1.3.0/test_values.yaml +++ b/charts/kms/1.3.1/test_values.yaml @@ -33,5 +33,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - diff --git a/charts/kms/1.3.0/values.yaml b/charts/kms/1.3.1/values.yaml similarity index 99% rename from charts/kms/1.3.0/values.yaml rename to charts/kms/1.3.1/values.yaml index 852a6594494..71896869f76 100644 --- a/charts/kms/1.3.0/values.yaml +++ b/charts/kms/1.3.1/values.yaml @@ -33,4 +33,3 @@ persistence: # enabled: true # emptyDir: false # datasetName: "config" - diff --git a/charts/lazylibrarian/1.3.0/README.md b/charts/lazylibrarian/1.3.0/README.md deleted file mode 100644 index cac549f0c55..00000000000 --- a/charts/lazylibrarian/1.3.0/README.md +++ /dev/null @@ -1,79 +0,0 @@ -# LazyLibrarian - -This is a helm chart for [LazyLibrarian](https://gitlab.com/LazyLibrarian/LazyLibrarian.git) based on the [container image provided by LinuxServer.io](https://hub.docker.com/r/linuxserver/lazylibrarian/). - -## TL;DR - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/lazylibrarian -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/lazylibrarian -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/lazylibrarian/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install lazylibrarian \ - --set env.TZ="America/New_York" \ - k8s-at-home/lazylibrarian -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install lazylibrarian k8s-at-home/lazylibrarian --values values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 4.0.1 -> 5.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. - -### Upgrading from 2.x.x to 3.x.x - -Due to migrating to a centralized common library some values in `values.yaml` have changed. - -Examples: - -* `pguid` has been moved to `env` -* `pgid` has been moved to `env` -* All dockermods have been moved to `env` -* `service.port` has been moved to `service.port.port`. -* `persistence.type` has been moved to `controllerType`. - -Refer to the library values.yaml for more configuration options. diff --git a/charts/lazylibrarian/1.3.0/app-readme.md b/charts/lazylibrarian/1.3.0/app-readme.md deleted file mode 100644 index addb7f8e62e..00000000000 --- a/charts/lazylibrarian/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# LazyLibrarian - -LazyLibrarian chart is a chart designed to deploy LazyLibrarian in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/lazylibrarian/1.3.0/.helmignore b/charts/lazylibrarian/1.3.1/.helmignore similarity index 100% rename from charts/lazylibrarian/1.3.0/.helmignore rename to charts/lazylibrarian/1.3.1/.helmignore diff --git a/charts/lazylibrarian/1.3.0/Chart.lock b/charts/lazylibrarian/1.3.1/Chart.lock similarity index 100% rename from charts/lazylibrarian/1.3.0/Chart.lock rename to charts/lazylibrarian/1.3.1/Chart.lock diff --git a/charts/lazylibrarian/1.3.0/Chart.yaml b/charts/lazylibrarian/1.3.1/Chart.yaml similarity index 97% rename from charts/lazylibrarian/1.3.0/Chart.yaml rename to charts/lazylibrarian/1.3.1/Chart.yaml index 85d4b4a7160..3326aa03971 100644 --- a/charts/lazylibrarian/1.3.0/Chart.yaml +++ b/charts/lazylibrarian/1.3.1/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: lazylibrarian description: A Helm chart for deploying LazyLibrarian -version: 1.3.0 +version: 1.3.1 appVersion: 1.7.2 upstream_version: 2.1.0 keywords: diff --git a/charts/lazylibrarian/1.3.0/LICENSE b/charts/lazylibrarian/1.3.1/LICENSE similarity index 100% rename from charts/lazylibrarian/1.3.0/LICENSE rename to charts/lazylibrarian/1.3.1/LICENSE diff --git a/charts/lazylibrarian/1.3.1/README.md b/charts/lazylibrarian/1.3.1/README.md new file mode 100644 index 00000000000..171002fa39c --- /dev/null +++ b/charts/lazylibrarian/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 1.7.2](https://img.shields.io/badge/AppVersion-1.7.2-informational?style=flat-square) + +A Helm chart for deploying LazyLibrarian + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `lazylibrarian` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `lazylibrarian` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/lazylibrarian/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/lazylibrarian/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/lazylibrarian/1.3.1/app-readme.md b/charts/lazylibrarian/1.3.1/app-readme.md new file mode 100644 index 00000000000..2aadb34876f --- /dev/null +++ b/charts/lazylibrarian/1.3.1/app-readme.md @@ -0,0 +1 @@ +A Helm chart for deploying LazyLibrarian diff --git a/charts/lazylibrarian/1.3.1/app-readme.md.gotmpl b/charts/lazylibrarian/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/lazylibrarian/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/lazylibrarian/1.3.0/charts/common-1.3.0.tgz b/charts/lazylibrarian/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/lazylibrarian/1.3.0/charts/common-1.3.0.tgz rename to charts/lazylibrarian/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/lazylibrarian/1.3.1/docs/CONFIG.md b/charts/lazylibrarian/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/lazylibrarian/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/lazylibrarian/1.3.1/docs/CONFIG.md.gotmpl b/charts/lazylibrarian/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/lazylibrarian/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/lazylibrarian/1.3.0/questions.yaml b/charts/lazylibrarian/1.3.1/questions.yaml similarity index 99% rename from charts/lazylibrarian/1.3.0/questions.yaml rename to charts/lazylibrarian/1.3.1/questions.yaml index 99d129f3059..91fcd16814a 100644 --- a/charts/lazylibrarian/1.3.0/questions.yaml +++ b/charts/lazylibrarian/1.3.1/questions.yaml @@ -112,7 +112,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -189,7 +189,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -245,7 +245,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -301,7 +301,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -433,4 +433,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/lidarr/1.3.0/templates/common.yaml b/charts/lazylibrarian/1.3.1/templates/common.yaml similarity index 100% rename from charts/lidarr/1.3.0/templates/common.yaml rename to charts/lazylibrarian/1.3.1/templates/common.yaml diff --git a/charts/lazylibrarian/1.3.0/test_values.yaml b/charts/lazylibrarian/1.3.1/test_values.yaml similarity index 99% rename from charts/lazylibrarian/1.3.0/test_values.yaml rename to charts/lazylibrarian/1.3.1/test_values.yaml index f23857dfd13..ed8e2f974e9 100644 --- a/charts/lazylibrarian/1.3.0/test_values.yaml +++ b/charts/lazylibrarian/1.3.1/test_values.yaml @@ -58,5 +58,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/downloads" - - diff --git a/charts/lazylibrarian/1.3.0/values.yaml b/charts/lazylibrarian/1.3.1/values.yaml similarity index 99% rename from charts/lazylibrarian/1.3.0/values.yaml rename to charts/lazylibrarian/1.3.1/values.yaml index 8e2fa832d11..bcd9c3ac8de 100644 --- a/charts/lazylibrarian/1.3.0/values.yaml +++ b/charts/lazylibrarian/1.3.1/values.yaml @@ -53,4 +53,3 @@ persistence: # downloads: # enabled: true # emptyDir: false - diff --git a/charts/lidarr/1.3.0/README.md b/charts/lidarr/1.3.0/README.md deleted file mode 100644 index 2da990420ee..00000000000 --- a/charts/lidarr/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Lidarr helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/lidarr/1.3.0/app-readme.md b/charts/lidarr/1.3.0/app-readme.md deleted file mode 100644 index f4543b4195e..00000000000 --- a/charts/lidarr/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Lidarr - -Lidarr chart is a chart designed to deploy Lidarr in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/lidarr/1.3.0/.helmignore b/charts/lidarr/1.3.1/.helmignore similarity index 100% rename from charts/lidarr/1.3.0/.helmignore rename to charts/lidarr/1.3.1/.helmignore diff --git a/charts/lidarr/1.3.0/Chart.lock b/charts/lidarr/1.3.1/Chart.lock similarity index 100% rename from charts/lidarr/1.3.0/Chart.lock rename to charts/lidarr/1.3.1/Chart.lock diff --git a/charts/lidarr/1.3.0/Chart.yaml b/charts/lidarr/1.3.1/Chart.yaml similarity index 97% rename from charts/lidarr/1.3.0/Chart.yaml rename to charts/lidarr/1.3.1/Chart.yaml index 2c26115a3c7..dcc19ec812b 100644 --- a/charts/lidarr/1.3.0/Chart.yaml +++ b/charts/lidarr/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.8.0.1886 description: Looks and smells like Sonarr but made for music name: lidarr -version: 1.3.0 +version: 1.3.1 keywords: - lidarr - torrent diff --git a/charts/lidarr/1.3.0/LICENSE b/charts/lidarr/1.3.1/LICENSE similarity index 100% rename from charts/lidarr/1.3.0/LICENSE rename to charts/lidarr/1.3.1/LICENSE diff --git a/charts/lidarr/1.3.1/README.md b/charts/lidarr/1.3.1/README.md new file mode 100644 index 00000000000..e0d34749723 --- /dev/null +++ b/charts/lidarr/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 0.8.0.1886](https://img.shields.io/badge/AppVersion-0.8.0.1886-informational?style=flat-square) + +Looks and smells like Sonarr but made for music + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `lidarr` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `lidarr` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/lidarr/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/lidarr/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/lidarr/1.3.1/app-readme.md b/charts/lidarr/1.3.1/app-readme.md new file mode 100644 index 00000000000..67967314442 --- /dev/null +++ b/charts/lidarr/1.3.1/app-readme.md @@ -0,0 +1 @@ +Looks and smells like Sonarr but made for music diff --git a/charts/lidarr/1.3.1/app-readme.md.gotmpl b/charts/lidarr/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/lidarr/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/lidarr/1.3.0/charts/common-1.3.0.tgz b/charts/lidarr/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/lidarr/1.3.0/charts/common-1.3.0.tgz rename to charts/lidarr/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/lidarr/1.3.1/docs/CONFIG.md b/charts/lidarr/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/lidarr/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/lidarr/1.3.1/docs/CONFIG.md.gotmpl b/charts/lidarr/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/lidarr/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/lidarr/1.3.0/questions.yaml b/charts/lidarr/1.3.1/questions.yaml similarity index 99% rename from charts/lidarr/1.3.0/questions.yaml rename to charts/lidarr/1.3.1/questions.yaml index c0bcff1e221..2677f703673 100644 --- a/charts/lidarr/1.3.0/questions.yaml +++ b/charts/lidarr/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -244,7 +244,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -300,7 +300,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -432,4 +432,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/lychee/1.3.0/templates/common.yaml b/charts/lidarr/1.3.1/templates/common.yaml similarity index 100% rename from charts/lychee/1.3.0/templates/common.yaml rename to charts/lidarr/1.3.1/templates/common.yaml diff --git a/charts/lidarr/1.3.0/test_values.yaml b/charts/lidarr/1.3.1/test_values.yaml similarity index 99% rename from charts/lidarr/1.3.0/test_values.yaml rename to charts/lidarr/1.3.1/test_values.yaml index 44c45b6a2ad..1e462d65deb 100644 --- a/charts/lidarr/1.3.0/test_values.yaml +++ b/charts/lidarr/1.3.1/test_values.yaml @@ -59,6 +59,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/downloads" - - - diff --git a/charts/lidarr/1.3.0/values.yaml b/charts/lidarr/1.3.1/values.yaml similarity index 99% rename from charts/lidarr/1.3.0/values.yaml rename to charts/lidarr/1.3.1/values.yaml index a01b1230607..1c9a439ac77 100644 --- a/charts/lidarr/1.3.0/values.yaml +++ b/charts/lidarr/1.3.1/values.yaml @@ -54,4 +54,3 @@ persistence: # downloads: # enabled: true # emptyDir: false - diff --git a/charts/lychee/1.3.0/README.md b/charts/lychee/1.3.0/README.md deleted file mode 100644 index 151955d7878..00000000000 --- a/charts/lychee/1.3.0/README.md +++ /dev/null @@ -1,67 +0,0 @@ -# Lychee - -This is a helm chart for [Lychee](https://github.com/LycheeOrg/Lychee). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/lychee -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/lychee -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/lychee/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install lychee \ - --set env.TZ="America/New_York" \ - k8s-at-home/lychee -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install lychee k8s-at-home/lychee --values values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 1.0.1 -> 2.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. diff --git a/charts/lychee/1.3.0/app-readme.md b/charts/lychee/1.3.0/app-readme.md deleted file mode 100644 index 7e2da78a676..00000000000 --- a/charts/lychee/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The lychee App is designed to deploy lychee in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/lychee/1.3.0/.helmignore b/charts/lychee/1.3.1/.helmignore similarity index 100% rename from charts/lychee/1.3.0/.helmignore rename to charts/lychee/1.3.1/.helmignore diff --git a/charts/lychee/1.3.0/Chart.lock b/charts/lychee/1.3.1/Chart.lock similarity index 100% rename from charts/lychee/1.3.0/Chart.lock rename to charts/lychee/1.3.1/Chart.lock diff --git a/charts/lychee/1.3.0/Chart.yaml b/charts/lychee/1.3.1/Chart.yaml similarity index 96% rename from charts/lychee/1.3.0/Chart.yaml rename to charts/lychee/1.3.1/Chart.yaml index 6314ae253ba..677f880348a 100644 --- a/charts/lychee/1.3.0/Chart.yaml +++ b/charts/lychee/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 4.0.8 description: Lychee is a free photo-management tool, which runs on your server or web-space name: lychee -version: 1.3.0 +version: 1.3.1 upstream_version: 2.3.1 keywords: - lychee @@ -19,4 +19,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/lychee/1.3.0/LICENSE b/charts/lychee/1.3.1/LICENSE similarity index 100% rename from charts/lychee/1.3.0/LICENSE rename to charts/lychee/1.3.1/LICENSE diff --git a/charts/lychee/1.3.1/README.md b/charts/lychee/1.3.1/README.md new file mode 100644 index 00000000000..19609d41f30 --- /dev/null +++ b/charts/lychee/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 4.0.8](https://img.shields.io/badge/AppVersion-4.0.8-informational?style=flat-square) + +Lychee is a free photo-management tool, which runs on your server or web-space + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `lychee` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `lychee` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/lychee/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/lychee/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/lychee/1.3.1/app-readme.md b/charts/lychee/1.3.1/app-readme.md new file mode 100644 index 00000000000..8d3611974d3 --- /dev/null +++ b/charts/lychee/1.3.1/app-readme.md @@ -0,0 +1 @@ +Lychee is a free photo-management tool, which runs on your server or web-space diff --git a/charts/lychee/1.3.1/app-readme.md.gotmpl b/charts/lychee/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/lychee/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/lychee/1.3.0/charts/common-1.3.0.tgz b/charts/lychee/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/lychee/1.3.0/charts/common-1.3.0.tgz rename to charts/lychee/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/lychee/1.3.1/docs/CONFIG.md b/charts/lychee/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/lychee/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/lychee/1.3.1/docs/CONFIG.md.gotmpl b/charts/lychee/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/lychee/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/lychee/1.3.0/questions.yaml b/charts/lychee/1.3.1/questions.yaml similarity index 99% rename from charts/lychee/1.3.0/questions.yaml rename to charts/lychee/1.3.1/questions.yaml index e6f55b47299..815ce8a593c 100644 --- a/charts/lychee/1.3.0/questions.yaml +++ b/charts/lychee/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -187,7 +187,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -243,7 +243,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -299,7 +299,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/navidrome/1.3.0/templates/NOTES.txt b/charts/lychee/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/navidrome/1.3.0/templates/NOTES.txt rename to charts/lychee/1.3.1/templates/NOTES.txt diff --git a/charts/navidrome/1.3.0/templates/common.yaml b/charts/lychee/1.3.1/templates/common.yaml similarity index 100% rename from charts/navidrome/1.3.0/templates/common.yaml rename to charts/lychee/1.3.1/templates/common.yaml diff --git a/charts/lychee/1.3.0/test_values.yaml b/charts/lychee/1.3.1/test_values.yaml similarity index 99% rename from charts/lychee/1.3.0/test_values.yaml rename to charts/lychee/1.3.1/test_values.yaml index 626b5ac57d2..c252ab2d473 100644 --- a/charts/lychee/1.3.0/test_values.yaml +++ b/charts/lychee/1.3.1/test_values.yaml @@ -70,7 +70,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + appVolumeMounts: config: @@ -88,4 +88,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/sym" - diff --git a/charts/lychee/1.3.0/values.yaml b/charts/lychee/1.3.1/values.yaml similarity index 98% rename from charts/lychee/1.3.0/values.yaml rename to charts/lychee/1.3.1/values.yaml index cff044738c5..d35055b33b6 100644 --- a/charts/lychee/1.3.0/values.yaml +++ b/charts/lychee/1.3.1/values.yaml @@ -70,7 +70,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + #appVolumeMounts: # config: @@ -81,4 +81,4 @@ appIngressEnabled: false # emptyDir: false # sym: # enabled: false -# emptyDir: false \ No newline at end of file +# emptyDir: false diff --git a/charts/navidrome/1.3.0/README.md b/charts/navidrome/1.3.0/README.md deleted file mode 100644 index 216653a809a..00000000000 --- a/charts/navidrome/1.3.0/README.md +++ /dev/null @@ -1,67 +0,0 @@ -# Navidrome - -This is a helm chart for [Navidrome](https://github.com/deluan/navidrome). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/navidrome -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/navidrome -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/navidrome/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install navidrome \ - --set env.TZ="America/New_York" \ - k8s-at-home/navidrome -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install navidrome k8s-at-home/navidrome --values values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 1.0.1 -> 2.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. diff --git a/charts/navidrome/1.3.0/app-readme.md b/charts/navidrome/1.3.0/app-readme.md deleted file mode 100644 index dcd8832d456..00000000000 --- a/charts/navidrome/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The navidrome App is designed to deploy navidrome in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/navidrome/1.3.0/.helmignore b/charts/navidrome/1.3.1/.helmignore similarity index 100% rename from charts/navidrome/1.3.0/.helmignore rename to charts/navidrome/1.3.1/.helmignore diff --git a/charts/navidrome/1.3.0/Chart.lock b/charts/navidrome/1.3.1/Chart.lock similarity index 100% rename from charts/navidrome/1.3.0/Chart.lock rename to charts/navidrome/1.3.1/Chart.lock diff --git a/charts/navidrome/1.3.0/Chart.yaml b/charts/navidrome/1.3.1/Chart.yaml similarity index 96% rename from charts/navidrome/1.3.0/Chart.yaml rename to charts/navidrome/1.3.1/Chart.yaml index 7363956a12f..477de8e4a29 100644 --- a/charts/navidrome/1.3.0/Chart.yaml +++ b/charts/navidrome/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.39.0 description: Navidrome is an open source web-based music collection server and streamer name: navidrome -version: 1.3.0 +version: 1.3.1 upstream_version: 2.3.1 keywords: - navidrome @@ -19,4 +19,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/navidrome/1.3.0/LICENSE b/charts/navidrome/1.3.1/LICENSE similarity index 100% rename from charts/navidrome/1.3.0/LICENSE rename to charts/navidrome/1.3.1/LICENSE diff --git a/charts/navidrome/1.3.1/README.md b/charts/navidrome/1.3.1/README.md new file mode 100644 index 00000000000..59d9513ee3e --- /dev/null +++ b/charts/navidrome/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 0.39.0](https://img.shields.io/badge/AppVersion-0.39.0-informational?style=flat-square) + +Navidrome is an open source web-based music collection server and streamer + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `navidrome` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `navidrome` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/navidrome/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/navidrome/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/navidrome/1.3.1/app-readme.md b/charts/navidrome/1.3.1/app-readme.md new file mode 100644 index 00000000000..925674d2d74 --- /dev/null +++ b/charts/navidrome/1.3.1/app-readme.md @@ -0,0 +1 @@ +Navidrome is an open source web-based music collection server and streamer diff --git a/charts/navidrome/1.3.1/app-readme.md.gotmpl b/charts/navidrome/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/navidrome/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/navidrome/1.3.0/charts/common-1.3.0.tgz b/charts/navidrome/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/navidrome/1.3.0/charts/common-1.3.0.tgz rename to charts/navidrome/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/navidrome/1.3.1/docs/CONFIG.md b/charts/navidrome/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/navidrome/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/navidrome/1.3.1/docs/CONFIG.md.gotmpl b/charts/navidrome/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/navidrome/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/navidrome/1.3.0/questions.yaml b/charts/navidrome/1.3.1/questions.yaml similarity index 99% rename from charts/navidrome/1.3.0/questions.yaml rename to charts/navidrome/1.3.1/questions.yaml index 81aa9ff6c4c..6fa7b349cec 100644 --- a/charts/navidrome/1.3.0/questions.yaml +++ b/charts/navidrome/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -245,7 +245,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -378,4 +378,3 @@ questions: schema: type: string default: "" - diff --git a/charts/nzbget/1.3.0/templates/NOTES.txt b/charts/navidrome/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/nzbget/1.3.0/templates/NOTES.txt rename to charts/navidrome/1.3.1/templates/NOTES.txt diff --git a/charts/node-red/1.3.0/templates/common.yaml b/charts/navidrome/1.3.1/templates/common.yaml similarity index 100% rename from charts/node-red/1.3.0/templates/common.yaml rename to charts/navidrome/1.3.1/templates/common.yaml diff --git a/charts/navidrome/1.3.0/test_values.yaml b/charts/navidrome/1.3.1/test_values.yaml similarity index 99% rename from charts/navidrome/1.3.0/test_values.yaml rename to charts/navidrome/1.3.1/test_values.yaml index 8a996830fbd..8018d4a4164 100644 --- a/charts/navidrome/1.3.0/test_values.yaml +++ b/charts/navidrome/1.3.1/test_values.yaml @@ -57,7 +57,7 @@ persistence: appIngressEnabled: false - + appVolumeMounts: config: @@ -70,4 +70,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/music" - \ No newline at end of file diff --git a/charts/navidrome/1.3.0/values.yaml b/charts/navidrome/1.3.1/values.yaml similarity index 99% rename from charts/navidrome/1.3.0/values.yaml rename to charts/navidrome/1.3.1/values.yaml index 8ac576758bf..099ad2f436b 100644 --- a/charts/navidrome/1.3.0/values.yaml +++ b/charts/navidrome/1.3.1/values.yaml @@ -57,7 +57,7 @@ persistence: appIngressEnabled: false - + # appVolumeMounts: # config: @@ -66,4 +66,3 @@ appIngressEnabled: false # music: # enabled: false # emptyDir: false - \ No newline at end of file diff --git a/charts/node-red/1.3.0/README.md b/charts/node-red/1.3.0/README.md deleted file mode 100644 index dd79012e476..00000000000 --- a/charts/node-red/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Node-Red helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/node-red/1.3.0/app-readme.md b/charts/node-red/1.3.0/app-readme.md deleted file mode 100644 index 1ec1432f582..00000000000 --- a/charts/node-red/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Node-Red - -Node-Red chart is a chart designed to deploy Node-Red in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/node-red/1.3.0/.helmignore b/charts/node-red/1.3.1/.helmignore similarity index 100% rename from charts/node-red/1.3.0/.helmignore rename to charts/node-red/1.3.1/.helmignore diff --git a/charts/node-red/1.3.0/Chart.lock b/charts/node-red/1.3.1/Chart.lock similarity index 100% rename from charts/node-red/1.3.0/Chart.lock rename to charts/node-red/1.3.1/Chart.lock diff --git a/charts/node-red/1.3.0/Chart.yaml b/charts/node-red/1.3.1/Chart.yaml similarity index 97% rename from charts/node-red/1.3.0/Chart.yaml rename to charts/node-red/1.3.1/Chart.yaml index 16c9a23c975..7f74e088b4e 100644 --- a/charts/node-red/1.3.0/Chart.yaml +++ b/charts/node-red/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.2.5 description: Node-RED is low-code programming for event-driven applications name: node-red -version: 1.3.0 +version: 1.3.1 upstream_version: 5.2.1 keywords: - nodered diff --git a/charts/node-red/1.3.0/LICENSE b/charts/node-red/1.3.1/LICENSE similarity index 100% rename from charts/node-red/1.3.0/LICENSE rename to charts/node-red/1.3.1/LICENSE diff --git a/charts/node-red/1.3.1/README.md b/charts/node-red/1.3.1/README.md new file mode 100644 index 00000000000..bb9b78282c3 --- /dev/null +++ b/charts/node-red/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 1.2.5](https://img.shields.io/badge/AppVersion-1.2.5-informational?style=flat-square) + +Node-RED is low-code programming for event-driven applications + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `node-red` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `node-red` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/node-red/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/node-red/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/node-red/1.3.1/app-readme.md b/charts/node-red/1.3.1/app-readme.md new file mode 100644 index 00000000000..ddc299d838a --- /dev/null +++ b/charts/node-red/1.3.1/app-readme.md @@ -0,0 +1 @@ +Node-RED is low-code programming for event-driven applications diff --git a/charts/node-red/1.3.1/app-readme.md.gotmpl b/charts/node-red/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/node-red/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/node-red/1.3.0/charts/common-1.3.0.tgz b/charts/node-red/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/node-red/1.3.0/charts/common-1.3.0.tgz rename to charts/node-red/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/node-red/1.3.1/docs/CONFIG.md b/charts/node-red/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/node-red/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/node-red/1.3.1/docs/CONFIG.md.gotmpl b/charts/node-red/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/node-red/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/node-red/1.3.0/questions.yaml b/charts/node-red/1.3.1/questions.yaml similarity index 99% rename from charts/node-red/1.3.0/questions.yaml rename to charts/node-red/1.3.1/questions.yaml index fe1dbfa1e38..ffc70cc44b2 100644 --- a/charts/node-red/1.3.0/questions.yaml +++ b/charts/node-red/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/nzbget/1.3.0/templates/common.yaml b/charts/node-red/1.3.1/templates/common.yaml similarity index 100% rename from charts/nzbget/1.3.0/templates/common.yaml rename to charts/node-red/1.3.1/templates/common.yaml diff --git a/charts/node-red/1.3.0/test_values.yaml b/charts/node-red/1.3.1/test_values.yaml similarity index 99% rename from charts/node-red/1.3.0/test_values.yaml rename to charts/node-red/1.3.1/test_values.yaml index 763184809e7..0d1c4f5c343 100644 --- a/charts/node-red/1.3.0/test_values.yaml +++ b/charts/node-red/1.3.1/test_values.yaml @@ -38,5 +38,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - diff --git a/charts/node-red/1.3.0/values.yaml b/charts/node-red/1.3.1/values.yaml similarity index 99% rename from charts/node-red/1.3.0/values.yaml rename to charts/node-red/1.3.1/values.yaml index 2465de0c0d7..3b5c0461095 100644 --- a/charts/node-red/1.3.0/values.yaml +++ b/charts/node-red/1.3.1/values.yaml @@ -38,4 +38,3 @@ persistence: # data: # enabled: true # emptyDir: false - diff --git a/charts/nzbget/1.3.0/README.md b/charts/nzbget/1.3.0/README.md deleted file mode 100644 index 13ac6f5863a..00000000000 --- a/charts/nzbget/1.3.0/README.md +++ /dev/null @@ -1,84 +0,0 @@ -# NZBGet - -This is a helm chart for [NZBGet](https://nzbget.net/). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/nzbget -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/nzbget -``` - -The default login details (change ASAP) are: - -* login:nzbget -* password:tegbzn6789 - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/nzbget/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install nzbget \ - --set env.TZ="America/New_York" \ - k8s-at-home/nzbget -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install radarr k8s-at-home/nzbget --values values.yaml -``` - -These values will be nested as it is a dependency, for example -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 4.0.1 -> 5.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. - -### Upgrading from 5.x.x to 6.x.x - -Due to migrating to a centralized common library some values in `values.yaml` have changed. - -Examples: - -* `service.port` has been moved to `service.port.port`. -* `persistence.type` has been moved to `controllerType`. - -Refer to the library values.yaml for more configuration options. diff --git a/charts/nzbget/1.3.0/app-readme.md b/charts/nzbget/1.3.0/app-readme.md deleted file mode 100644 index d16dd882ca1..00000000000 --- a/charts/nzbget/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The nzbget App is designed to deploy nzbget in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/nzbget/1.3.0/.helmignore b/charts/nzbget/1.3.1/.helmignore similarity index 100% rename from charts/nzbget/1.3.0/.helmignore rename to charts/nzbget/1.3.1/.helmignore diff --git a/charts/nzbget/1.3.0/Chart.lock b/charts/nzbget/1.3.1/Chart.lock similarity index 100% rename from charts/nzbget/1.3.0/Chart.lock rename to charts/nzbget/1.3.1/Chart.lock diff --git a/charts/nzbget/1.3.0/Chart.yaml b/charts/nzbget/1.3.1/Chart.yaml similarity index 96% rename from charts/nzbget/1.3.0/Chart.yaml rename to charts/nzbget/1.3.1/Chart.yaml index 24a645678cf..8e8f0fb7f0d 100644 --- a/charts/nzbget/1.3.0/Chart.yaml +++ b/charts/nzbget/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v21.0 description: NZBGet is a Usenet downloader client name: nzbget -version: 1.3.0 +version: 1.3.1 upstream_version: 7.3.1 keywords: - nzbget @@ -18,4 +18,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/nzbget/1.3.0/LICENSE b/charts/nzbget/1.3.1/LICENSE similarity index 100% rename from charts/nzbget/1.3.0/LICENSE rename to charts/nzbget/1.3.1/LICENSE diff --git a/charts/nzbget/1.3.1/README.md b/charts/nzbget/1.3.1/README.md new file mode 100644 index 00000000000..0fe947e6324 --- /dev/null +++ b/charts/nzbget/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: v21.0](https://img.shields.io/badge/AppVersion-v21.0-informational?style=flat-square) + +NZBGet is a Usenet downloader client + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `nzbget` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `nzbget` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/nzbget/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/nzbget/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/nzbget/1.3.1/app-readme.md b/charts/nzbget/1.3.1/app-readme.md new file mode 100644 index 00000000000..91df8011933 --- /dev/null +++ b/charts/nzbget/1.3.1/app-readme.md @@ -0,0 +1 @@ +NZBGet is a Usenet downloader client diff --git a/charts/nzbget/1.3.1/app-readme.md.gotmpl b/charts/nzbget/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/nzbget/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/nzbget/1.3.0/charts/common-1.3.0.tgz b/charts/nzbget/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/nzbget/1.3.0/charts/common-1.3.0.tgz rename to charts/nzbget/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/nzbget/1.3.1/docs/CONFIG.md b/charts/nzbget/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/nzbget/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/nzbget/1.3.1/docs/CONFIG.md.gotmpl b/charts/nzbget/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/nzbget/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/nzbget/1.3.0/questions.yaml b/charts/nzbget/1.3.1/questions.yaml similarity index 99% rename from charts/nzbget/1.3.0/questions.yaml rename to charts/nzbget/1.3.1/questions.yaml index 05b0ed44089..35b5809e557 100644 --- a/charts/nzbget/1.3.0/questions.yaml +++ b/charts/nzbget/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -187,7 +187,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -243,7 +243,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -376,4 +376,3 @@ questions: schema: type: string default: "" - diff --git a/charts/nzbhydra/1.3.0/templates/NOTES.txt b/charts/nzbget/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/nzbhydra/1.3.0/templates/NOTES.txt rename to charts/nzbget/1.3.1/templates/NOTES.txt diff --git a/charts/nzbhydra/1.3.0/templates/common.yaml b/charts/nzbget/1.3.1/templates/common.yaml similarity index 100% rename from charts/nzbhydra/1.3.0/templates/common.yaml rename to charts/nzbget/1.3.1/templates/common.yaml diff --git a/charts/nzbget/1.3.0/test_values.yaml b/charts/nzbget/1.3.1/test_values.yaml similarity index 99% rename from charts/nzbget/1.3.0/test_values.yaml rename to charts/nzbget/1.3.1/test_values.yaml index ed1d0c82c43..35f2c68ae5a 100644 --- a/charts/nzbget/1.3.0/test_values.yaml +++ b/charts/nzbget/1.3.1/test_values.yaml @@ -52,7 +52,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + appVolumeMounts: config: enabled: true @@ -69,4 +69,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/downloads" - diff --git a/charts/nzbget/1.3.0/values.yaml b/charts/nzbget/1.3.1/values.yaml similarity index 99% rename from charts/nzbget/1.3.0/values.yaml rename to charts/nzbget/1.3.1/values.yaml index 6b576de7c37..39d0881353e 100644 --- a/charts/nzbget/1.3.0/values.yaml +++ b/charts/nzbget/1.3.1/values.yaml @@ -52,7 +52,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + # appVolumeMounts: # config: # enabled: false diff --git a/charts/nzbhydra/1.3.0/README.md b/charts/nzbhydra/1.3.0/README.md deleted file mode 100644 index 3131edbfd3a..00000000000 --- a/charts/nzbhydra/1.3.0/README.md +++ /dev/null @@ -1,78 +0,0 @@ -# nzbhydra - -This is a helm chart for [nzbhydra](https://github.com/theotherp/nzbhydra). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/nzbhydra -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/nzbhydra -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/nzbhydra/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install nzbhydra \ - --set env.TZ="America/New_York" \ - k8s-at-home/nzbhydra -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install nzbhydra k8s-at-home/nzbhydra --values values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 4.0.1 -> 5.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. - -### Upgrading from 3.x.x to 4.x.x - -Due to migrating to a centralized common library some values in `values.yaml` have changed. - -Examples: - -* `service.port` has been moved to `service.port.port`. -* `persistence.type` has been moved to `controllerType`. - -Refer to the library values.yaml for more configuration options. diff --git a/charts/nzbhydra/1.3.0/app-readme.md b/charts/nzbhydra/1.3.0/app-readme.md deleted file mode 100644 index f6c54b6ccdb..00000000000 --- a/charts/nzbhydra/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The nzbhydra App is designed to deploy nzbhydra in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/nzbhydra/1.3.0/.helmignore b/charts/nzbhydra/1.3.1/.helmignore similarity index 100% rename from charts/nzbhydra/1.3.0/.helmignore rename to charts/nzbhydra/1.3.1/.helmignore diff --git a/charts/nzbhydra/1.3.0/Chart.lock b/charts/nzbhydra/1.3.1/Chart.lock similarity index 100% rename from charts/nzbhydra/1.3.0/Chart.lock rename to charts/nzbhydra/1.3.1/Chart.lock diff --git a/charts/nzbhydra/1.3.0/Chart.yaml b/charts/nzbhydra/1.3.1/Chart.yaml similarity index 96% rename from charts/nzbhydra/1.3.0/Chart.yaml rename to charts/nzbhydra/1.3.1/Chart.yaml index ff6558d8176..add2a007e74 100644 --- a/charts/nzbhydra/1.3.0/Chart.yaml +++ b/charts/nzbhydra/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.8.1 description: Usenet meta search name: nzbhydra -version: 1.3.0 +version: 1.3.1 upstream_version: 5.3.1 keywords: - nzbhydra @@ -18,4 +18,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/nzbhydra/1.3.0/LICENSE b/charts/nzbhydra/1.3.1/LICENSE similarity index 100% rename from charts/nzbhydra/1.3.0/LICENSE rename to charts/nzbhydra/1.3.1/LICENSE diff --git a/charts/nzbhydra/1.3.1/README.md b/charts/nzbhydra/1.3.1/README.md new file mode 100644 index 00000000000..5b923b2c3ec --- /dev/null +++ b/charts/nzbhydra/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: v3.8.1](https://img.shields.io/badge/AppVersion-v3.8.1-informational?style=flat-square) + +Usenet meta search + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `nzbhydra` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `nzbhydra` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/nzbhydra/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/nzbhydra/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/nzbhydra/1.3.1/app-readme.md b/charts/nzbhydra/1.3.1/app-readme.md new file mode 100644 index 00000000000..17a981481e6 --- /dev/null +++ b/charts/nzbhydra/1.3.1/app-readme.md @@ -0,0 +1 @@ +Usenet meta search diff --git a/charts/nzbhydra/1.3.1/app-readme.md.gotmpl b/charts/nzbhydra/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/nzbhydra/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/nzbhydra/1.3.0/charts/common-1.3.0.tgz b/charts/nzbhydra/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/nzbhydra/1.3.0/charts/common-1.3.0.tgz rename to charts/nzbhydra/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/nzbhydra/1.3.1/docs/CONFIG.md b/charts/nzbhydra/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/nzbhydra/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/nzbhydra/1.3.1/docs/CONFIG.md.gotmpl b/charts/nzbhydra/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/nzbhydra/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/nzbhydra/1.3.0/questions.yaml b/charts/nzbhydra/1.3.1/questions.yaml similarity index 99% rename from charts/nzbhydra/1.3.0/questions.yaml rename to charts/nzbhydra/1.3.1/questions.yaml index 3eecd8a38f8..a022986ed96 100644 --- a/charts/nzbhydra/1.3.0/questions.yaml +++ b/charts/nzbhydra/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -187,7 +187,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -243,7 +243,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -376,4 +376,3 @@ questions: schema: type: string default: "" - diff --git a/charts/qbittorrent/1.3.0/templates/NOTES.txt b/charts/nzbhydra/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/qbittorrent/1.3.0/templates/NOTES.txt rename to charts/nzbhydra/1.3.1/templates/NOTES.txt diff --git a/charts/ombi/1.3.0/templates/common.yaml b/charts/nzbhydra/1.3.1/templates/common.yaml similarity index 100% rename from charts/ombi/1.3.0/templates/common.yaml rename to charts/nzbhydra/1.3.1/templates/common.yaml diff --git a/charts/nzbhydra/1.3.0/test_values.yaml b/charts/nzbhydra/1.3.1/test_values.yaml similarity index 98% rename from charts/nzbhydra/1.3.0/test_values.yaml rename to charts/nzbhydra/1.3.1/test_values.yaml index 562876f99cf..67c12bfb8c8 100644 --- a/charts/nzbhydra/1.3.0/test_values.yaml +++ b/charts/nzbhydra/1.3.1/test_values.yaml @@ -57,9 +57,9 @@ persistence: config: enabled: false emptyDir: false - + appIngressEnabled: false - + appVolumeMounts: config: @@ -67,5 +67,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - diff --git a/charts/nzbhydra/1.3.0/values.yaml b/charts/nzbhydra/1.3.1/values.yaml similarity index 99% rename from charts/nzbhydra/1.3.0/values.yaml rename to charts/nzbhydra/1.3.1/values.yaml index ff8afb0254c..01840df65f7 100644 --- a/charts/nzbhydra/1.3.0/values.yaml +++ b/charts/nzbhydra/1.3.1/values.yaml @@ -57,13 +57,11 @@ persistence: config: enabled: false emptyDir: false - + appIngressEnabled: false - + #appVolumeMounts: # config: # enabled: false # emptyDir: false - - diff --git a/charts/ombi/1.3.0/README.md b/charts/ombi/1.3.0/README.md deleted file mode 100644 index f3cabe4afb9..00000000000 --- a/charts/ombi/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Ombi helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/ombi/1.3.0/app-readme.md b/charts/ombi/1.3.0/app-readme.md deleted file mode 100644 index 8264df31788..00000000000 --- a/charts/ombi/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Ombi - -Ombi chart is a chart designed to deploy Ombi in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/ombi/1.3.0/.helmignore b/charts/ombi/1.3.1/.helmignore similarity index 100% rename from charts/ombi/1.3.0/.helmignore rename to charts/ombi/1.3.1/.helmignore diff --git a/charts/ombi/1.3.0/Chart.lock b/charts/ombi/1.3.1/Chart.lock similarity index 100% rename from charts/ombi/1.3.0/Chart.lock rename to charts/ombi/1.3.1/Chart.lock diff --git a/charts/ombi/1.3.0/Chart.yaml b/charts/ombi/1.3.1/Chart.yaml similarity index 97% rename from charts/ombi/1.3.0/Chart.yaml rename to charts/ombi/1.3.1/Chart.yaml index 90c44ae6796..0f1de7d5e04 100644 --- a/charts/ombi/1.3.0/Chart.yaml +++ b/charts/ombi/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 4.0.681 description: Want a Movie or TV Show on Plex or Emby? Use Ombi! name: ombi -version: 1.3.0 +version: 1.3.1 keywords: - ombi - plex diff --git a/charts/ombi/1.3.0/LICENSE b/charts/ombi/1.3.1/LICENSE similarity index 100% rename from charts/ombi/1.3.0/LICENSE rename to charts/ombi/1.3.1/LICENSE diff --git a/charts/ombi/1.3.1/README.md b/charts/ombi/1.3.1/README.md new file mode 100644 index 00000000000..e240406752f --- /dev/null +++ b/charts/ombi/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 4.0.681](https://img.shields.io/badge/AppVersion-4.0.681-informational?style=flat-square) + +Want a Movie or TV Show on Plex or Emby? Use Ombi! + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `ombi` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `ombi` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/ombi/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/ombi/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/ombi/1.3.1/app-readme.md b/charts/ombi/1.3.1/app-readme.md new file mode 100644 index 00000000000..ca657592236 --- /dev/null +++ b/charts/ombi/1.3.1/app-readme.md @@ -0,0 +1 @@ +Want a Movie or TV Show on Plex or Emby? Use Ombi! diff --git a/charts/ombi/1.3.1/app-readme.md.gotmpl b/charts/ombi/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/ombi/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/ombi/1.3.0/charts/common-1.3.0.tgz b/charts/ombi/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/ombi/1.3.0/charts/common-1.3.0.tgz rename to charts/ombi/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/ombi/1.3.1/docs/CONFIG.md b/charts/ombi/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/ombi/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/ombi/1.3.1/docs/CONFIG.md.gotmpl b/charts/ombi/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/ombi/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/ombi/1.3.0/questions.yaml b/charts/ombi/1.3.1/questions.yaml similarity index 99% rename from charts/ombi/1.3.0/questions.yaml rename to charts/ombi/1.3.1/questions.yaml index 1e18505d42a..a6d4a341e9b 100644 --- a/charts/ombi/1.3.0/questions.yaml +++ b/charts/ombi/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -320,4 +320,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/organizr/1.3.0/templates/common.yaml b/charts/ombi/1.3.1/templates/common.yaml similarity index 100% rename from charts/organizr/1.3.0/templates/common.yaml rename to charts/ombi/1.3.1/templates/common.yaml diff --git a/charts/ombi/1.3.0/test_values.yaml b/charts/ombi/1.3.1/test_values.yaml similarity index 99% rename from charts/ombi/1.3.0/test_values.yaml rename to charts/ombi/1.3.1/test_values.yaml index fbdec297ff0..0b6ab2679fa 100644 --- a/charts/ombi/1.3.0/test_values.yaml +++ b/charts/ombi/1.3.1/test_values.yaml @@ -1,4 +1,4 @@ - + # Default values for Ombi. image: @@ -45,5 +45,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - diff --git a/charts/ombi/1.3.0/values.yaml b/charts/ombi/1.3.1/values.yaml similarity index 99% rename from charts/ombi/1.3.0/values.yaml rename to charts/ombi/1.3.1/values.yaml index 87dd33544a7..ab470885e69 100644 --- a/charts/ombi/1.3.0/values.yaml +++ b/charts/ombi/1.3.1/values.yaml @@ -1,4 +1,4 @@ - + # Default values for Ombi. image: diff --git a/charts/organizr/1.3.0/.helmignore b/charts/organizr/1.3.1/.helmignore similarity index 100% rename from charts/organizr/1.3.0/.helmignore rename to charts/organizr/1.3.1/.helmignore diff --git a/charts/organizr/1.3.0/Chart.lock b/charts/organizr/1.3.1/Chart.lock similarity index 100% rename from charts/organizr/1.3.0/Chart.lock rename to charts/organizr/1.3.1/Chart.lock diff --git a/charts/organizr/1.3.0/Chart.yaml b/charts/organizr/1.3.1/Chart.yaml similarity index 97% rename from charts/organizr/1.3.0/Chart.yaml rename to charts/organizr/1.3.1/Chart.yaml index f1e672097b1..47da439c1d3 100644 --- a/charts/organizr/1.3.0/Chart.yaml +++ b/charts/organizr/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: HTPC/Homelab Services Organizer name: organizr -version: 1.3.0 +version: 1.3.1 upstream_version: 3.2.1 keywords: - organizr diff --git a/charts/organizr/1.3.0/LICENSE b/charts/organizr/1.3.1/LICENSE similarity index 100% rename from charts/organizr/1.3.0/LICENSE rename to charts/organizr/1.3.1/LICENSE diff --git a/charts/organizr/1.3.0/README.md b/charts/organizr/1.3.1/README.md similarity index 100% rename from charts/organizr/1.3.0/README.md rename to charts/organizr/1.3.1/README.md diff --git a/charts/organizr/1.3.1/README.md.gotmpl b/charts/organizr/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/organizr/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/organizr/1.3.0/app-readme.md b/charts/organizr/1.3.1/app-readme.md similarity index 100% rename from charts/organizr/1.3.0/app-readme.md rename to charts/organizr/1.3.1/app-readme.md diff --git a/charts/organizr/1.3.1/app-readme.md.gotmpl b/charts/organizr/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/organizr/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/organizr/1.3.0/charts/common-1.3.0.tgz b/charts/organizr/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/organizr/1.3.0/charts/common-1.3.0.tgz rename to charts/organizr/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/organizr/1.3.1/docs/CONFIG.md.gotmpl b/charts/organizr/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/organizr/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/organizr/1.3.0/questions.yaml b/charts/organizr/1.3.1/questions.yaml similarity index 99% rename from charts/organizr/1.3.0/questions.yaml rename to charts/organizr/1.3.1/questions.yaml index dada0dd5e3d..905b74ade50 100644 --- a/charts/organizr/1.3.0/questions.yaml +++ b/charts/organizr/1.3.1/questions.yaml @@ -112,7 +112,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -189,7 +189,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -245,7 +245,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -378,4 +378,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/qbittorrent/1.3.0/templates/common.yaml b/charts/organizr/1.3.1/templates/common.yaml similarity index 100% rename from charts/qbittorrent/1.3.0/templates/common.yaml rename to charts/organizr/1.3.1/templates/common.yaml diff --git a/charts/organizr/1.3.0/test_values.yaml b/charts/organizr/1.3.1/test_values.yaml similarity index 99% rename from charts/organizr/1.3.0/test_values.yaml rename to charts/organizr/1.3.1/test_values.yaml index 1598df18710..0b9961fbf0a 100644 --- a/charts/organizr/1.3.0/test_values.yaml +++ b/charts/organizr/1.3.1/test_values.yaml @@ -32,6 +32,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - - diff --git a/charts/organizr/1.3.0/values.yaml b/charts/organizr/1.3.1/values.yaml similarity index 99% rename from charts/organizr/1.3.0/values.yaml rename to charts/organizr/1.3.1/values.yaml index 052ba51cb0c..2410b8c7efe 100644 --- a/charts/organizr/1.3.0/values.yaml +++ b/charts/organizr/1.3.1/values.yaml @@ -34,4 +34,3 @@ persistence: # data: # enabled: true # emptyDir: false - diff --git a/charts/qbittorrent/1.3.0/README.md b/charts/qbittorrent/1.3.0/README.md deleted file mode 100644 index 8a6c44602f8..00000000000 --- a/charts/qbittorrent/1.3.0/README.md +++ /dev/null @@ -1,82 +0,0 @@ -# qBittorrent - -This is a helm chart for [qbittorrent](https://qbittorrent.org/). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/qbittorrent -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/qbittorrent -``` - -The default login details (change ASAP) are: - -* login:admin -* password:adminadmin - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/qbittorrent/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install my-release \ - --set env.TZ="America/New_York" \ - k8s-at-home/qbittorrent -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install my-release k8s-at-home/qbittorrent --values values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 4.0.1 -> 5.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. - -### Upgrading from 5.x.x to 6.x.x - -Due to migrating to a centralized common library some values in `values.yaml` have changed. - -Examples: - -* `service.port` has been moved to `service.port.port`. -* `persistence.type` has been moved to `controllerType`. - -Refer to the library values.yaml for more configuration options. diff --git a/charts/qbittorrent/1.3.0/app-readme.md b/charts/qbittorrent/1.3.0/app-readme.md deleted file mode 100644 index 953b89d225a..00000000000 --- a/charts/qbittorrent/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The qbittorrent App is designed to deploy qbittorrent in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/qbittorrent/1.3.0/.helmignore b/charts/qbittorrent/1.3.1/.helmignore similarity index 100% rename from charts/qbittorrent/1.3.0/.helmignore rename to charts/qbittorrent/1.3.1/.helmignore diff --git a/charts/qbittorrent/1.3.0/Chart.lock b/charts/qbittorrent/1.3.1/Chart.lock similarity index 100% rename from charts/qbittorrent/1.3.0/Chart.lock rename to charts/qbittorrent/1.3.1/Chart.lock diff --git a/charts/qbittorrent/1.3.0/Chart.yaml b/charts/qbittorrent/1.3.1/Chart.yaml similarity index 97% rename from charts/qbittorrent/1.3.0/Chart.yaml rename to charts/qbittorrent/1.3.1/Chart.yaml index 2abd13e268a..558d373208e 100644 --- a/charts/qbittorrent/1.3.0/Chart.yaml +++ b/charts/qbittorrent/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 4.3.0 description: qBittorrent is a cross-platform free and open-source BitTorrent client name: qbittorrent -version: 1.3.0 +version: 1.3.1 upstream_version: 7.2.1 keywords: - qbittorrent diff --git a/charts/qbittorrent/1.3.0/LICENSE b/charts/qbittorrent/1.3.1/LICENSE similarity index 100% rename from charts/qbittorrent/1.3.0/LICENSE rename to charts/qbittorrent/1.3.1/LICENSE diff --git a/charts/qbittorrent/1.3.1/README.md b/charts/qbittorrent/1.3.1/README.md new file mode 100644 index 00000000000..7da25e1308c --- /dev/null +++ b/charts/qbittorrent/1.3.1/README.md @@ -0,0 +1,50 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 4.3.0](https://img.shields.io/badge/AppVersion-4.3.0-informational?style=flat-square) + +qBittorrent is a cross-platform free and open-source BitTorrent client + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `qbittorrent` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `qbittorrent` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/qbittorrent/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/qbittorrent/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/qbittorrent/1.3.1/app-readme.md b/charts/qbittorrent/1.3.1/app-readme.md new file mode 100644 index 00000000000..b1762c311ed --- /dev/null +++ b/charts/qbittorrent/1.3.1/app-readme.md @@ -0,0 +1 @@ +qBittorrent is a cross-platform free and open-source BitTorrent client diff --git a/charts/qbittorrent/1.3.1/app-readme.md.gotmpl b/charts/qbittorrent/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/qbittorrent/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/qbittorrent/1.3.0/charts/common-1.3.0.tgz b/charts/qbittorrent/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/qbittorrent/1.3.0/charts/common-1.3.0.tgz rename to charts/qbittorrent/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/qbittorrent/1.3.1/docs/CONFIG.md b/charts/qbittorrent/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/qbittorrent/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/qbittorrent/1.3.1/docs/CONFIG.md.gotmpl b/charts/qbittorrent/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/qbittorrent/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/qbittorrent/1.3.0/questions.yaml b/charts/qbittorrent/1.3.1/questions.yaml similarity index 99% rename from charts/qbittorrent/1.3.0/questions.yaml rename to charts/qbittorrent/1.3.1/questions.yaml index a73780a766f..dedfe7fcfcf 100644 --- a/charts/qbittorrent/1.3.0/questions.yaml +++ b/charts/qbittorrent/1.3.1/questions.yaml @@ -110,7 +110,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -148,8 +148,8 @@ questions: max: 65535 default: 36052 required: true - - + + - variable: appAdditionalServices group: "Networking" label: "Configure additional services" @@ -316,7 +316,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -372,7 +372,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/readarr/1.3.0/templates/NOTES.txt b/charts/qbittorrent/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/readarr/1.3.0/templates/NOTES.txt rename to charts/qbittorrent/1.3.1/templates/NOTES.txt diff --git a/charts/radarr/1.3.0/templates/common.yaml b/charts/qbittorrent/1.3.1/templates/common.yaml similarity index 100% rename from charts/radarr/1.3.0/templates/common.yaml rename to charts/qbittorrent/1.3.1/templates/common.yaml diff --git a/charts/qbittorrent/1.3.0/templates/configmap.yaml b/charts/qbittorrent/1.3.1/templates/configmap.yaml similarity index 100% rename from charts/qbittorrent/1.3.0/templates/configmap.yaml rename to charts/qbittorrent/1.3.1/templates/configmap.yaml diff --git a/charts/qbittorrent/1.3.0/test_values.yaml b/charts/qbittorrent/1.3.1/test_values.yaml similarity index 99% rename from charts/qbittorrent/1.3.0/test_values.yaml rename to charts/qbittorrent/1.3.1/test_values.yaml index eb5c040a29d..8f5a0e56581 100644 --- a/charts/qbittorrent/1.3.0/test_values.yaml +++ b/charts/qbittorrent/1.3.1/test_values.yaml @@ -70,7 +70,7 @@ additionalVolumeMounts: name: qbittorrent-scripts appIngressEnabled: false - + appVolumeMounts: config: diff --git a/charts/qbittorrent/1.3.0/values.yaml b/charts/qbittorrent/1.3.1/values.yaml similarity index 99% rename from charts/qbittorrent/1.3.0/values.yaml rename to charts/qbittorrent/1.3.1/values.yaml index 63c565bfdde..a5628fb83ad 100644 --- a/charts/qbittorrent/1.3.0/values.yaml +++ b/charts/qbittorrent/1.3.1/values.yaml @@ -70,7 +70,7 @@ additionalVolumeMounts: name: qbittorrent-scripts appIngressEnabled: false - + #appVolumeMounts: # config: diff --git a/charts/radarr/1.3.0/README.md b/charts/radarr/1.3.0/README.md deleted file mode 100644 index 83e7d47b7ee..00000000000 --- a/charts/radarr/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Radarr helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/radarr/1.3.0/app-readme.md b/charts/radarr/1.3.0/app-readme.md deleted file mode 100644 index 1db5d6bb631..00000000000 --- a/charts/radarr/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Radarr - -Radarr chart is a chart designed to deploy Radarr in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/radarr/1.3.0/.helmignore b/charts/radarr/1.3.1/.helmignore similarity index 100% rename from charts/radarr/1.3.0/.helmignore rename to charts/radarr/1.3.1/.helmignore diff --git a/charts/radarr/1.3.0/Chart.lock b/charts/radarr/1.3.1/Chart.lock similarity index 100% rename from charts/radarr/1.3.0/Chart.lock rename to charts/radarr/1.3.1/Chart.lock diff --git a/charts/radarr/1.3.0/Chart.yaml b/charts/radarr/1.3.1/Chart.yaml similarity index 97% rename from charts/radarr/1.3.0/Chart.yaml rename to charts/radarr/1.3.1/Chart.yaml index 9942171353d..b6d03e8bc3a 100644 --- a/charts/radarr/1.3.0/Chart.yaml +++ b/charts/radarr/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 3.0.0.3989 description: A fork of Sonarr to work with movies à la Couchpotato name: radarr -version: 1.3.0 +version: 1.3.1 keywords: - radarr - torrent diff --git a/charts/radarr/1.3.0/LICENSE b/charts/radarr/1.3.1/LICENSE similarity index 100% rename from charts/radarr/1.3.0/LICENSE rename to charts/radarr/1.3.1/LICENSE diff --git a/charts/radarr/1.3.1/README.md b/charts/radarr/1.3.1/README.md new file mode 100644 index 00000000000..b0db7c5f20a --- /dev/null +++ b/charts/radarr/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 3.0.0.3989](https://img.shields.io/badge/AppVersion-3.0.0.3989-informational?style=flat-square) + +A fork of Sonarr to work with movies à la Couchpotato + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `radarr` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `radarr` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/radarr/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/radarr/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/radarr/1.3.1/app-readme.md b/charts/radarr/1.3.1/app-readme.md new file mode 100644 index 00000000000..cd4de02205e --- /dev/null +++ b/charts/radarr/1.3.1/app-readme.md @@ -0,0 +1 @@ +A fork of Sonarr to work with movies à la Couchpotato diff --git a/charts/radarr/1.3.1/app-readme.md.gotmpl b/charts/radarr/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/radarr/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/radarr/1.3.0/charts/common-1.3.0.tgz b/charts/radarr/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/radarr/1.3.0/charts/common-1.3.0.tgz rename to charts/radarr/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/radarr/1.3.1/docs/CONFIG.md b/charts/radarr/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/radarr/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/radarr/1.3.1/docs/CONFIG.md.gotmpl b/charts/radarr/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/radarr/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/radarr/1.3.0/questions.yaml b/charts/radarr/1.3.1/questions.yaml similarity index 99% rename from charts/radarr/1.3.0/questions.yaml rename to charts/radarr/1.3.1/questions.yaml index 188e4b7b983..3fa70f0c5d9 100644 --- a/charts/radarr/1.3.0/questions.yaml +++ b/charts/radarr/1.3.1/questions.yaml @@ -112,7 +112,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -189,7 +189,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -245,7 +245,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -301,7 +301,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -439,4 +439,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/readarr/1.3.0/templates/common.yaml b/charts/radarr/1.3.1/templates/common.yaml similarity index 100% rename from charts/readarr/1.3.0/templates/common.yaml rename to charts/radarr/1.3.1/templates/common.yaml diff --git a/charts/radarr/1.3.0/test_values.yaml b/charts/radarr/1.3.1/test_values.yaml similarity index 99% rename from charts/radarr/1.3.0/test_values.yaml rename to charts/radarr/1.3.1/test_values.yaml index 01542601e17..0da7e190390 100644 --- a/charts/radarr/1.3.0/test_values.yaml +++ b/charts/radarr/1.3.1/test_values.yaml @@ -57,4 +57,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/downloads" - diff --git a/charts/radarr/1.3.0/values.yaml b/charts/radarr/1.3.1/values.yaml similarity index 99% rename from charts/radarr/1.3.0/values.yaml rename to charts/radarr/1.3.1/values.yaml index eafa2689b0e..5f70fb31d75 100644 --- a/charts/radarr/1.3.0/values.yaml +++ b/charts/radarr/1.3.1/values.yaml @@ -53,4 +53,3 @@ persistence: # downloads: # enabled: true # emptyDir: false - diff --git a/charts/readarr/1.3.0/README.md b/charts/readarr/1.3.0/README.md deleted file mode 100644 index 92baec90b2e..00000000000 --- a/charts/readarr/1.3.0/README.md +++ /dev/null @@ -1,55 +0,0 @@ -# Readarr - -This is a helm chart for [Readarr](https://github.com/Readarr/Readarr). - -**Readarr is still in early development, and this chart will install a nightly build of Readarr. -[See the project readme for more information](https://github.com/Readarr/Readarr#readarr-is-in-early-stages-of-development-alphabeta-binary-builds-are-not-yet-available-use-of-any-test-builds-isnt-recommend-and-may-have-detrimental-effects-on-your-library). Take back-up's if you decide to use this on an existing library as the project is considered unstable** - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/readarr -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/readarr -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/readarr/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install readarr \ - --set env.TZ="America/New_York" \ - k8s-at-home/readarr -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install readarr k8s-at-home/readarr --values values.yaml -``` - -```yaml -image: - tag: ... -``` diff --git a/charts/readarr/1.3.0/app-readme.md b/charts/readarr/1.3.0/app-readme.md deleted file mode 100644 index 17ab9e1a378..00000000000 --- a/charts/readarr/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The readarr App is designed to deploy readarr in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/readarr/1.3.0/.helmignore b/charts/readarr/1.3.1/.helmignore similarity index 100% rename from charts/readarr/1.3.0/.helmignore rename to charts/readarr/1.3.1/.helmignore diff --git a/charts/readarr/1.3.0/Chart.lock b/charts/readarr/1.3.1/Chart.lock similarity index 100% rename from charts/readarr/1.3.0/Chart.lock rename to charts/readarr/1.3.1/Chart.lock diff --git a/charts/readarr/1.3.0/Chart.yaml b/charts/readarr/1.3.1/Chart.yaml similarity index 96% rename from charts/readarr/1.3.0/Chart.yaml rename to charts/readarr/1.3.1/Chart.yaml index 6311fac8286..74ee6d4d0bb 100644 --- a/charts/readarr/1.3.0/Chart.yaml +++ b/charts/readarr/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appversion: 0.2.0.351 description: A fork of Radarr to work with Books & AudioBooks name: readarr -version: 1.3.0 +version: 1.3.1 upstream_version: 1.1.1 keywords: - readarr @@ -21,4 +21,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/readarr/1.3.0/LICENSE b/charts/readarr/1.3.1/LICENSE similarity index 100% rename from charts/readarr/1.3.0/LICENSE rename to charts/readarr/1.3.1/LICENSE diff --git a/charts/readarr/1.3.1/README.md b/charts/readarr/1.3.1/README.md new file mode 100644 index 00000000000..b041500c850 --- /dev/null +++ b/charts/readarr/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) + +A fork of Radarr to work with Books & AudioBooks + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `readarr` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `readarr` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/readarr/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/readarr/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/readarr/1.3.1/app-readme.md b/charts/readarr/1.3.1/app-readme.md new file mode 100644 index 00000000000..2e1c8dce90d --- /dev/null +++ b/charts/readarr/1.3.1/app-readme.md @@ -0,0 +1 @@ +A fork of Radarr to work with Books & AudioBooks diff --git a/charts/readarr/1.3.1/app-readme.md.gotmpl b/charts/readarr/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/readarr/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/readarr/1.3.0/charts/common-1.3.0.tgz b/charts/readarr/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/readarr/1.3.0/charts/common-1.3.0.tgz rename to charts/readarr/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/readarr/1.3.1/docs/CONFIG.md b/charts/readarr/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/readarr/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/readarr/1.3.1/docs/CONFIG.md.gotmpl b/charts/readarr/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/readarr/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/readarr/1.3.0/questions.yaml b/charts/readarr/1.3.1/questions.yaml similarity index 99% rename from charts/readarr/1.3.0/questions.yaml rename to charts/readarr/1.3.1/questions.yaml index b09370dda18..f2b60910b15 100644 --- a/charts/readarr/1.3.0/questions.yaml +++ b/charts/readarr/1.3.1/questions.yaml @@ -111,7 +111,7 @@ questions: label: "Value" schema: type: string - + - variable: service group: "Networking" label: "Configure Service" @@ -187,7 +187,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -243,7 +243,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -299,7 +299,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/sabnzbd/1.3.0/templates/NOTES.txt b/charts/readarr/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/sabnzbd/1.3.0/templates/NOTES.txt rename to charts/readarr/1.3.1/templates/NOTES.txt diff --git a/charts/sabnzbd/1.3.0/templates/common.yaml b/charts/readarr/1.3.1/templates/common.yaml similarity index 100% rename from charts/sabnzbd/1.3.0/templates/common.yaml rename to charts/readarr/1.3.1/templates/common.yaml diff --git a/charts/readarr/1.3.0/test_values.yaml b/charts/readarr/1.3.1/test_values.yaml similarity index 99% rename from charts/readarr/1.3.0/test_values.yaml rename to charts/readarr/1.3.1/test_values.yaml index d8a94bcd400..33a17d3cfc9 100644 --- a/charts/readarr/1.3.0/test_values.yaml +++ b/charts/readarr/1.3.1/test_values.yaml @@ -40,7 +40,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + appVolumeMounts: config: diff --git a/charts/readarr/1.3.0/values.yaml b/charts/readarr/1.3.1/values.yaml similarity index 99% rename from charts/readarr/1.3.0/values.yaml rename to charts/readarr/1.3.1/values.yaml index 4843184dfcb..92dd92232fd 100644 --- a/charts/readarr/1.3.0/values.yaml +++ b/charts/readarr/1.3.1/values.yaml @@ -40,7 +40,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + #appVolumeMounts: # config: diff --git a/charts/sabnzbd/1.3.0/README.md b/charts/sabnzbd/1.3.0/README.md deleted file mode 100644 index 4d2aa983105..00000000000 --- a/charts/sabnzbd/1.3.0/README.md +++ /dev/null @@ -1,85 +0,0 @@ -# Sabnzbd - -This is a helm chart for [Sabnzbd](https://github.com/sabnzbd/sabnzbd). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose)** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/sabnzbd -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install --name my-release k8s-at-home/sabnzbd -``` - -**IMPORTANT NOTE:** when installing this chart for the first time you will get the follow message in your browser when trying to access Sabnzbd: `Access denied - Hostname verification failed: sabnzbd.org/hostname-check` - -You can do one of two things to solve this issue: - -1. Update the `sabnzbd.ini` config file to your `ingress` name and/or `loadBalancerIP` to the `host_whitelist` field and restart the pod, or -2. Forward the service to your local machine with `kubectl port-forward service/sabnzbd -n default 8080:8080` and update the `host_whitelist` in the Sabnzbd Settings UI - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` - -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -Read through the charts [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/sabnzbd/values.yaml) -file. It has several commented out suggested values. -Additionally you can take a look at the common library [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml) for more (advanced) configuration options. - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install sabnzbd \ - --set env.TZ="America/New_York" \ - k8s-at-home/sabnzbd -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the -chart. For example, -```console -helm install sabnzbd k8s-at-home/sabnzbd --values values.yaml -``` - -```yaml -image: - tag: ... -``` - ---- -**NOTE** - -If you get -```console -Error: rendered manifests contain a resource that already exists. Unable to continue with install: existing resource conflict: ...` -``` -it may be because you uninstalled the chart with `skipuninstall` enabled, you need to manually delete the pvc or use `existingClaim`. - ---- - -## Upgrading an existing Release to a new major version - -A major chart version change (like 4.0.1 -> 5.0.0) indicates that there is an incompatible breaking change potentially needing manual actions. - -### Upgrading from 2.x.x to 3.x.x - -Due to migrating to a centralized common library some values in `values.yaml` have changed. - -Examples: - -* `service.port` has been moved to `service.port.port`. -* `persistence.type` has been moved to `controllerType`. - -Refer to the library values.yaml for more configuration options. diff --git a/charts/sabnzbd/1.3.0/app-readme.md b/charts/sabnzbd/1.3.0/app-readme.md deleted file mode 100644 index ccfaeb6f6fd..00000000000 --- a/charts/sabnzbd/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The sabnzbd App is designed to deploy sabnzbd in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/sabnzbd/1.3.0/.helmignore b/charts/sabnzbd/1.3.1/.helmignore similarity index 100% rename from charts/sabnzbd/1.3.0/.helmignore rename to charts/sabnzbd/1.3.1/.helmignore diff --git a/charts/sabnzbd/1.3.0/Chart.lock b/charts/sabnzbd/1.3.1/Chart.lock similarity index 100% rename from charts/sabnzbd/1.3.0/Chart.lock rename to charts/sabnzbd/1.3.1/Chart.lock diff --git a/charts/sabnzbd/1.3.0/Chart.yaml b/charts/sabnzbd/1.3.1/Chart.yaml similarity index 96% rename from charts/sabnzbd/1.3.0/Chart.yaml rename to charts/sabnzbd/1.3.1/Chart.yaml index 82a38355a3c..de8dd1a9c1e 100644 --- a/charts/sabnzbd/1.3.0/Chart.yaml +++ b/charts/sabnzbd/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 3.1.0 description: Free and easy binary newsreader name: sabnzbd -version: 1.3.0 +version: 1.3.1 upstream_version: 4.2.1 keywords: - sabnzbd @@ -18,4 +18,3 @@ dependencies: - name: common repository: https://charts.truecharts.org/ version: 1.3.0 - diff --git a/charts/sabnzbd/1.3.0/LICENSE b/charts/sabnzbd/1.3.1/LICENSE similarity index 100% rename from charts/sabnzbd/1.3.0/LICENSE rename to charts/sabnzbd/1.3.1/LICENSE diff --git a/charts/sabnzbd/1.3.1/README.md b/charts/sabnzbd/1.3.1/README.md new file mode 100644 index 00000000000..26cf3c0e394 --- /dev/null +++ b/charts/sabnzbd/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 3.1.0](https://img.shields.io/badge/AppVersion-3.1.0-informational?style=flat-square) + +Free and easy binary newsreader + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `sabnzbd` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `sabnzbd` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/sabnzbd/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/sabnzbd/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/sabnzbd/1.3.1/app-readme.md b/charts/sabnzbd/1.3.1/app-readme.md new file mode 100644 index 00000000000..7aeb93dbf44 --- /dev/null +++ b/charts/sabnzbd/1.3.1/app-readme.md @@ -0,0 +1 @@ +Free and easy binary newsreader diff --git a/charts/sabnzbd/1.3.1/app-readme.md.gotmpl b/charts/sabnzbd/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/sabnzbd/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/sabnzbd/1.3.0/charts/common-1.3.0.tgz b/charts/sabnzbd/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/sabnzbd/1.3.0/charts/common-1.3.0.tgz rename to charts/sabnzbd/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/sabnzbd/1.3.1/docs/CONFIG.md b/charts/sabnzbd/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/sabnzbd/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/sabnzbd/1.3.1/docs/CONFIG.md.gotmpl b/charts/sabnzbd/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/sabnzbd/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/sabnzbd/1.3.0/questions.yaml b/charts/sabnzbd/1.3.1/questions.yaml similarity index 99% rename from charts/sabnzbd/1.3.0/questions.yaml rename to charts/sabnzbd/1.3.1/questions.yaml index 93c24959565..630966252b0 100644 --- a/charts/sabnzbd/1.3.0/questions.yaml +++ b/charts/sabnzbd/1.3.1/questions.yaml @@ -111,8 +111,8 @@ questions: label: "Value" schema: type: string - - + + # Enable Host Network - variable: hostNetwork group: "Networking" @@ -120,7 +120,7 @@ questions: schema: type: boolean default: false - + - variable: service group: "Networking" label: "Configure Service" @@ -188,7 +188,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -244,7 +244,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -377,4 +377,3 @@ questions: schema: type: string default: "" - diff --git a/charts/sabnzbd/1.3.1/templates/NOTES.txt b/charts/sabnzbd/1.3.1/templates/NOTES.txt new file mode 100644 index 00000000000..90f7b653a50 --- /dev/null +++ b/charts/sabnzbd/1.3.1/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "common.notes.defaultNotes" . -}} diff --git a/charts/sonarr/1.3.0/templates/common.yaml b/charts/sabnzbd/1.3.1/templates/common.yaml similarity index 100% rename from charts/sonarr/1.3.0/templates/common.yaml rename to charts/sabnzbd/1.3.1/templates/common.yaml diff --git a/charts/sabnzbd/1.3.0/test_values.yaml b/charts/sabnzbd/1.3.1/test_values.yaml similarity index 99% rename from charts/sabnzbd/1.3.0/test_values.yaml rename to charts/sabnzbd/1.3.1/test_values.yaml index b2d7776e4b3..133cc706e37 100644 --- a/charts/sabnzbd/1.3.0/test_values.yaml +++ b/charts/sabnzbd/1.3.1/test_values.yaml @@ -40,7 +40,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + appVolumeMounts: config: diff --git a/charts/sabnzbd/1.3.0/values.yaml b/charts/sabnzbd/1.3.1/values.yaml similarity index 99% rename from charts/sabnzbd/1.3.0/values.yaml rename to charts/sabnzbd/1.3.1/values.yaml index 0809c786f10..71d72ab4578 100644 --- a/charts/sabnzbd/1.3.0/values.yaml +++ b/charts/sabnzbd/1.3.1/values.yaml @@ -40,7 +40,7 @@ persistence: # existingClaim: "" appIngressEnabled: false - + # appVolumeMounts: # config: diff --git a/charts/sonarr/1.3.0/README.md b/charts/sonarr/1.3.0/README.md deleted file mode 100644 index 55aeae93a63..00000000000 --- a/charts/sonarr/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Sonarr helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/sonarr/1.3.0/app-readme.md b/charts/sonarr/1.3.0/app-readme.md deleted file mode 100644 index 031ff85a55b..00000000000 --- a/charts/sonarr/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Sonarr - -Sonarr chart is a chart designed to deploy Sonarr in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/sonarr/1.3.0/.helmignore b/charts/sonarr/1.3.1/.helmignore similarity index 100% rename from charts/sonarr/1.3.0/.helmignore rename to charts/sonarr/1.3.1/.helmignore diff --git a/charts/sonarr/1.3.0/Chart.lock b/charts/sonarr/1.3.1/Chart.lock similarity index 100% rename from charts/sonarr/1.3.0/Chart.lock rename to charts/sonarr/1.3.1/Chart.lock diff --git a/charts/sonarr/1.3.0/Chart.yaml b/charts/sonarr/1.3.1/Chart.yaml similarity index 97% rename from charts/sonarr/1.3.0/Chart.yaml rename to charts/sonarr/1.3.1/Chart.yaml index 00769eee210..92fea934aa4 100644 --- a/charts/sonarr/1.3.0/Chart.yaml +++ b/charts/sonarr/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 3.0.4.993 description: Smart PVR for newsgroup and bittorrent users name: sonarr -version: 1.3.0 +version: 1.3.1 keywords: - sonarr - torrent diff --git a/charts/sonarr/1.3.0/LICENSE b/charts/sonarr/1.3.1/LICENSE similarity index 100% rename from charts/sonarr/1.3.0/LICENSE rename to charts/sonarr/1.3.1/LICENSE diff --git a/charts/sonarr/1.3.1/README.md b/charts/sonarr/1.3.1/README.md new file mode 100644 index 00000000000..64c565237f9 --- /dev/null +++ b/charts/sonarr/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 3.0.4.993](https://img.shields.io/badge/AppVersion-3.0.4.993-informational?style=flat-square) + +Smart PVR for newsgroup and bittorrent users + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `sonarr` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `sonarr` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/sonarr/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/sonarr/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/sonarr/1.3.1/app-readme.md b/charts/sonarr/1.3.1/app-readme.md new file mode 100644 index 00000000000..d6133765df9 --- /dev/null +++ b/charts/sonarr/1.3.1/app-readme.md @@ -0,0 +1 @@ +Smart PVR for newsgroup and bittorrent users diff --git a/charts/sonarr/1.3.1/app-readme.md.gotmpl b/charts/sonarr/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/sonarr/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/sonarr/1.3.0/charts/common-1.3.0.tgz b/charts/sonarr/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/sonarr/1.3.0/charts/common-1.3.0.tgz rename to charts/sonarr/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/sonarr/1.3.1/docs/CONFIG.md b/charts/sonarr/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/sonarr/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/sonarr/1.3.1/docs/CONFIG.md.gotmpl b/charts/sonarr/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/sonarr/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/sonarr/1.3.0/questions.yaml b/charts/sonarr/1.3.1/questions.yaml similarity index 98% rename from charts/sonarr/1.3.0/questions.yaml rename to charts/sonarr/1.3.1/questions.yaml index ecb70578f72..873c6b866fe 100644 --- a/charts/sonarr/1.3.0/questions.yaml +++ b/charts/sonarr/1.3.1/questions.yaml @@ -112,8 +112,8 @@ questions: label: "Value" schema: type: string - - + + # Enable Host Network - variable: hostNetwork group: "Networking" @@ -121,7 +121,7 @@ questions: schema: type: boolean default: false - + - variable: service group: "Networking" label: "Configure Service" @@ -190,7 +190,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -246,7 +246,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -302,7 +302,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -434,4 +434,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/tautulli/1.3.0/templates/common.yaml b/charts/sonarr/1.3.1/templates/common.yaml similarity index 100% rename from charts/tautulli/1.3.0/templates/common.yaml rename to charts/sonarr/1.3.1/templates/common.yaml diff --git a/charts/sonarr/1.3.0/test_values.yaml b/charts/sonarr/1.3.1/test_values.yaml similarity index 99% rename from charts/sonarr/1.3.0/test_values.yaml rename to charts/sonarr/1.3.1/test_values.yaml index 080a6c2fb7b..575f43b8365 100644 --- a/charts/sonarr/1.3.0/test_values.yaml +++ b/charts/sonarr/1.3.1/test_values.yaml @@ -47,4 +47,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - diff --git a/charts/sonarr/1.3.0/values.yaml b/charts/sonarr/1.3.1/values.yaml similarity index 99% rename from charts/sonarr/1.3.0/values.yaml rename to charts/sonarr/1.3.1/values.yaml index 5fb8af53fd9..4c6e8e2abcd 100644 --- a/charts/sonarr/1.3.0/values.yaml +++ b/charts/sonarr/1.3.1/values.yaml @@ -53,4 +53,3 @@ persistence: # downloads: # enabled: true # emptyDir: false - diff --git a/charts/tautulli/1.3.0/README.md b/charts/tautulli/1.3.0/README.md deleted file mode 100644 index 148a4fcfd26..00000000000 --- a/charts/tautulli/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Tautulli helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/tautulli/1.3.0/app-readme.md b/charts/tautulli/1.3.0/app-readme.md deleted file mode 100644 index 354ff3fcf8e..00000000000 --- a/charts/tautulli/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Tautulli - -Tautulli chart is a chart designed to deploy Tautulli in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/tautulli/1.3.0/.helmignore b/charts/tautulli/1.3.1/.helmignore similarity index 100% rename from charts/tautulli/1.3.0/.helmignore rename to charts/tautulli/1.3.1/.helmignore diff --git a/charts/tautulli/1.3.0/Chart.lock b/charts/tautulli/1.3.1/Chart.lock similarity index 100% rename from charts/tautulli/1.3.0/Chart.lock rename to charts/tautulli/1.3.1/Chart.lock diff --git a/charts/tautulli/1.3.0/Chart.yaml b/charts/tautulli/1.3.1/Chart.yaml similarity index 96% rename from charts/tautulli/1.3.0/Chart.yaml rename to charts/tautulli/1.3.1/Chart.yaml index 9526eb86ac6..71e9c574aa3 100644 --- a/charts/tautulli/1.3.0/Chart.yaml +++ b/charts/tautulli/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.5.4 description: Statistics for Plex name: tautulli -version: 1.3.0 +version: 1.3.1 keywords: - tautulli home: https://github.com/truecharts/truecharts/tree/dev/charts/tautulli diff --git a/charts/tautulli/1.3.0/LICENSE b/charts/tautulli/1.3.1/LICENSE similarity index 100% rename from charts/tautulli/1.3.0/LICENSE rename to charts/tautulli/1.3.1/LICENSE diff --git a/charts/tautulli/1.3.1/README.md b/charts/tautulli/1.3.1/README.md new file mode 100644 index 00000000000..7360447c32b --- /dev/null +++ b/charts/tautulli/1.3.1/README.md @@ -0,0 +1,46 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: v2.5.4](https://img.shields.io/badge/AppVersion-v2.5.4-informational?style=flat-square) + +Statistics for Plex + +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)** + +## Requirements + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `tautulli` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `tautulli` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/tautulli/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/tautulli/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/tautulli/1.3.1/app-readme.md b/charts/tautulli/1.3.1/app-readme.md new file mode 100644 index 00000000000..00227d5d777 --- /dev/null +++ b/charts/tautulli/1.3.1/app-readme.md @@ -0,0 +1 @@ +Statistics for Plex diff --git a/charts/tautulli/1.3.1/app-readme.md.gotmpl b/charts/tautulli/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/tautulli/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/tautulli/1.3.0/charts/common-1.3.0.tgz b/charts/tautulli/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/tautulli/1.3.0/charts/common-1.3.0.tgz rename to charts/tautulli/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/tautulli/1.3.1/docs/CONFIG.md b/charts/tautulli/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/tautulli/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/tautulli/1.3.1/docs/CONFIG.md.gotmpl b/charts/tautulli/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/tautulli/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/tautulli/1.3.0/questions.yaml b/charts/tautulli/1.3.1/questions.yaml similarity index 99% rename from charts/tautulli/1.3.0/questions.yaml rename to charts/tautulli/1.3.1/questions.yaml index fd9577a1d8a..170badfd80c 100644 --- a/charts/tautulli/1.3.0/questions.yaml +++ b/charts/tautulli/1.3.1/questions.yaml @@ -112,8 +112,8 @@ questions: label: "Value" schema: type: string - - + + # Enable Host Network - variable: hostNetwork group: "Networking" @@ -121,7 +121,7 @@ questions: schema: type: boolean default: false - + - variable: service group: "Networking" label: "Configure Service" @@ -190,7 +190,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -322,4 +322,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/transmission/1.3.0/templates/common.yaml b/charts/tautulli/1.3.1/templates/common.yaml similarity index 100% rename from charts/transmission/1.3.0/templates/common.yaml rename to charts/tautulli/1.3.1/templates/common.yaml diff --git a/charts/tautulli/1.3.0/test_values.yaml b/charts/tautulli/1.3.1/test_values.yaml similarity index 98% rename from charts/tautulli/1.3.0/test_values.yaml rename to charts/tautulli/1.3.1/test_values.yaml index 298f200984d..c99dbebcaa8 100644 --- a/charts/tautulli/1.3.0/test_values.yaml +++ b/charts/tautulli/1.3.1/test_values.yaml @@ -22,7 +22,7 @@ persistence: enabled: false emptyDir: false mountPath: "/config" - + ## TrueCharts Config appVolumeMounts: @@ -31,6 +31,3 @@ appVolumeMounts: emptyDir: true setPermissions: true mountPath: "/config" - - - diff --git a/charts/tautulli/1.3.0/values.yaml b/charts/tautulli/1.3.1/values.yaml similarity index 98% rename from charts/tautulli/1.3.0/values.yaml rename to charts/tautulli/1.3.1/values.yaml index 6afc45ad1a3..9b46bd6ec8c 100644 --- a/charts/tautulli/1.3.0/values.yaml +++ b/charts/tautulli/1.3.1/values.yaml @@ -21,7 +21,7 @@ persistence: config: enabled: false emptyDir: false - + ## TrueCharts Config diff --git a/charts/traefik/1.0.0/README.md b/charts/traefik/1.0.0/README.md deleted file mode 100644 index 658e657cc83..00000000000 --- a/charts/traefik/1.0.0/README.md +++ /dev/null @@ -1,90 +0,0 @@ -# Traefik - -[Traefik](https://traefik.io/) is a modern HTTP reverse proxy and load balancer made to deploy -microservices with ease. - -## Introduction - -This chart bootstraps Traefik version 2 as a Kubernetes ingress controller, -using Custom Resources `IngressRoute`: . - -### Philosophy - -The Traefik HelmChart is focused on Traefik deployment configuration. - -To keep this HelmChart as generic as possible we tend -to avoid integrating any third party solutions nor any specific use cases. - -Accordingly, the encouraged approach to fulfill your needs: -1. override the default Traefik configuration values ([yaml file or cli](https://helm.sh/docs/chart_template_guide/values_files/)) -2. append your own configurations (`kubectl apply -f myconf.yaml`) -3. extend this HelmChart ([as a Subchart](https://helm.sh/docs/chart_template_guide/subcharts_and_globals/)) - -## Installing - -### Prerequisites - -With the command `helm version`, make sure that you have: -- Helm v3 [installed](https://helm.sh/docs/using_helm/#installing-helm) - -Add Traefik's chart repository to Helm: - -```bash -helm repo add traefik https://helm.traefik.io/traefik -``` - -You can update the chart repository by running: - -```bash -helm repo update -``` - -### Deploying Traefik - -```bash -helm install traefik traefik/traefik -``` - -#### Warning - -If you are using Helm v2 - -You have to deploy CRDs manually with the following command: - -``` -kubectl apply -f traefik/crds -``` - -### Exposing the Traefik dashboard - -This HelmChart does not expose the Traefik dashboard by default, for security concerns. -Thus, there are multiple ways to expose the dashboard. -For instance, the dashboard access could be achieved through a port-forward : - -``` -kubectl port-forward $(kubectl get pods --selector "app.kubernetes.io/name=traefik" --output=name) 9000:9000 -``` - -Another way would be to apply your own configuration, for instance, -by defining and applying an IngressRoute CRD (`kubectl apply -f dashboard.yaml`): - -```yaml -# dashboard.yaml -apiVersion: traefik.containo.us/v1alpha1 -kind: IngressRoute -metadata: - name: dashboard -spec: - entryPoints: - - web - routes: - - match: Host(`traefik.localhost`) && (PathPrefix(`/dashboard`) || PathPrefix(`/api`)) - kind: Rule - services: - - name: api@internal - kind: TraefikService -``` - -## Contributing - -If you want to contribute to this chart, please read the [Contributing Guide](../CONTRIBUTING.md). diff --git a/charts/traefik/1.0.0/app-readme.md b/charts/traefik/1.0.0/app-readme.md deleted file mode 100644 index 4dc0c1ef344..00000000000 --- a/charts/traefik/1.0.0/app-readme.md +++ /dev/null @@ -1,7 +0,0 @@ -# Traefik - -[Traefik](https://traefik.io/) is a modern HTTP reverse proxy and load balancer made to deploy -microservices with ease. - -This chart bootstraps Traefik version 2 as a Kubernetes ingress controller, -using Custom Resources `IngressRoute`: . diff --git a/charts/traefik/1.0.0/.helmignore b/charts/traefik/1.0.1/.helmignore similarity index 100% rename from charts/traefik/1.0.0/.helmignore rename to charts/traefik/1.0.1/.helmignore diff --git a/charts/traefik/1.0.0/Chart.lock b/charts/traefik/1.0.1/Chart.lock similarity index 100% rename from charts/traefik/1.0.0/Chart.lock rename to charts/traefik/1.0.1/Chart.lock diff --git a/charts/traefik/1.0.0/Chart.yaml b/charts/traefik/1.0.1/Chart.yaml similarity index 97% rename from charts/traefik/1.0.0/Chart.yaml rename to charts/traefik/1.0.1/Chart.yaml index efdceebaee3..438a7ec7ee4 100644 --- a/charts/traefik/1.0.0/Chart.yaml +++ b/charts/traefik/1.0.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: traefik description: A Traefik based Kubernetes ingress controller type: application -version: 1.0.0 +version: 1.0.1 upstream_version: 9.14.2 appVersion: 2.4.2 keywords: @@ -22,4 +22,3 @@ dependencies: - name: reflector repository: "https://emberstack.github.io/helm-charts" version: 5.4.17 - diff --git a/charts/traefik/1.0.0/Guidelines.md b/charts/traefik/1.0.1/Guidelines.md similarity index 100% rename from charts/traefik/1.0.0/Guidelines.md rename to charts/traefik/1.0.1/Guidelines.md diff --git a/charts/traefik/1.0.0/LICENSE b/charts/traefik/1.0.1/LICENSE similarity index 100% rename from charts/traefik/1.0.0/LICENSE rename to charts/traefik/1.0.1/LICENSE diff --git a/charts/traefik/1.0.1/README.md b/charts/traefik/1.0.1/README.md new file mode 100644 index 00000000000..c806ab6dbec --- /dev/null +++ b/charts/traefik/1.0.1/README.md @@ -0,0 +1,52 @@ +# Introduction + +![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.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) + +A Traefik based Kubernetes ingress controller + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.jetstack.io | cert-manager | v1.2.0 | +| https://emberstack.github.io/helm-charts | reflector | 5.4.17 | + +## Installing the Chart + +To install the chart with the release name `traefik` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `traefik` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.0.1/README.md.gotmpl b/charts/traefik/1.0.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/traefik/1.0.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/traefik/1.0.1/app-readme.md b/charts/traefik/1.0.1/app-readme.md new file mode 100644 index 00000000000..c9f3b7ef163 --- /dev/null +++ b/charts/traefik/1.0.1/app-readme.md @@ -0,0 +1 @@ +A Traefik based Kubernetes ingress controller diff --git a/charts/traefik/1.0.1/app-readme.md.gotmpl b/charts/traefik/1.0.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/traefik/1.0.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/traefik/1.0.0/charts/cert-manager-v1.2.0.tgz b/charts/traefik/1.0.1/charts/cert-manager-v1.2.0.tgz similarity index 100% rename from charts/traefik/1.0.0/charts/cert-manager-v1.2.0.tgz rename to charts/traefik/1.0.1/charts/cert-manager-v1.2.0.tgz diff --git a/charts/traefik/1.0.0/charts/reflector-5.4.17.tgz b/charts/traefik/1.0.1/charts/reflector-5.4.17.tgz similarity index 100% rename from charts/traefik/1.0.0/charts/reflector-5.4.17.tgz rename to charts/traefik/1.0.1/charts/reflector-5.4.17.tgz diff --git a/charts/traefik/1.0.0/crds/ingressroute.yaml b/charts/traefik/1.0.1/crds/ingressroute.yaml similarity index 100% rename from charts/traefik/1.0.0/crds/ingressroute.yaml rename to charts/traefik/1.0.1/crds/ingressroute.yaml diff --git a/charts/traefik/1.0.0/crds/ingressroutetcp.yaml b/charts/traefik/1.0.1/crds/ingressroutetcp.yaml similarity index 100% rename from charts/traefik/1.0.0/crds/ingressroutetcp.yaml rename to charts/traefik/1.0.1/crds/ingressroutetcp.yaml diff --git a/charts/traefik/1.0.0/crds/ingressrouteudp.yaml b/charts/traefik/1.0.1/crds/ingressrouteudp.yaml similarity index 100% rename from charts/traefik/1.0.0/crds/ingressrouteudp.yaml rename to charts/traefik/1.0.1/crds/ingressrouteudp.yaml diff --git a/charts/traefik/1.0.0/crds/middlewares.yaml b/charts/traefik/1.0.1/crds/middlewares.yaml similarity index 100% rename from charts/traefik/1.0.0/crds/middlewares.yaml rename to charts/traefik/1.0.1/crds/middlewares.yaml diff --git a/charts/traefik/1.0.0/crds/serverstransports.yaml b/charts/traefik/1.0.1/crds/serverstransports.yaml similarity index 93% rename from charts/traefik/1.0.0/crds/serverstransports.yaml rename to charts/traefik/1.0.1/crds/serverstransports.yaml index e08f18727df..689a57f71bd 100644 --- a/charts/traefik/1.0.0/crds/serverstransports.yaml +++ b/charts/traefik/1.0.1/crds/serverstransports.yaml @@ -9,4 +9,4 @@ spec: kind: ServersTransport plural: serverstransports singular: serverstransport - scope: Namespaced \ No newline at end of file + scope: Namespaced diff --git a/charts/traefik/1.0.0/crds/tlsoptions.yaml b/charts/traefik/1.0.1/crds/tlsoptions.yaml similarity index 100% rename from charts/traefik/1.0.0/crds/tlsoptions.yaml rename to charts/traefik/1.0.1/crds/tlsoptions.yaml diff --git a/charts/traefik/1.0.0/crds/tlsstores.yaml b/charts/traefik/1.0.1/crds/tlsstores.yaml similarity index 100% rename from charts/traefik/1.0.0/crds/tlsstores.yaml rename to charts/traefik/1.0.1/crds/tlsstores.yaml diff --git a/charts/traefik/1.0.0/crds/traefikservices.yaml b/charts/traefik/1.0.1/crds/traefikservices.yaml similarity index 100% rename from charts/traefik/1.0.0/crds/traefikservices.yaml rename to charts/traefik/1.0.1/crds/traefikservices.yaml diff --git a/charts/traefik/1.0.1/docs/CONFIG.md b/charts/traefik/1.0.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/traefik/1.0.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/traefik/1.0.1/docs/CONFIG.md.gotmpl b/charts/traefik/1.0.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/traefik/1.0.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/traefik/1.0.0/questions.yaml b/charts/traefik/1.0.1/questions.yaml similarity index 99% rename from charts/traefik/1.0.0/questions.yaml rename to charts/traefik/1.0.1/questions.yaml index cb8b55f3b0d..6b70b919c0b 100644 --- a/charts/traefik/1.0.0/questions.yaml +++ b/charts/traefik/1.0.1/questions.yaml @@ -228,7 +228,7 @@ questions: schema: type: string default: "" - + - variable: certmanager description: "Configure CertManager Settings" label: "CertManager Settings" @@ -502,4 +502,4 @@ questions: schema: type: boolean default: false - required: true \ No newline at end of file + required: true diff --git a/charts/traefik/1.0.0/templates/_helpers.tpl b/charts/traefik/1.0.1/templates/_helpers.tpl similarity index 99% rename from charts/traefik/1.0.0/templates/_helpers.tpl rename to charts/traefik/1.0.1/templates/_helpers.tpl index 4cc3a8cf82d..f7b055fa82e 100644 --- a/charts/traefik/1.0.0/templates/_helpers.tpl +++ b/charts/traefik/1.0.1/templates/_helpers.tpl @@ -59,4 +59,4 @@ Construct a comma-separated list of whitelisted namespaces {{- end -}} {{- define "providers.kubernetesCRD.namespaces" -}} {{- default .Release.Namespace (join "," .Values.providers.kubernetesCRD.namespaces) }} -{{- end -}} \ No newline at end of file +{{- end -}} diff --git a/charts/traefik/1.0.0/templates/_podtemplate.tpl b/charts/traefik/1.0.1/templates/_podtemplate.tpl similarity index 100% rename from charts/traefik/1.0.0/templates/_podtemplate.tpl rename to charts/traefik/1.0.1/templates/_podtemplate.tpl diff --git a/charts/traefik/1.0.0/templates/custom/_appStorage.tpl b/charts/traefik/1.0.1/templates/custom/_appStorage.tpl similarity index 100% rename from charts/traefik/1.0.0/templates/custom/_appStorage.tpl rename to charts/traefik/1.0.1/templates/custom/_appStorage.tpl diff --git a/charts/traefik/1.0.0/templates/custom/appingress.yaml b/charts/traefik/1.0.1/templates/custom/appingress.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/custom/appingress.yaml rename to charts/traefik/1.0.1/templates/custom/appingress.yaml diff --git a/charts/traefik/1.0.0/templates/custom/clusterissuer.yaml b/charts/traefik/1.0.1/templates/custom/clusterissuer.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/custom/clusterissuer.yaml rename to charts/traefik/1.0.1/templates/custom/clusterissuer.yaml diff --git a/charts/traefik/1.0.0/templates/custom/delay_postinstall.yaml b/charts/traefik/1.0.1/templates/custom/delay_postinstall.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/custom/delay_postinstall.yaml rename to charts/traefik/1.0.1/templates/custom/delay_postinstall.yaml diff --git a/charts/traefik/1.0.0/templates/custom/middlewares.yaml b/charts/traefik/1.0.1/templates/custom/middlewares.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/custom/middlewares.yaml rename to charts/traefik/1.0.1/templates/custom/middlewares.yaml diff --git a/charts/traefik/1.0.0/templates/custom/tlsoptions.yaml b/charts/traefik/1.0.1/templates/custom/tlsoptions.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/custom/tlsoptions.yaml rename to charts/traefik/1.0.1/templates/custom/tlsoptions.yaml diff --git a/charts/traefik/1.0.0/templates/custom/wildcard.yaml b/charts/traefik/1.0.1/templates/custom/wildcard.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/custom/wildcard.yaml rename to charts/traefik/1.0.1/templates/custom/wildcard.yaml diff --git a/charts/traefik/1.0.0/templates/daemonset.yaml b/charts/traefik/1.0.1/templates/daemonset.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/daemonset.yaml rename to charts/traefik/1.0.1/templates/daemonset.yaml diff --git a/charts/traefik/1.0.0/templates/dashboard-hook-ingressroute.yaml b/charts/traefik/1.0.1/templates/dashboard-hook-ingressroute.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/dashboard-hook-ingressroute.yaml rename to charts/traefik/1.0.1/templates/dashboard-hook-ingressroute.yaml diff --git a/charts/traefik/1.0.0/templates/deployment.yaml b/charts/traefik/1.0.1/templates/deployment.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/deployment.yaml rename to charts/traefik/1.0.1/templates/deployment.yaml diff --git a/charts/traefik/1.0.0/templates/gateway.yaml b/charts/traefik/1.0.1/templates/gateway.yaml similarity index 83% rename from charts/traefik/1.0.0/templates/gateway.yaml rename to charts/traefik/1.0.1/templates/gateway.yaml index 0fcaa399889..85194211fe5 100644 --- a/charts/traefik/1.0.0/templates/gateway.yaml +++ b/charts/traefik/1.0.1/templates/gateway.yaml @@ -1,19 +1,19 @@ {{- if .Values.experimental.kubernetesGateway.enabled }} ---- +--- apiVersion: networking.x-k8s.io/v1alpha1 kind: Gateway -metadata: +metadata: name: traefik-gateway namespace: default -spec: +spec: gatewayClassName: traefik - listeners: + listeners: - port: {{ .Values.ports.web.port }} protocol: HTTP - routes: + routes: kind: HTTPRoute - selector: - matchLabels: + selector: + matchLabels: app: {{ .Values.experimental.kubernetesGateway.appLabelSelector }} {{- range $index, $cert:= .Values.experimental.kubernetesGateway.certificates }} @@ -24,10 +24,10 @@ spec: name: {{ $cert.name }} group: {{ $cert.group }} kind: {{ $cert.kind }} - routes: + routes: kind: HTTPRoute - selector: - matchLabels: + selector: + matchLabels: app: {{ $.Values.experimental.kubernetesGateway.appLabelSelector }} {{- end }} {{- end }} diff --git a/charts/traefik/1.0.0/templates/gatewayclass.yaml b/charts/traefik/1.0.1/templates/gatewayclass.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/gatewayclass.yaml rename to charts/traefik/1.0.1/templates/gatewayclass.yaml diff --git a/charts/traefik/1.0.0/templates/hpa.yaml b/charts/traefik/1.0.1/templates/hpa.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/hpa.yaml rename to charts/traefik/1.0.1/templates/hpa.yaml diff --git a/charts/traefik/1.0.0/templates/ingressclass.yaml b/charts/traefik/1.0.1/templates/ingressclass.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/ingressclass.yaml rename to charts/traefik/1.0.1/templates/ingressclass.yaml diff --git a/charts/traefik/1.0.0/templates/poddisruptionbudget.yaml b/charts/traefik/1.0.1/templates/poddisruptionbudget.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/poddisruptionbudget.yaml rename to charts/traefik/1.0.1/templates/poddisruptionbudget.yaml diff --git a/charts/traefik/1.0.0/templates/pvc.yaml b/charts/traefik/1.0.1/templates/pvc.yaml similarity index 99% rename from charts/traefik/1.0.0/templates/pvc.yaml rename to charts/traefik/1.0.1/templates/pvc.yaml index 51f6eed2154..40728d08f2f 100644 --- a/charts/traefik/1.0.0/templates/pvc.yaml +++ b/charts/traefik/1.0.1/templates/pvc.yaml @@ -22,4 +22,3 @@ spec: storageClassName: {{ .Values.persistence.storageClass | quote }} {{- end }} {{- end -}} - diff --git a/charts/traefik/1.0.0/templates/rbac/clusterrole.yaml b/charts/traefik/1.0.1/templates/rbac/clusterrole.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/rbac/clusterrole.yaml rename to charts/traefik/1.0.1/templates/rbac/clusterrole.yaml diff --git a/charts/traefik/1.0.0/templates/rbac/clusterrolebinding.yaml b/charts/traefik/1.0.1/templates/rbac/clusterrolebinding.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/rbac/clusterrolebinding.yaml rename to charts/traefik/1.0.1/templates/rbac/clusterrolebinding.yaml diff --git a/charts/traefik/1.0.0/templates/rbac/podsecuritypolicy.yaml b/charts/traefik/1.0.1/templates/rbac/podsecuritypolicy.yaml similarity index 99% rename from charts/traefik/1.0.0/templates/rbac/podsecuritypolicy.yaml rename to charts/traefik/1.0.1/templates/rbac/podsecuritypolicy.yaml index eec3f0a633c..19f430a92ea 100644 --- a/charts/traefik/1.0.0/templates/rbac/podsecuritypolicy.yaml +++ b/charts/traefik/1.0.1/templates/rbac/podsecuritypolicy.yaml @@ -66,4 +66,4 @@ spec: {{- if .Values.persistence.enabled }} - persistentVolumeClaim {{- end -}} -{{- end -}} \ No newline at end of file +{{- end -}} diff --git a/charts/traefik/1.0.0/templates/rbac/role.yaml b/charts/traefik/1.0.1/templates/rbac/role.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/rbac/role.yaml rename to charts/traefik/1.0.1/templates/rbac/role.yaml diff --git a/charts/traefik/1.0.0/templates/rbac/rolebinding.yaml b/charts/traefik/1.0.1/templates/rbac/rolebinding.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/rbac/rolebinding.yaml rename to charts/traefik/1.0.1/templates/rbac/rolebinding.yaml diff --git a/charts/traefik/1.0.0/templates/rbac/serviceaccount.yaml b/charts/traefik/1.0.1/templates/rbac/serviceaccount.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/rbac/serviceaccount.yaml rename to charts/traefik/1.0.1/templates/rbac/serviceaccount.yaml diff --git a/charts/traefik/1.0.0/templates/service.yaml b/charts/traefik/1.0.1/templates/service.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/service.yaml rename to charts/traefik/1.0.1/templates/service.yaml diff --git a/charts/traefik/1.0.0/templates/tlsoption.yaml b/charts/traefik/1.0.1/templates/tlsoption.yaml similarity index 100% rename from charts/traefik/1.0.0/templates/tlsoption.yaml rename to charts/traefik/1.0.1/templates/tlsoption.yaml diff --git a/charts/traefik/1.0.0/test_values.yaml b/charts/traefik/1.0.1/test_values.yaml similarity index 99% rename from charts/traefik/1.0.0/test_values.yaml rename to charts/traefik/1.0.1/test_values.yaml index 64be7a55699..626d75efcfd 100644 --- a/charts/traefik/1.0.0/test_values.yaml +++ b/charts/traefik/1.0.1/test_values.yaml @@ -273,10 +273,10 @@ ports: # Set TLS at the entrypoint # https://doc.traefik.io/traefik/routing/entrypoints/#tls kms: - port: 51688 + port: 51688 # hostPort: 8443 expose: true - exposedPort: 1688 + exposedPort: 1688 # The port protocol (TCP/UDP) protocol: TCP # nodePort: 32443 @@ -512,7 +512,7 @@ appIngress: certType: "letsencrypt-prod" existingcert: "" authForwardURL: "" - host: "traefik.example.truecharts.org" + host: "traefik.example.truecharts.org" certmanager: # general @@ -549,7 +549,7 @@ certmanager: acmeDNS: host: "" acmednsjson: "placeholder" - + cert-manager: installCRDs: true extraArgs: diff --git a/charts/traefik/1.0.0/values.yaml b/charts/traefik/1.0.1/values.yaml similarity index 99% rename from charts/traefik/1.0.0/values.yaml rename to charts/traefik/1.0.1/values.yaml index 89098a7136f..cdd761cc8e4 100644 --- a/charts/traefik/1.0.0/values.yaml +++ b/charts/traefik/1.0.1/values.yaml @@ -272,10 +272,10 @@ ports: # Set TLS at the entrypoint # https://doc.traefik.io/traefik/routing/entrypoints/#tls kms: - port: 51688 + port: 51688 # hostPort: 8443 expose: true - exposedPort: 1688 + exposedPort: 1688 # The port protocol (TCP/UDP) protocol: TCP # nodePort: 32443 @@ -510,7 +510,7 @@ appIngress: certType: "letsencrypt-prod" existingcert: "" authForwardURL: "" - host: "traefik.example.truecharts.org" + host: "traefik.example.truecharts.org" certmanager: # general @@ -547,7 +547,7 @@ certmanager: acmeDNS: host: "" acmednsjson: "" - + cert-manager: installCRDs: true extraArgs: diff --git a/charts/transmission/1.3.0/README.md b/charts/transmission/1.3.0/README.md deleted file mode 100644 index 0acec02e624..00000000000 --- a/charts/transmission/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Transmission helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/transmission/1.3.0/app-readme.md b/charts/transmission/1.3.0/app-readme.md deleted file mode 100644 index 1f588a342b5..00000000000 --- a/charts/transmission/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Transmission - -Transmission chart is a chart designed to deploy Transmission in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/transmission/1.3.0/.helmignore b/charts/transmission/1.3.1/.helmignore similarity index 100% rename from charts/transmission/1.3.0/.helmignore rename to charts/transmission/1.3.1/.helmignore diff --git a/charts/transmission/1.3.0/Chart.lock b/charts/transmission/1.3.1/Chart.lock similarity index 100% rename from charts/transmission/1.3.0/Chart.lock rename to charts/transmission/1.3.1/Chart.lock diff --git a/charts/transmission/1.3.0/Chart.yaml b/charts/transmission/1.3.1/Chart.yaml similarity index 97% rename from charts/transmission/1.3.0/Chart.yaml rename to charts/transmission/1.3.1/Chart.yaml index bea06173b1c..65ab8338f7b 100644 --- a/charts/transmission/1.3.0/Chart.yaml +++ b/charts/transmission/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: version-v0.17.153 description: API Support for your favorite torrent trackers. name: transmission -version: 1.3.0 +version: 1.3.1 keywords: - transmission - torrent diff --git a/charts/transmission/1.3.1/README.md b/charts/transmission/1.3.1/README.md new file mode 100644 index 00000000000..8f01f35e2b4 --- /dev/null +++ b/charts/transmission/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: version-v0.17.153](https://img.shields.io/badge/AppVersion-version--v0.17.153-informational?style=flat-square) + +API Support for your favorite torrent trackers. + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `transmission` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `transmission` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/transmission/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/transmission/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/transmission/1.3.1/app-readme.md b/charts/transmission/1.3.1/app-readme.md new file mode 100644 index 00000000000..0114ba37abe --- /dev/null +++ b/charts/transmission/1.3.1/app-readme.md @@ -0,0 +1 @@ +API Support for your favorite torrent trackers. diff --git a/charts/transmission/1.3.1/app-readme.md.gotmpl b/charts/transmission/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/transmission/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/transmission/1.3.0/charts/common-1.3.0.tgz b/charts/transmission/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/transmission/1.3.0/charts/common-1.3.0.tgz rename to charts/transmission/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/transmission/1.3.1/docs/CONFIG.md b/charts/transmission/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/transmission/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/transmission/1.3.1/docs/CONFIG.md.gotmpl b/charts/transmission/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/transmission/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/transmission/1.3.0/questions.yaml b/charts/transmission/1.3.1/questions.yaml similarity index 99% rename from charts/transmission/1.3.0/questions.yaml rename to charts/transmission/1.3.1/questions.yaml index e600aa56141..3983119b8f9 100644 --- a/charts/transmission/1.3.0/questions.yaml +++ b/charts/transmission/1.3.1/questions.yaml @@ -111,8 +111,8 @@ questions: label: "Value" schema: type: string - - + + # Enable Host Network - variable: hostNetwork group: "Networking" @@ -120,7 +120,7 @@ questions: schema: type: boolean default: false - + - variable: service group: "Networking" label: "Configure Service" @@ -158,7 +158,7 @@ questions: max: 65535 default: 36052 required: true - + - variable: appAdditionalServices group: "Networking" label: "Configure additional services" @@ -315,7 +315,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -371,7 +371,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/truecommand/1.3.0/templates/common.yaml b/charts/transmission/1.3.1/templates/common.yaml similarity index 100% rename from charts/truecommand/1.3.0/templates/common.yaml rename to charts/transmission/1.3.1/templates/common.yaml diff --git a/charts/transmission/1.3.0/test_values.yaml b/charts/transmission/1.3.1/test_values.yaml similarity index 100% rename from charts/transmission/1.3.0/test_values.yaml rename to charts/transmission/1.3.1/test_values.yaml diff --git a/charts/transmission/1.3.0/values.yaml b/charts/transmission/1.3.1/values.yaml similarity index 97% rename from charts/transmission/1.3.0/values.yaml rename to charts/transmission/1.3.1/values.yaml index c138a7a9905..9932e5834c1 100644 --- a/charts/transmission/1.3.0/values.yaml +++ b/charts/transmission/1.3.1/values.yaml @@ -48,7 +48,7 @@ appAdditionalServices: name: bittorrent-tcp protocol: TCP targetPort: 51413 - nodePort: 51413 + nodePort: 51413 udp: enabled: true type: ClusterIP diff --git a/charts/truecommand/1.3.0/README.md b/charts/truecommand/1.3.0/README.md deleted file mode 100644 index 9434975373f..00000000000 --- a/charts/truecommand/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Truecommand helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/truecommand/1.3.0/app-readme.md b/charts/truecommand/1.3.0/app-readme.md deleted file mode 100644 index ab74242660a..00000000000 --- a/charts/truecommand/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# Truecommand - -Truecommand chart is a chart designed to deploy Truecommand in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/truecommand/1.3.0/.helmignore b/charts/truecommand/1.3.1/.helmignore similarity index 100% rename from charts/truecommand/1.3.0/.helmignore rename to charts/truecommand/1.3.1/.helmignore diff --git a/charts/truecommand/1.3.0/Chart.lock b/charts/truecommand/1.3.1/Chart.lock similarity index 100% rename from charts/truecommand/1.3.0/Chart.lock rename to charts/truecommand/1.3.1/Chart.lock diff --git a/charts/truecommand/1.3.0/Chart.yaml b/charts/truecommand/1.3.1/Chart.yaml similarity index 97% rename from charts/truecommand/1.3.0/Chart.yaml rename to charts/truecommand/1.3.1/Chart.yaml index 4ac650d18f7..6b243f4724c 100644 --- a/charts/truecommand/1.3.0/Chart.yaml +++ b/charts/truecommand/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.3.2 description: Aggregated management of TrueNAS devices name: truecommand -version: 1.3.0 +version: 1.3.1 keywords: - truecommand home: https://github.com/truecharts/charts/tree/dev/charts/truecommand diff --git a/charts/truecommand/1.3.1/README.md b/charts/truecommand/1.3.1/README.md new file mode 100644 index 00000000000..6c63933fb2b --- /dev/null +++ b/charts/truecommand/1.3.1/README.md @@ -0,0 +1,51 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![AppVersion: 1.3.2](https://img.shields.io/badge/AppVersion-1.3.2-informational?style=flat-square) + +Aggregated management of TrueNAS devices + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `truecommand` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `truecommand` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/truecommand/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/truecommand/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/truecommand/1.3.1/app-readme.md b/charts/truecommand/1.3.1/app-readme.md new file mode 100644 index 00000000000..6216899e9e7 --- /dev/null +++ b/charts/truecommand/1.3.1/app-readme.md @@ -0,0 +1 @@ +Aggregated management of TrueNAS devices diff --git a/charts/truecommand/1.3.1/app-readme.md.gotmpl b/charts/truecommand/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/truecommand/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/truecommand/1.3.0/charts/common-1.3.0.tgz b/charts/truecommand/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/truecommand/1.3.0/charts/common-1.3.0.tgz rename to charts/truecommand/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/truecommand/1.3.1/docs/CONFIG.md b/charts/truecommand/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/truecommand/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/truecommand/1.3.1/docs/CONFIG.md.gotmpl b/charts/truecommand/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/truecommand/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/truecommand/1.3.0/questions.yaml b/charts/truecommand/1.3.1/questions.yaml similarity index 99% rename from charts/truecommand/1.3.0/questions.yaml rename to charts/truecommand/1.3.1/questions.yaml index d5b95dfbde7..80cf84b16ff 100644 --- a/charts/truecommand/1.3.0/questions.yaml +++ b/charts/truecommand/1.3.1/questions.yaml @@ -111,8 +111,8 @@ questions: label: "Value" schema: type: string - - + + # Enable Host Network - variable: hostNetwork group: "Networking" @@ -120,7 +120,7 @@ questions: schema: type: boolean default: false - + - variable: service group: "Networking" label: "Configure Service" @@ -189,7 +189,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -321,4 +321,4 @@ questions: label: "Forward Authentication URL" schema: type: string - default: "" \ No newline at end of file + default: "" diff --git a/charts/truecommand/1.3.0/templates/NOTES.txt b/charts/truecommand/1.3.1/templates/NOTES.txt similarity index 100% rename from charts/truecommand/1.3.0/templates/NOTES.txt rename to charts/truecommand/1.3.1/templates/NOTES.txt diff --git a/charts/tvheadend/1.3.0/templates/common.yaml b/charts/truecommand/1.3.1/templates/common.yaml similarity index 100% rename from charts/tvheadend/1.3.0/templates/common.yaml rename to charts/truecommand/1.3.1/templates/common.yaml diff --git a/charts/truecommand/1.3.0/test_values.yaml b/charts/truecommand/1.3.1/test_values.yaml similarity index 97% rename from charts/truecommand/1.3.0/test_values.yaml rename to charts/truecommand/1.3.1/test_values.yaml index 9b45f80250b..d0f99c518c9 100644 --- a/charts/truecommand/1.3.0/test_values.yaml +++ b/charts/truecommand/1.3.1/test_values.yaml @@ -47,4 +47,4 @@ appVolumeMounts: enabled: true emptyDir: true setPermissions: true - mountPath: "/data" \ No newline at end of file + mountPath: "/data" diff --git a/charts/truecommand/1.3.0/values.yaml b/charts/truecommand/1.3.1/values.yaml similarity index 100% rename from charts/truecommand/1.3.0/values.yaml rename to charts/truecommand/1.3.1/values.yaml diff --git a/charts/tvheadend/1.3.0/README.md b/charts/tvheadend/1.3.0/README.md deleted file mode 100644 index 87456319817..00000000000 --- a/charts/tvheadend/1.3.0/README.md +++ /dev/null @@ -1,43 +0,0 @@ -# tvheadend - -This is a helm chart for [tvheadend](https://github.com/tvheadend/tvheadend). - -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose).** - -## TL;DR; - -```shell -$ helm repo add k8s-at-home https://k8s-at-home.com/charts/ -$ helm install k8s-at-home/tvheadend -``` - -## Installing the Chart - -To install the chart with the release name `my-release`: - -```console -helm install my-release k8s-at-home/tvheadend -``` - -## Uninstalling the Chart - -To uninstall/delete the `my-release` deployment: - -```console -helm delete my-release --purge -``` -The command removes all the Kubernetes components associated with the chart and deletes the release. - -## Configuration -The chart's [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/tvheadend/values.yaml) file contains a set of suggested values for a minimal deployment. Further configuration options are found in the [common library](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml). - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, -```console -helm install tvheadend \ - --set env.TZ="America/New_York" \ - k8s-at-home/tvheadend -``` -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, -```console -helm install tvheadend k8s-at-home/tvheadend --values values.yaml -``` diff --git a/charts/tvheadend/1.3.0/app-readme.md b/charts/tvheadend/1.3.0/app-readme.md deleted file mode 100644 index b9a930c5141..00000000000 --- a/charts/tvheadend/1.3.0/app-readme.md +++ /dev/null @@ -1 +0,0 @@ -The tvheadend App is designed to deploy tvheadend in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/tvheadend/1.3.0/templates/NOTES.txt b/charts/tvheadend/1.3.0/templates/NOTES.txt deleted file mode 100644 index a4b771eb769..00000000000 --- a/charts/tvheadend/1.3.0/templates/NOTES.txt +++ /dev/null @@ -1 +0,0 @@ -{{- include "common.notes.defaultNotes" . -}} \ No newline at end of file diff --git a/charts/tvheadend/1.3.0/.helmignore b/charts/tvheadend/1.3.1/.helmignore similarity index 100% rename from charts/tvheadend/1.3.0/.helmignore rename to charts/tvheadend/1.3.1/.helmignore diff --git a/charts/tvheadend/1.3.0/Chart.lock b/charts/tvheadend/1.3.1/Chart.lock similarity index 100% rename from charts/tvheadend/1.3.0/Chart.lock rename to charts/tvheadend/1.3.1/Chart.lock diff --git a/charts/tvheadend/1.3.0/Chart.yaml b/charts/tvheadend/1.3.1/Chart.yaml similarity index 97% rename from charts/tvheadend/1.3.0/Chart.yaml rename to charts/tvheadend/1.3.1/Chart.yaml index 0be75149814..8b26af92bff 100644 --- a/charts/tvheadend/1.3.0/Chart.yaml +++ b/charts/tvheadend/1.3.1/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: TVheadend - a TV streaming server and digital video recorder name: tvheadend -version: 1.3.0 +version: 1.3.1 upstream_version: 1.1.2 keywords: - tv diff --git a/charts/tvheadend/1.3.0/LICENSE b/charts/tvheadend/1.3.1/LICENSE similarity index 100% rename from charts/tvheadend/1.3.0/LICENSE rename to charts/tvheadend/1.3.1/LICENSE diff --git a/charts/tvheadend/1.3.1/README.md b/charts/tvheadend/1.3.1/README.md new file mode 100644 index 00000000000..de1603960ff --- /dev/null +++ b/charts/tvheadend/1.3.1/README.md @@ -0,0 +1,50 @@ +# Introduction + +![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-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 + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `tvheadend` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `tvheadend` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/tvheadend/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/tvheadend/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/tvheadend/1.3.1/app-readme.md b/charts/tvheadend/1.3.1/app-readme.md new file mode 100644 index 00000000000..c3b5aec4ab4 --- /dev/null +++ b/charts/tvheadend/1.3.1/app-readme.md @@ -0,0 +1 @@ +TVheadend - a TV streaming server and digital video recorder diff --git a/charts/tvheadend/1.3.1/app-readme.md.gotmpl b/charts/tvheadend/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/tvheadend/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/tvheadend/1.3.0/charts/common-1.3.0.tgz b/charts/tvheadend/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/tvheadend/1.3.0/charts/common-1.3.0.tgz rename to charts/tvheadend/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/tvheadend/1.3.1/docs/CONFIG.md b/charts/tvheadend/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/tvheadend/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/tvheadend/1.3.1/docs/CONFIG.md.gotmpl b/charts/tvheadend/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/tvheadend/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/tvheadend/1.3.0/questions.yaml b/charts/tvheadend/1.3.1/questions.yaml similarity index 98% rename from charts/tvheadend/1.3.0/questions.yaml rename to charts/tvheadend/1.3.1/questions.yaml index 2dd82b06e77..a2ba7ba3a8d 100644 --- a/charts/tvheadend/1.3.0/questions.yaml +++ b/charts/tvheadend/1.3.1/questions.yaml @@ -149,8 +149,8 @@ questions: max: 65535 default: 38091 required: true - - + + - variable: appAdditionalServices group: "Networking" label: "Configure additional services" @@ -217,7 +217,7 @@ questions: max: 65535 default: 9982 required: false - + # Configure app volumes - variable: appVolumeMounts group: "Volume Mounts" @@ -247,7 +247,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: @@ -303,7 +303,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/tvheadend/1.3.1/templates/NOTES.txt b/charts/tvheadend/1.3.1/templates/NOTES.txt new file mode 100644 index 00000000000..90f7b653a50 --- /dev/null +++ b/charts/tvheadend/1.3.1/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "common.notes.defaultNotes" . -}} diff --git a/charts/zwavejs2mqtt/1.3.0/templates/common.yaml b/charts/tvheadend/1.3.1/templates/common.yaml similarity index 100% rename from charts/zwavejs2mqtt/1.3.0/templates/common.yaml rename to charts/tvheadend/1.3.1/templates/common.yaml diff --git a/charts/tvheadend/1.3.0/test_values.yaml b/charts/tvheadend/1.3.1/test_values.yaml similarity index 97% rename from charts/tvheadend/1.3.0/test_values.yaml rename to charts/tvheadend/1.3.1/test_values.yaml index ae465d740f1..29d390ee21f 100644 --- a/charts/tvheadend/1.3.0/test_values.yaml +++ b/charts/tvheadend/1.3.1/test_values.yaml @@ -30,7 +30,7 @@ persistence: mountPath: /recordings appIngressEnabled: false - + appVolumeMounts: config: @@ -43,15 +43,14 @@ appVolumeMounts: emptyDir: true #setPermissions: true mountPath: "/recordings" - + appAdditionalServicesEnabled: true appAdditionalServices: htsp: enabled: true type: ClusterIP - port: + port: port: 9982 name: htsp protocol: TCP targetPort: 9982 - diff --git a/charts/tvheadend/1.3.0/values.yaml b/charts/tvheadend/1.3.1/values.yaml similarity index 97% rename from charts/tvheadend/1.3.0/values.yaml rename to charts/tvheadend/1.3.1/values.yaml index 39c3953be22..797e88be6af 100644 --- a/charts/tvheadend/1.3.0/values.yaml +++ b/charts/tvheadend/1.3.1/values.yaml @@ -30,7 +30,7 @@ persistence: mountPath: /recordings appIngressEnabled: false - + # appVolumeMounts: # config: @@ -39,15 +39,14 @@ appIngressEnabled: false # recordings: # enabled: false # emptyDir: false - + appAdditionalServicesEnabled: true appAdditionalServices: htsp: enabled: true type: ClusterIP - port: + port: port: 9982 name: htsp protocol: TCP targetPort: 9982 - diff --git a/charts/zwavejs2mqtt/1.3.0/README.md b/charts/zwavejs2mqtt/1.3.0/README.md deleted file mode 100644 index 5eb700468f4..00000000000 --- a/charts/zwavejs2mqtt/1.3.0/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Helm chart - -## Configuration - -Please refer to questions.yaml for a detailed overview on supported configurable items. diff --git a/charts/zwavejs2mqtt/1.3.0/app-readme.md b/charts/zwavejs2mqtt/1.3.0/app-readme.md deleted file mode 100644 index 301ab8ddf04..00000000000 --- a/charts/zwavejs2mqtt/1.3.0/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -# zwavejsmqtt - -This is an EXPERIMENTAL chart designed to test deploying zwavejsmqtt in a TrueNAS SCALE kubernetes cluster. diff --git a/charts/zwavejs2mqtt/1.3.0/.helmignore b/charts/zwavejs2mqtt/1.3.1/.helmignore similarity index 100% rename from charts/zwavejs2mqtt/1.3.0/.helmignore rename to charts/zwavejs2mqtt/1.3.1/.helmignore diff --git a/charts/zwavejs2mqtt/1.3.0/Chart.lock b/charts/zwavejs2mqtt/1.3.1/Chart.lock similarity index 100% rename from charts/zwavejs2mqtt/1.3.0/Chart.lock rename to charts/zwavejs2mqtt/1.3.1/Chart.lock diff --git a/charts/zwavejs2mqtt/1.3.0/Chart.yaml b/charts/zwavejs2mqtt/1.3.1/Chart.yaml similarity index 97% rename from charts/zwavejs2mqtt/1.3.0/Chart.yaml rename to charts/zwavejs2mqtt/1.3.1/Chart.yaml index 9549c49b74f..bed7c7a1f6b 100644 --- a/charts/zwavejs2mqtt/1.3.0/Chart.yaml +++ b/charts/zwavejs2mqtt/1.3.1/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 appVersion: 1.1.1 -version: 1.3.0 +version: 1.3.1 upstream_version: 1.1.0 name: zwavejs2mqtt diff --git a/charts/zwavejs2mqtt/1.3.0/LICENSE b/charts/zwavejs2mqtt/1.3.1/LICENSE similarity index 100% rename from charts/zwavejs2mqtt/1.3.0/LICENSE rename to charts/zwavejs2mqtt/1.3.1/LICENSE diff --git a/charts/zwavejs2mqtt/1.3.1/README.md b/charts/zwavejs2mqtt/1.3.1/README.md new file mode 100644 index 00000000000..fe40d2aab15 --- /dev/null +++ b/charts/zwavejs2mqtt/1.3.1/README.md @@ -0,0 +1,52 @@ +# Introduction + +![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.1.1](https://img.shields.io/badge/AppVersion-1.1.1-informational?style=flat-square) + +Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue + +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 + +## Dependencies + +| Repository | Name | Version | +|------------|------|---------| +| https://charts.truecharts.org/ | common | 1.3.0 | + +## Installing the Chart + +To install the chart with the release name `zwavejs2mqtt` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `zwavejs2mqtt` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- 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/1.3.1/README.md.gotmpl b/charts/zwavejs2mqtt/1.3.1/README.md.gotmpl new file mode 100644 index 00000000000..ada46a5c57d --- /dev/null +++ b/charts/zwavejs2mqtt/1.3.1/README.md.gotmpl @@ -0,0 +1,95 @@ +{{- define "custom.introheader" -}} +# Introduction +{{- end -}} + +{{- define "custom.repository.organization" -}} +TrueCharts +{{- end -}} + +{{- define "custom.repository.url" -}} +https://github.com/truecharts/charts +{{- end -}} + +{{- define "custom.helm.url" -}} +https://charts.truecharts.org +{{- end -}} + +{{- define "custom.helm.path" -}} +{{ template "custom.repository.organization" . }}/{{ template "chart.name" . }} +{{- end -}} + +{{- define "custom.notes" -}} +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)** +{{- end -}} + +{{- define "custom.requirements" -}} +## Requirements + +{{ template "chart.kubeVersionLine" . }} +{{- end -}} + +{{- define "custom.dependencies" -}} +## Dependencies + +{{ template "chart.requirementsTable" . }} +{{- end -}} + +{{- define "custom.install" -}} +## Installing the Chart + +To install the chart with the release name `{{ template "chart.name" . }}` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form +{{- end -}} + +{{- define "custom.uninstall" -}} +## Uninstalling the Chart + +To uninstall the `{{ template "chart.name" . }}` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. +{{- end -}} + +{{- define "custom.configuration.header" -}} +## Configuration +{{- end -}} + +{{- define "custom.support" -}} +## Support + +- See the [Wiki](https://wiki.truecharts.org) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) +- Ask a [question](https://github.com/truecharts/charts/discussions) +{{- end -}} + +{{ template "custom.introheader" . }} + +{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} + +{{ template "chart.description" . }} + +{{ template "custom.notes" . }} + +{{ template "chart.sourcesSection" . }} + +{{ template "custom.requirements" . }} + +{{ template "custom.dependencies" . }} + +{{ template "custom.install" . }} + +{{ template "custom.uninstall" . }} + +{{ template "custom.support" . }} + +{{ template "helm-docs.versionFooter" . }} diff --git a/charts/zwavejs2mqtt/1.3.1/app-readme.md b/charts/zwavejs2mqtt/1.3.1/app-readme.md new file mode 100644 index 00000000000..20e55701f5e --- /dev/null +++ b/charts/zwavejs2mqtt/1.3.1/app-readme.md @@ -0,0 +1 @@ +Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue diff --git a/charts/zwavejs2mqtt/1.3.1/app-readme.md.gotmpl b/charts/zwavejs2mqtt/1.3.1/app-readme.md.gotmpl new file mode 100644 index 00000000000..4e52f6ec229 --- /dev/null +++ b/charts/zwavejs2mqtt/1.3.1/app-readme.md.gotmpl @@ -0,0 +1,5 @@ +{{- define "custom.notes" -}} +{{- end -}} + +{{ template "chart.description" . }} +{{ template "custom.notes" . }} diff --git a/charts/zwavejs2mqtt/1.3.0/charts/common-1.3.0.tgz b/charts/zwavejs2mqtt/1.3.1/charts/common-1.3.0.tgz similarity index 100% rename from charts/zwavejs2mqtt/1.3.0/charts/common-1.3.0.tgz rename to charts/zwavejs2mqtt/1.3.1/charts/common-1.3.0.tgz diff --git a/charts/zwavejs2mqtt/1.3.1/docs/CONFIG.md b/charts/zwavejs2mqtt/1.3.1/docs/CONFIG.md new file mode 100644 index 00000000000..cc20c8c78ba --- /dev/null +++ b/charts/zwavejs2mqtt/1.3.1/docs/CONFIG.md @@ -0,0 +1,3 @@ +# Configuration Options + +N/A diff --git a/charts/zwavejs2mqtt/1.3.1/docs/CONFIG.md.gotmpl b/charts/zwavejs2mqtt/1.3.1/docs/CONFIG.md.gotmpl new file mode 100644 index 00000000000..0242e267803 --- /dev/null +++ b/charts/zwavejs2mqtt/1.3.1/docs/CONFIG.md.gotmpl @@ -0,0 +1,11 @@ +{{- define "custom.custom.configuration.header" -}} +# Configuration Options +{{- end -}} + +{{- define "custom.custom.configuration" -}} +{{ template "custom.custom.configuration.header" . }} + +N/A +{{- end -}} + +{{ template "custom.custom.configuration" . }} diff --git a/charts/zwavejs2mqtt/1.3.0/questions.yaml b/charts/zwavejs2mqtt/1.3.1/questions.yaml similarity index 99% rename from charts/zwavejs2mqtt/1.3.0/questions.yaml rename to charts/zwavejs2mqtt/1.3.1/questions.yaml index 7987abd8a37..71cf2580ac1 100644 --- a/charts/zwavejs2mqtt/1.3.0/questions.yaml +++ b/charts/zwavejs2mqtt/1.3.1/questions.yaml @@ -150,7 +150,7 @@ questions: default: 38091 required: true - + - variable: appAdditionalServices group: "Networking" label: "Configure additional services" @@ -217,8 +217,8 @@ questions: max: 65535 default: 53000 required: false - - + + # Configure app volumes - variable: appVolumeMounts group: "Volume Mounts" @@ -248,7 +248,7 @@ questions: schema: type: boolean default: true - hidden: false + hidden: false - variable: emptyDir label: "emptyDir" schema: diff --git a/charts/zwavejs2mqtt/1.3.1/templates/common.yaml b/charts/zwavejs2mqtt/1.3.1/templates/common.yaml new file mode 100644 index 00000000000..a6613c2ce21 --- /dev/null +++ b/charts/zwavejs2mqtt/1.3.1/templates/common.yaml @@ -0,0 +1 @@ +{{ include "common.all" . }} diff --git a/charts/zwavejs2mqtt/1.3.0/test_values.yaml b/charts/zwavejs2mqtt/1.3.1/test_values.yaml similarity index 99% rename from charts/zwavejs2mqtt/1.3.0/test_values.yaml rename to charts/zwavejs2mqtt/1.3.1/test_values.yaml index fbb6a03183f..4d54103448d 100644 --- a/charts/zwavejs2mqtt/1.3.0/test_values.yaml +++ b/charts/zwavejs2mqtt/1.3.1/test_values.yaml @@ -121,7 +121,7 @@ appAdditionalServices: ws: enabled: true type: ClusterIP - port: + port: port: 3000 name: ws protocol: TCP diff --git a/charts/zwavejs2mqtt/1.3.0/values.yaml b/charts/zwavejs2mqtt/1.3.1/values.yaml similarity index 98% rename from charts/zwavejs2mqtt/1.3.0/values.yaml rename to charts/zwavejs2mqtt/1.3.1/values.yaml index 3bd8f3792d6..c859d84aee6 100644 --- a/charts/zwavejs2mqtt/1.3.0/values.yaml +++ b/charts/zwavejs2mqtt/1.3.1/values.yaml @@ -132,8 +132,8 @@ appAdditionalServices: ws: enabled: true type: ClusterIP - port: + port: port: 3000 name: ws protocol: TCP - targetPort: 3000 \ No newline at end of file + targetPort: 3000 diff --git a/library/common-test/Chart.yaml b/library/common-test/Chart.yaml index e7825fb5011..7513a3ddc5f 100644 --- a/library/common-test/Chart.yaml +++ b/library/common-test/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: common-test description: Helper chart to test different use cases of the common library -version: 1.3.0 +version: 1.3.1 kubeVersion: ">=1.16.0-0" keywords: - truecharts diff --git a/library/common-test/README.md b/library/common-test/README.md new file mode 100644 index 00000000000..85a2faa4bc6 --- /dev/null +++ b/library/common-test/README.md @@ -0,0 +1,60 @@ +# common-test + +![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) + +Helper chart to test different use cases of the common library + +**Homepage:** + +## Maintainers + +| Name | Email | Url | +| ---- | ------ | --- | +| truecharts | | | + +## Requirements + +Kubernetes: `>=1.16.0-0` + +| Repository | Name | Version | +|------------|------|---------| +| file://../common | common | n/a | + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| appAdditionalServices.extra-tcp.enabled | bool | `true` | | +| appAdditionalServices.extra-tcp.port.name | string | `"tcp-test"` | | +| appAdditionalServices.extra-tcp.port.port | int | `51414` | | +| appAdditionalServices.extra-tcp.port.protocol | string | `"TCP"` | | +| appAdditionalServices.extra-tcp.port.targetPort | int | `51414` | | +| appAdditionalServices.extra-tcp.type | string | `"ClusterIP"` | | +| appAdditionalServices.extra-udp.enabled | bool | `true` | | +| appAdditionalServices.extra-udp.port.name | string | `"udp-test"` | | +| appAdditionalServices.extra-udp.port.port | int | `51414` | | +| appAdditionalServices.extra-udp.port.protocol | string | `"UDP"` | | +| appAdditionalServices.extra-udp.port.targetPort | int | `51414` | | +| appAdditionalServices.extra-udp.type | string | `"ClusterIP"` | | +| appAdditionalServicesEnabled | bool | `true` | | +| appVolumeMounts.data.datasetName | string | `"data"` | | +| appVolumeMounts.data.emptyDir | bool | `true` | | +| appVolumeMounts.data.enabled | bool | `true` | | +| appVolumeMounts.data.hostPath | string | `""` | | +| appVolumeMounts.data.hostPathEnabled | bool | `false` | | +| appVolumeMounts.data.mountPath | string | `"/data"` | | +| appVolumeMounts.test.datasetName | string | `"test"` | | +| appVolumeMounts.test.emptyDir | bool | `true` | | +| appVolumeMounts.test.enabled | bool | `true` | | +| appVolumeMounts.test.hostPath | string | `""` | | +| appVolumeMounts.test.hostPathEnabled | bool | `false` | | +| appVolumeMounts.test.mountPath | string | `"/test"` | | +| fixMountPermissions | bool | `false` | | +| image.pullPolicy | string | `"IfNotPresent"` | | +| image.repository | string | `"b4bz/homer"` | | +| image.tag | string | `"latest"` | | +| ingress.enabled | bool | `true` | | +| service.port.port | int | `8080` | | + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/library/common-test/ci/codeserver-values.yaml b/library/common-test/ci/codeserver-values.yaml index 41a8ead18ac..183aa4455e9 100644 --- a/library/common-test/ci/codeserver-values.yaml +++ b/library/common-test/ci/codeserver-values.yaml @@ -25,7 +25,7 @@ addons: volumeMounts: - name: config mountPath: /www/assets - + fixMountPermissions: false appVolumeMounts: data: @@ -42,7 +42,7 @@ appVolumeMounts: mountPath: "/test" hostPathEnabled: true hostPath: "/tmp" - + appAdditionalServicesEnabled: true appAdditionalServices: extra-tcp: @@ -60,4 +60,4 @@ appAdditionalServices: port: 51414 name: udp-test protocol: UDP - targetPort: 51414 \ No newline at end of file + targetPort: 51414 diff --git a/library/common/Chart.yaml b/library/common/Chart.yaml index b8144748480..dae88a08b61 100644 --- a/library/common/Chart.yaml +++ b/library/common/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: common description: Function library for TrueCharts type: library -version: 1.3.0 +version: 1.3.1 kubeVersion: ">=1.16.0-0" # upstream_version: 3.0.1 diff --git a/library/common/README.md b/library/common/README.md index 9291a8209c2..ccb93b6e641 100644 --- a/library/common/README.md +++ b/library/common/README.md @@ -1,99 +1,151 @@ -# Library chart for k8s@home media charts +# common -**WARNING: THIS CHART IS NOT MEANT TO BE INSTALLED DIRECTLY** +![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square) -This is a [Helm Library Chart](https://helm.sh/docs/topics/library_charts/#helm). It's purpose is for grouping common logic between the k8s@home charts. +Function library for TrueCharts -Since a lot of charts follow the same pattern this library was built to reduce maintenance cost between the charts that use it and try achieve a goal of being DRY. +**Homepage:** -## Introduction +## Maintainers -This chart provides common template helpers which can be used to develop new charts using [Helm](https://helm.sh) package manager. +| Name | Email | Url | +| ---- | ------ | --- | +| truecharts | | | -## :star2: Changelog +## Requirements -Please refer to [CHANGELOG.md](CHANGELOG.md) for an overview of notable changes to the chart. **This is especially important for major version updates!** +Kubernetes: `>=1.16.0-0` -## TL;DR +## Values -When using one of the many charts that uses this library be sure to view this [values.yaml](./values.yaml) for configuration options. Any setting here can be used to define what values your helm deployment will use. +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| PGID | int | `568` | | +| PUID | int | `568` | | +| UMASK | string | `"002"` | | +| additionalContainers | list | `[]` | | +| additionalVolumeMounts | list | `[]` | | +| additionalVolumes | list | `[]` | | +| addons.codeserver.args[0] | string | `"--auth"` | | +| addons.codeserver.args[1] | string | `"none"` | | +| addons.codeserver.enabled | bool | `false` | | +| addons.codeserver.env | object | `{}` | | +| addons.codeserver.image.pullPolicy | string | `"IfNotPresent"` | | +| addons.codeserver.image.repository | string | `"codercom/code-server"` | | +| addons.codeserver.image.tag | string | `"3.7.4"` | | +| addons.codeserver.ingress.annotations | object | `{}` | | +| addons.codeserver.ingress.enabled | bool | `false` | | +| addons.codeserver.ingress.hosts[0].host | string | `"code.chart-example.local"` | | +| addons.codeserver.ingress.hosts[0].paths[0].path | string | `"/"` | | +| addons.codeserver.ingress.hosts[0].paths[0].pathType | string | `"Prefix"` | | +| addons.codeserver.ingress.labels | object | `{}` | | +| addons.codeserver.ingress.nameSuffix | string | `"codeserver"` | | +| addons.codeserver.ingress.tls | list | `[]` | | +| addons.codeserver.securityContext.runAsUser | int | `0` | | +| addons.codeserver.service.annotations | object | `{}` | | +| addons.codeserver.service.enabled | bool | `true` | | +| addons.codeserver.service.labels | object | `{}` | | +| addons.codeserver.service.port.name | string | `"codeserver"` | | +| addons.codeserver.service.port.port | int | `12321` | | +| addons.codeserver.service.port.protocol | string | `"TCP"` | | +| addons.codeserver.service.port.targetPort | string | `"codeserver"` | | +| addons.codeserver.service.type | string | `"ClusterIP"` | | +| addons.codeserver.volumeMounts | list | `[]` | | +| addons.codeserver.workingDir | string | `""` | | +| addons.vpn.additionalVolumeMounts | list | `[]` | | +| addons.vpn.configFile | string | `nil` | | +| addons.vpn.enabled | bool | `false` | | +| addons.vpn.env | object | `{}` | | +| addons.vpn.livenessProbe | object | `{}` | | +| addons.vpn.networkPolicy.egress | string | `nil` | | +| addons.vpn.networkPolicy.enabled | bool | `false` | | +| addons.vpn.openvpn.auth | string | `nil` | | +| addons.vpn.openvpn.authSecret | string | `nil` | | +| addons.vpn.openvpn.image.pullPolicy | string | `"IfNotPresent"` | | +| addons.vpn.openvpn.image.repository | string | `"dperson/openvpn-client"` | | +| addons.vpn.openvpn.image.tag | string | `"latest"` | | +| addons.vpn.scripts.down | string | `nil` | | +| addons.vpn.scripts.up | string | `nil` | | +| addons.vpn.securityContext.capabilities.add[0] | string | `"NET_ADMIN"` | | +| addons.vpn.securityContext.capabilities.add[1] | string | `"SYS_MODULE"` | | +| addons.vpn.type | string | `"openvpn"` | | +| addons.vpn.wireguard.image.pullPolicy | string | `"IfNotPresent"` | | +| addons.vpn.wireguard.image.repository | string | `"k8sathome/wireguard"` | | +| addons.vpn.wireguard.image.tag | string | `"1.0.20200827"` | | +| affinity | object | `{}` | | +| args | list | `[]` | | +| command | list | `[]` | | +| controllerAnnotations | object | `{}` | | +| controllerLabels | object | `{}` | | +| controllerType | string | `"deployment"` | | +| dnsPolicy | string | `"ClusterFirst"` | | +| enableServiceLinks | bool | `true` | | +| env | object | `{}` | | +| envFrom | list | `[]` | | +| envTpl | object | `{}` | | +| envValueFrom | object | `{}` | | +| fixMountPermissions | bool | `true` | | +| fullnameOverride | string | `""` | | +| hostAliases | list | `[]` | | +| hostNetwork | bool | `false` | | +| ingress.additionalIngresses | list | `[]` | | +| ingress.annotations | object | `{}` | | +| ingress.enabled | bool | `false` | | +| ingress.hosts[0].host | string | `"chart-example.local"` | | +| ingress.hosts[0].paths[0].path | string | `"/"` | | +| ingress.hosts[0].paths[0].pathType | string | `"Prefix"` | | +| ingress.labels | object | `{}` | | +| ingress.tls | list | `[]` | | +| initContainers | list | `[]` | | +| nameOverride | string | `""` | | +| nodeSelector | object | `{}` | | +| persistence.config.accessMode | string | `"ReadWriteOnce"` | | +| persistence.config.enabled | bool | `false` | | +| persistence.config.mountPath | string | `"/config"` | | +| persistence.config.size | string | `"1Gi"` | | +| persistence.config.skipuninstall | bool | `false` | | +| persistence.shared.emptyDir | bool | `true` | | +| persistence.shared.enabled | bool | `false` | | +| persistence.shared.mountPath | string | `"/shared"` | | +| podAnnotations | object | `{}` | | +| podSecurityContext | object | `{}` | | +| probes.liveness.custom | bool | `false` | | +| probes.liveness.enabled | bool | `true` | | +| probes.liveness.spec.failureThreshold | int | `5` | | +| probes.liveness.spec.initialDelaySeconds | int | `30` | | +| probes.liveness.spec.periodSeconds | int | `10` | | +| probes.liveness.spec.timeoutSeconds | int | `10` | | +| probes.readiness.custom | bool | `false` | | +| probes.readiness.enabled | bool | `true` | | +| probes.readiness.spec.failureThreshold | int | `5` | | +| probes.readiness.spec.initialDelaySeconds | int | `30` | | +| probes.readiness.spec.periodSeconds | int | `10` | | +| probes.readiness.spec.timeoutSeconds | int | `10` | | +| probes.startup.custom | bool | `false` | | +| probes.startup.enabled | bool | `true` | | +| probes.startup.spec.failureThreshold | int | `30` | | +| probes.startup.spec.initialDelaySeconds | int | `5` | | +| probes.startup.spec.periodSeconds | int | `10` | | +| probes.startup.spec.timeoutSeconds | int | `10` | | +| replicas | int | `1` | | +| resources | object | `{}` | | +| securityContext | object | `{}` | | +| service.additionalPorts | list | `[]` | | +| service.additionalServices | list | `[]` | | +| service.annotations | object | `{}` | | +| service.enabled | bool | `true` | | +| service.labels | object | `{}` | | +| service.port.name | string | `nil` | | +| service.port.port | string | `nil` | | +| service.port.protocol | string | `"TCP"` | | +| service.port.targetPort | string | `nil` | | +| service.type | string | `"ClusterIP"` | | +| serviceAccount.annotations | object | `{}` | | +| serviceAccount.create | bool | `false` | | +| serviceAccount.name | string | `""` | | +| strategy.type | string | `"RollingUpdate"` | | +| tolerations | list | `[]` | | +| volumeClaimTemplates | list | `[]` | | -For example using the helm CLI tool - -```bash -helm install node-red \ - --set image.repository="nodered/node-red" \ - --set image.tag="1.2.5" \ - --set env.TZ="America/New_York" \ - k8s-at-home/node-red -``` - -or - -```yaml -# node-red-values.yaml -image: - repository: nodered/node-red - tag: 1.2.5 -env: - TZ: America/New_York -``` - -```bash -helm install node-red \ - --values=./node-red-values.yaml \ - k8s-at-home/node-red -``` - -## Creating a new chart - -First be sure to checkout the many charts that already use this like [qBittorrent](../qbittorrent/), [node-red](../node-red/) or the many others in this repository. - -Include this chart as a dependency in your `Chart.yaml` e.g. - -```yaml -# Chart.yaml -dependencies: - - name: common - version: x.x.x - repository: https://k8s-at-home.com/charts/ -``` - -Write a `values.yaml` with some basic defaults you want to present to the user e.g. - -```yaml -# Default values for node-red. - -image: - repository: nodered/node-red - pullPolicy: IfNotPresent - tag: 1.2.5 - -strategy: - type: Recreate - -# See more environment varaibles in the node-red documentation -# https://nodered.org/docs/getting-started/docker -env: {} - # TZ: - # NODE_OPTIONS: - # NODE_RED_ENABLE_PROJECTS: - # NODE_RED_ENABLE_SAFE_MODE: - # FLOWS: - -service: - port: - port: 1880 - -persistence: - data: - enabled: false - emptyDir: false - mountPath: /data -``` - -If testing locally make sure you update the dependencies with: - -```bash -helm dependency update -``` +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/library/common/templates/_all.tpl b/library/common/templates/_all.tpl index 3a992d15a78..d896c3b8c14 100644 --- a/library/common/templates/_all.tpl +++ b/library/common/templates/_all.tpl @@ -4,7 +4,7 @@ Main entrypoint for the common library chart. It will render all underlying temp {{- define "common.all" -}} {{- /* Merge the local chart values and the common chart defaults */ -}} {{- include "common.values.setup" . }} - + {{- /* Enable code-server add-on if required */ -}} {{- if .Values.addons.codeserver.enabled }} {{- include "common.addon.codeserver" . }} diff --git a/library/common/templates/_daemonset.tpl b/library/common/templates/_daemonset.tpl index db624217ddb..ce4e2450d68 100644 --- a/library/common/templates/_daemonset.tpl +++ b/library/common/templates/_daemonset.tpl @@ -1,5 +1,5 @@ {{/* -This template serves as the blueprint for the DaemonSet objects that are created +This template serves as the blueprint for the DaemonSet objects that are created within the common library. */}} {{- define "common.daemonset" -}} diff --git a/library/common/templates/_deployment.tpl b/library/common/templates/_deployment.tpl index d93503e9a26..3672dba806d 100644 --- a/library/common/templates/_deployment.tpl +++ b/library/common/templates/_deployment.tpl @@ -1,5 +1,5 @@ {{/* -This template serves as the blueprint for the Deployment objects that are created +This template serves as the blueprint for the Deployment objects that are created within the common library. */}} {{- define "common.deployment" -}} diff --git a/library/common/templates/_statefulset.tpl b/library/common/templates/_statefulset.tpl index ef2ec2f6e46..16a11e69086 100644 --- a/library/common/templates/_statefulset.tpl +++ b/library/common/templates/_statefulset.tpl @@ -1,5 +1,5 @@ {{/* -This template serves as the blueprint for the StatefulSet objects that are created +This template serves as the blueprint for the StatefulSet objects that are created within the common library. */}} {{- define "common.statefulset" -}} @@ -41,7 +41,7 @@ spec: - metadata: name: {{ $vct.name }} spec: - accessModes: + accessModes: - {{ required (printf "accessMode is required for vCT %v" $vct.name) $vct.accessMode | quote }} resources: requests: diff --git a/library/common/templates/addons/vpn/_networkpolicy.tpl b/library/common/templates/addons/vpn/_networkpolicy.tpl index c707d593ff9..2694dbc008b 100644 --- a/library/common/templates/addons/vpn/_networkpolicy.tpl +++ b/library/common/templates/addons/vpn/_networkpolicy.tpl @@ -14,7 +14,7 @@ spec: policyTypes: - Egress egress: - {{- with .Values.addons.vpn.networkPolicy.egress }} + {{- with .Values.addons.vpn.networkPolicy.egress }} {{- . | toYaml | nindent 4 }} {{- end -}} {{- end -}} diff --git a/library/common/templates/addons/vpn/_vpn.tpl b/library/common/templates/addons/vpn/_vpn.tpl index e8f028d088d..e3d52a58008 100644 --- a/library/common/templates/addons/vpn/_vpn.tpl +++ b/library/common/templates/addons/vpn/_vpn.tpl @@ -7,7 +7,7 @@ It will include / inject the required templates based on the given values. {{- if eq "openvpn" .Values.addons.vpn.type -}} {{- include "common.addon.openvpn" . }} {{- end -}} - + {{- if eq "wireguard" .Values.addons.vpn.type -}} {{- include "common.addon.wireguard" . }} {{- end -}} diff --git a/library/common/templates/addons/vpn/openvpn/_container.tpl b/library/common/templates/addons/vpn/openvpn/_container.tpl index 9742a524f50..7727a408fbb 100644 --- a/library/common/templates/addons/vpn/openvpn/_container.tpl +++ b/library/common/templates/addons/vpn/openvpn/_container.tpl @@ -15,7 +15,7 @@ env: - name: {{ $k }} value: {{ $v | quote }} {{- end }} -{{- end }} +{{- end }} {{- if or .Values.addons.vpn.openvpn.auth .Values.addons.vpn.openvpn.authSecret }} envFrom: - secretRef: diff --git a/library/common/templates/bitnami/_affinities.tpl b/library/common/templates/bitnami/_affinities.tpl index 493a6dc7e49..fa4bac62042 100644 --- a/library/common/templates/bitnami/_affinities.tpl +++ b/library/common/templates/bitnami/_affinities.tpl @@ -1,7 +1,7 @@ {{/* vim: set filetype=mustache: */}} {{/* -Return a soft nodeAffinity definition +Return a soft nodeAffinity definition {{ include "common.affinities.nodes.soft" (dict "key" "FOO" "values" (list "BAR" "BAZ")) -}} */}} {{- define "common.affinities.nodes.soft" -}} diff --git a/library/common/templates/bitnami/_secrets.tpl b/library/common/templates/bitnami/_secrets.tpl index 60b84a70195..2de53f0077d 100644 --- a/library/common/templates/bitnami/_secrets.tpl +++ b/library/common/templates/bitnami/_secrets.tpl @@ -98,7 +98,7 @@ Params: {{- $requiredPasswordError := include "common.validations.values.single.empty" $requiredPassword -}} {{- $passwordValidationErrors := list $requiredPasswordError -}} {{- include "common.errors.upgrade.passwords.empty" (dict "validationErrors" $passwordValidationErrors "context" $.context) -}} - + {{- if .strong }} {{- $subStr := list (lower (randAlpha 1)) (randNumeric 1) (upper (randAlpha 1)) | join "_" }} {{- $password = randAscii $passwordLength }} diff --git a/library/common/templates/bitnami/_utils.tpl b/library/common/templates/bitnami/_utils.tpl index ea083a249f8..4b5c12324dc 100644 --- a/library/common/templates/bitnami/_utils.tpl +++ b/library/common/templates/bitnami/_utils.tpl @@ -41,7 +41,7 @@ Usage: {{- $value = ( index $latestObj . ) -}} {{- $latestObj = $value -}} {{- end -}} -{{- printf "%v" (default "" $value) -}} +{{- printf "%v" (default "" $value) -}} {{- end -}} {{/* @@ -58,5 +58,5 @@ Usage: {{- $key = . }} {{- end -}} {{- end -}} -{{- printf "%s" $key -}} +{{- printf "%s" $key -}} {{- end -}} diff --git a/library/common/templates/classes/_ingress.tpl b/library/common/templates/classes/_ingress.tpl index 4f641c25386..bc33ef18977 100644 --- a/library/common/templates/classes/_ingress.tpl +++ b/library/common/templates/classes/_ingress.tpl @@ -1,5 +1,5 @@ {{/* -This template serves as a blueprint for all Ingress objects that are created +This template serves as a blueprint for all Ingress objects that are created within the common library. */}} {{- define "common.classes.ingress" -}} @@ -51,7 +51,7 @@ spec: rules: {{- range $values.hosts }} {{- if .hostTpl }} - - host: {{ tpl .hostTpl $ | quote }} + - host: {{ tpl .hostTpl $ | quote }} {{- else }} - host: {{ .host | quote }} {{- end }} diff --git a/library/common/templates/classes/_pvc.tpl b/library/common/templates/classes/_pvc.tpl index 208e74052d5..30840c9ad9c 100644 --- a/library/common/templates/classes/_pvc.tpl +++ b/library/common/templates/classes/_pvc.tpl @@ -1,5 +1,5 @@ {{/* -This template serves as a blueprint for all PersistentVolumeClaim objects that are created +This template serves as a blueprint for all PersistentVolumeClaim objects that are created within the common library. */}} {{- define "common.classes.pvc" -}} diff --git a/library/common/templates/classes/_service.tpl b/library/common/templates/classes/_service.tpl index d65014571a6..e95ce07ebcd 100644 --- a/library/common/templates/classes/_service.tpl +++ b/library/common/templates/classes/_service.tpl @@ -1,5 +1,5 @@ {{/* -This template serves as a blueprint for all Service objects that are created +This template serves as a blueprint for all Service objects that are created within the common library. */}} {{- define "common.classes.service" -}} diff --git a/library/common/templates/custom/_appingress.tpl b/library/common/templates/custom/_appingress.tpl index 114a9167a3d..43a2983337b 100644 --- a/library/common/templates/custom/_appingress.tpl +++ b/library/common/templates/custom/_appingress.tpl @@ -32,4 +32,4 @@ Renders the additional ingress objects from appIngress {{- end }} {{- end }} {{- end }} -{{- end }} \ No newline at end of file +{{- end }} diff --git a/library/common/templates/custom/_mountPermissions.yaml b/library/common/templates/custom/_mountPermissions.yaml index 474122e053d..dd8fc12bc46 100644 --- a/library/common/templates/custom/_mountPermissions.yaml +++ b/library/common/templates/custom/_mountPermissions.yaml @@ -1,5 +1,5 @@ {{/* -This template serves as the blueprint for the mountPermissions job that is run +This template serves as the blueprint for the mountPermissions job that is run before chart installation. */}} {{- define "common.custom.mountpermissions" -}} diff --git a/library/common/templates/custom/_mountPermissionsJob.yaml b/library/common/templates/custom/_mountPermissionsJob.yaml index 87528a44557..4ad388bf094 100644 --- a/library/common/templates/custom/_mountPermissionsJob.yaml +++ b/library/common/templates/custom/_mountPermissionsJob.yaml @@ -1,5 +1,5 @@ {{/* -This template serves as the blueprint for the mountPermissions job that is run +This template serves as the blueprint for the mountPermissions job that is run before chart installation. */}} {{- define "common.custom.mountpermissions.job" -}} @@ -51,9 +51,9 @@ spec: - | chown -R {{ print .Values.PUID }}:{{ print .Values.PGID }} {{ print $values.mountPath }} #args: - # + # #securityContext: - # + # volumeMounts: {{- include "common.custom.configuredAppVolumeMounts" . | indent 12 }} {{- with (include "common.controller.volumes" . | trim) }} diff --git a/library/common/templates/custom/classes/_appIngressHTTP.tpl b/library/common/templates/custom/classes/_appIngressHTTP.tpl index c1aace246e2..b7a21ff2810 100644 --- a/library/common/templates/custom/classes/_appIngressHTTP.tpl +++ b/library/common/templates/custom/classes/_appIngressHTTP.tpl @@ -1,5 +1,5 @@ {{/* -This template serves as a blueprint for all appIngress objects that are created +This template serves as a blueprint for all appIngress objects that are created within the common library. */}} {{- define "common.custom.classes.appIngressHTTP" -}} diff --git a/library/common/templates/custom/classes/_appIngressTCP.tpl b/library/common/templates/custom/classes/_appIngressTCP.tpl index 5a877010041..babeac598bb 100644 --- a/library/common/templates/custom/classes/_appIngressTCP.tpl +++ b/library/common/templates/custom/classes/_appIngressTCP.tpl @@ -1,5 +1,5 @@ {{/* -This template serves as a blueprint for all appIngressTCP objects that are created +This template serves as a blueprint for all appIngressTCP objects that are created within the common library. */}} {{- define "common.custom.classes.appIngressTCP" -}} @@ -23,7 +23,7 @@ metadata: {{- include "common.labels" . | nindent 4 }} annotations: {{- if or (eq $values.certType "letsencrypt-prod") (eq $values.certType "letsencrypt-staging") }} - cert-manager.io/cluster-issuer: {{ $values.certType }} + cert-manager.io/cluster-issuer: {{ $values.certType }} {{- end }} {{- with $values.annotations }} {{- toYaml . | nindent 4 }} diff --git a/library/common/templates/custom/classes/_appIngressUDP.tpl b/library/common/templates/custom/classes/_appIngressUDP.tpl index 72b1e4f970c..6906d9609c3 100644 --- a/library/common/templates/custom/classes/_appIngressUDP.tpl +++ b/library/common/templates/custom/classes/_appIngressUDP.tpl @@ -1,5 +1,5 @@ {{/* -This template serves as a blueprint for all appIngressTCP objects that are created +This template serves as a blueprint for all appIngressTCP objects that are created within the common library. */}} {{- define "common.custom.classes.appIngressUDP" -}} diff --git a/library/common/templates/lib/chart/_values.tpl b/library/common/templates/lib/chart/_values.tpl index 712202a0d47..c8d6947e0dc 100644 --- a/library/common/templates/lib/chart/_values.tpl +++ b/library/common/templates/lib/chart/_values.tpl @@ -1,4 +1,4 @@ -{{/* +{{/* Merge the local chart values and the common chart defaults. */}} {{- define "common.values.setup" -}} @@ -7,5 +7,5 @@ Merge the local chart values and the common chart defaults. {{- $userValues := deepCopy (omit .Values "common") -}} {{- $mergedValues := mustMergeOverwrite $defaultValues $userValues -}} {{- $_ := set . "Values" (deepCopy $mergedValues) -}} - {{- end }} + {{- end }} {{- end }} diff --git a/library/common/templates/lib/controller/_container.tpl b/library/common/templates/lib/controller/_container.tpl index e15136b3cee..003ffd68dbd 100644 --- a/library/common/templates/lib/controller/_container.tpl +++ b/library/common/templates/lib/controller/_container.tpl @@ -45,7 +45,7 @@ The main container included in the controller. {{- end }} {{- range $key, $value := .Values.envValueFrom }} - name: {{ $key }} - valueFrom: + valueFrom: {{- $value | toYaml | nindent 8 }} {{- end }} {{- end }} diff --git a/library/common/templates/lib/controller/_probes.tpl b/library/common/templates/lib/controller/_probes.tpl index 84c0fdf7a3c..9240962eecc 100644 --- a/library/common/templates/lib/controller/_probes.tpl +++ b/library/common/templates/lib/controller/_probes.tpl @@ -8,7 +8,7 @@ Probes selection logic. {{- "" | nindent 0 }} {{- $probeName }}Probe: {{- if $probe.custom -}} - {{- $probe.spec | toYaml | nindent 2 }} + {{- $probe.spec | toYaml | nindent 2 }} {{- else }} {{- "tcpSocket:" | nindent 2 }} {{- printf "port: %v" $svcPort | nindent 4 }}