diff --git a/.github/label-commenter-config.yml b/.github/label-commenter-config.yml index f896a83b..b1438492 100644 --- a/.github/label-commenter-config.yml +++ b/.github/label-commenter-config.yml @@ -35,3 +35,15 @@ labels: - [Documentation strings](https://github.com/norwoodj/helm-docs#valuesyaml-metadata) have been added to the keys in `values.yaml`. Afterwards you can run `./hack/gen-helm-docs.sh stable ` again to update the chart's `README.md` file. + + - name: kind:incorrect-title + labeled: + pr: + body: | + :wave: @{{ pull_request.user.login }}, thanks for taking the time to submit this PR. 🙏🏽 + + We have noticed that the PR title does not adhere to our desired format. + Could you please make sure that it follows the pattern `[] `? + Example: `[radarr] Update image version`. + + Thanks! diff --git a/.github/labels.json b/.github/labels.json new file mode 100644 index 00000000..4448a8f5 --- /dev/null +++ b/.github/labels.json @@ -0,0 +1,24 @@ +{ + "labels": { + "kind:incorrect-title": { + "name": "kind:incorrect-title", + "colour": "#ffb700", + "description": "Incorrect title" + } + }, + "pr": { + "kind:incorrect-title": { + "requires": 2, + "conditions": [ + { + "type": "creatorMatches", + "pattern": "^(?!renovate).+" + }, + { + "type": "titleMatches", + "pattern": "^(?!\\[[a-z]+\\]\\s[A-Z].+).+" + } + ] + } + } +} diff --git a/.github/workflows/charts-helm-docs.yaml.disabled b/.github/workflows/charts-helm-docs.yaml.disabled deleted file mode 100644 index 3e2ffaaf..00000000 --- a/.github/workflows/charts-helm-docs.yaml.disabled +++ /dev/null @@ -1,52 +0,0 @@ -# -# Disabled until we fix the chart releaser -# - -# name: "Charts: helm-docs" - -# on: -# workflow_dispatch: -# schedule: -# - cron: "0 0 * * *" - -# jobs: -# update-helm-docs: -# runs-on: ubuntu-20.04 -# steps: -# - name: Checkout -# uses: actions/checkout@v2 -# with: -# fetch-depth: 0 - -# - name: Install Helm -# uses: azure/setup-helm@v1 -# with: -# version: v3.5.3 - -# - uses: actions/setup-python@v2 -# with: -# python-version: 3.7 - -# - name: Install helm-docs -# run: | -# wget -O /tmp/helm-docs.deb https://github.com/norwoodj/helm-docs/releases/download/v1.5.0/helm-docs_1.5.0_linux_amd64.deb -# sudo dpkg -i /tmp/helm-docs.deb - -# - name: Update Helm docs -# run: | -# ./hack/gen-helm-docs.sh - -# - name: Create pull request for helm-docs -# uses: peter-evans/create-pull-request@v3 -# with: -# token: ${{ secrets.GITHUB_TOKEN }} -# branch: "helm-docs/ci" -# delete-branch: true -# title: "chore(docs): update helm-docs [ci-skip]" -# signoff: true -# committer: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>" -# author: "${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>" -# commit-message: "chore(docs): update helm-docs [ci-skip]" -# body: | -# Signed-off-by: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> -# labels: helm-docs diff --git a/.github/workflows/charts-lint-test.yaml b/.github/workflows/charts-lint-test.yaml index 027ac666..b32da934 100644 --- a/.github/workflows/charts-lint-test.yaml +++ b/.github/workflows/charts-lint-test.yaml @@ -92,9 +92,16 @@ jobs: name: Lint charts runs-on: ubuntu-20.04 steps: + - uses: getsentry/action-github-app-token@v1 + id: get-app-token + with: + app_id: ${{ secrets.K8S_AT_HOME_APP_ID }} + private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }} + - name: Checkout uses: actions/checkout@v2 with: + token: ${{ steps.get-app-token.outputs.token }} fetch-depth: 0 - name: Install Helm @@ -113,15 +120,52 @@ jobs: id: lint run: ct lint --config .github/ct-lint.yaml + # CI Passed + - name: "add label: ok" + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ success() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "lint:ok" + + - name: "remove label: failed" + uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ success() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "lint:failed" + + # CI Failed + - name: "add label: failed" + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ failure() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "lint:failed" + + - name: "remove label: ok" + uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ failure() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "lint:ok" + unittest: needs: - lint name: Run unit tests runs-on: ubuntu-20.04 steps: + - uses: getsentry/action-github-app-token@v1 + id: get-app-token + with: + app_id: ${{ secrets.K8S_AT_HOME_APP_ID }} + private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }} + - name: Checkout uses: actions/checkout@v2 with: + token: ${{ steps.get-app-token.outputs.token }} fetch-depth: 0 - name: Install Dev tools @@ -160,9 +204,16 @@ jobs: max-parallel: 15 runs-on: ubuntu-20.04 steps: + - uses: getsentry/action-github-app-token@v1 + id: get-app-token + with: + app_id: ${{ secrets.K8S_AT_HOME_APP_ID }} + private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }} + - name: Checkout uses: actions/checkout@v2 with: + token: ${{ steps.get-app-token.outputs.token }} fetch-depth: 0 - name: Install Helm @@ -198,6 +249,42 @@ jobs: name: Install successful runs-on: ubuntu-20.04 steps: + - uses: getsentry/action-github-app-token@v1 + id: get-app-token + with: + app_id: ${{ secrets.K8S_AT_HOME_APP_ID }} + private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }} + - name: Check install matrix status if: ${{ needs.changes-install.outputs.detected == 'true' && needs.install.result != 'success' }} run: exit 1 + + # CI Passed + - name: "add label: ok" + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ success() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "install:ok" + + - name: "remove label: failed" + uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ success() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "install:failed" + + # CI Failed + - name: "add label: failed" + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ failure() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "install:failed" + + - name: "remove label: ok" + uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ failure() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "install:ok" diff --git a/.github/workflows/charts-release.yaml b/.github/workflows/charts-release.yaml index f68b0ee9..c0913bf9 100644 --- a/.github/workflows/charts-release.yaml +++ b/.github/workflows/charts-release.yaml @@ -131,6 +131,8 @@ jobs: generate-summary: name: Auto-generate charts summary runs-on: ubuntu-20.04 + needs: + - generate-release steps: - name: Get k8s-at-home token id: get-app-token @@ -143,7 +145,8 @@ jobs: uses: actions/checkout@v2 with: token: ${{ steps.get-app-token.outputs.token }} - ref: ${{ github.ref }} + ref: master + fetch-depth: 0 - name: Install yq uses: chrisdickinson/setup-yq@latest diff --git a/.github/workflows/label-commenter.yaml b/.github/workflows/metadata-label-commenter.yaml similarity index 75% rename from .github/workflows/label-commenter.yaml rename to .github/workflows/metadata-label-commenter.yaml index c00b6363..b332d79d 100644 --- a/.github/workflows/label-commenter.yaml +++ b/.github/workflows/metadata-label-commenter.yaml @@ -1,5 +1,5 @@ --- -name: 'Label Commenter' +name: 'Metadata: Label Commenter' on: issues: @@ -17,12 +17,12 @@ permissions: pull-requests: write jobs: - support: + comment: + name: Label commenter runs-on: ubuntu-20.04 steps: - - name: Get k8s-at-home token + - uses: getsentry/action-github-app-token@v1 id: get-app-token - uses: getsentry/action-github-app-token@v1 with: app_id: ${{ secrets.K8S_AT_HOME_APP_ID }} private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }} @@ -32,7 +32,6 @@ jobs: token: ${{ steps.get-app-token.outputs.token }} ref: master - - name: Label Commenter - uses: peaceiris/actions-label-commenter@v1 + - uses: peaceiris/actions-label-commenter@v1 with: github_token: ${{ steps.get-app-token.outputs.token }} diff --git a/.github/workflows/metadata-label-issues-prs.yaml b/.github/workflows/metadata-label-issues-prs.yaml new file mode 100644 index 00000000..2ba89842 --- /dev/null +++ b/.github/workflows/metadata-label-issues-prs.yaml @@ -0,0 +1,42 @@ +--- +name: "Metadata: Label issues and pull requests" + +on: + issues: + types: + - opened + - edited + - closed + - reopened + pull_request: + types: + - opened + - edited + - closed + - reopened + - ready_for_review + - synchronize + +permissions: + contents: read + issues: write + pull-requests: write + +jobs: + label: + name: Label issues and pull requests + runs-on: ubuntu-20.04 + steps: + - uses: getsentry/action-github-app-token@v1 + id: get-app-token + with: + app_id: ${{ secrets.K8S_AT_HOME_APP_ID }} + private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }} + + - uses: actions/checkout@v2 + with: + token: ${{ steps.get-app-token.outputs.token }} + + - uses: IvanFon/super-labeler-action@v1 + with: + github-token: ${{ steps.get-app-token.outputs.token }} diff --git a/.github/workflows/pre-commit-check.yaml b/.github/workflows/pre-commit-check.yaml index f6586ea8..2a5151a3 100644 --- a/.github/workflows/pre-commit-check.yaml +++ b/.github/workflows/pre-commit-check.yaml @@ -13,9 +13,16 @@ jobs: name: Run pre-commit checks runs-on: ubuntu-20.04 steps: + - uses: getsentry/action-github-app-token@v1 + id: get-app-token + with: + app_id: ${{ secrets.K8S_AT_HOME_APP_ID }} + private_key: ${{ secrets.K8S_AT_HOME_APP_PRIVATE_KEY }} + - name: Checkout uses: actions/checkout@v2 with: + token: ${{ steps.get-app-token.outputs.token }} fetch-depth: 0 - uses: dorny/paths-filter@v2 @@ -39,3 +46,33 @@ jobs: if: steps.filter.outputs.addedOrModified != 'true' with: extra_args: --all-files + + # CI Passed + - name: "add label: ok" + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ success() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "precommit:ok" + + - name: "remove label: failed" + uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ success() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "precommit:failed" + + # CI Failed + - name: "add label: failed" + uses: actions-ecosystem/action-add-labels@v1 + if: ${{ failure() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "precommit:failed" + + - name: "remove label: ok" + uses: actions-ecosystem/action-remove-labels@v1 + if: ${{ failure() }} + with: + github_token: ${{ steps.get-app-token.outputs.token }} + labels: "precommit:ok" diff --git a/charts/stable/adguard-home/Chart.yaml b/charts/stable/adguard-home/Chart.yaml index 4d314359..dc17e496 100644 --- a/charts/stable/adguard-home/Chart.yaml +++ b/charts/stable/adguard-home/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.106.3 description: DNS proxy as ad-blocker for local network name: adguard-home -version: 4.2.0 +version: 4.3.0 kubeVersion: ">=1.16.0-0" keywords: - adguard-home @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/airsonic/Chart.yaml b/charts/stable/airsonic/Chart.yaml index 5a88a54d..c623018d 100644 --- a/charts/stable/airsonic/Chart.yaml +++ b/charts/stable/airsonic/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 10.6.2 description: Airsonic is a Free and Open Source community driven media server name: airsonic -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - airsonic @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/alertmanager-bot/Chart.yaml b/charts/stable/alertmanager-bot/Chart.yaml index 91e69f9a..13b34092 100644 --- a/charts/stable/alertmanager-bot/Chart.yaml +++ b/charts/stable/alertmanager-bot/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.4.3 description: Bot for Prometheus Alertmanager name: alertmanager-bot -version: 5.2.0 +version: 5.3.0 kubeVersion: ">=1.16.0-0" keywords: - alertmanager @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/apache-musicindex/Chart.yaml b/charts/stable/apache-musicindex/Chart.yaml index 4fe48eee..5cfb0804 100644 --- a/charts/stable/apache-musicindex/Chart.yaml +++ b/charts/stable/apache-musicindex/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v1.4.1-2 description: Index and stream music using apache-musicindex and m3u playlists name: apache-musicindex -version: 1.0.1 +version: 1.1.0 kubeVersion: ">=1.16.0-0" keywords: - apache-musicindex @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/appdaemon/Chart.yaml b/charts/stable/appdaemon/Chart.yaml index 53f68b03..412410c6 100644 --- a/charts/stable/appdaemon/Chart.yaml +++ b/charts/stable/appdaemon/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 4.0.8 description: AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution environment for writing automation apps for various types of Home Automation Software including Home Assistant and MQTT. name: appdaemon -version: 7.0.0 +version: 7.1.0 kubeVersion: ">=1.16.0-0" keywords: - appdaemon @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/baikal/Chart.yaml b/charts/stable/baikal/Chart.yaml index d4d13be0..a29c26e6 100644 --- a/charts/stable/baikal/Chart.yaml +++ b/charts/stable/baikal/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.8.0 description: Baïkal is a lightweight CalDAV+CardDAV server. It offers a web interface with management of users, address books and calendars. name: baikal -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - baikal @@ -21,8 +21,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: mariadb - version: 9.3.13 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled diff --git a/charts/stable/bazarr/Chart.yaml b/charts/stable/bazarr/Chart.yaml index 03678b6f..de23c17e 100644 --- a/charts/stable/bazarr/Chart.yaml +++ b/charts/stable/bazarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.9.5 description: Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements name: bazarr -version: 9.2.0 +version: 9.3.0 kubeVersion: ">=1.16.0-0" keywords: - bazarr @@ -22,4 +22,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/blocky/Chart.yaml b/charts/stable/blocky/Chart.yaml index 334b9c9b..ac3156fa 100644 --- a/charts/stable/blocky/Chart.yaml +++ b/charts/stable/blocky/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.14 description: DNS proxy as ad-blocker for local network name: blocky -version: 7.0.0 +version: 7.1.0 kubeVersion: ">=1.16.0-0" keywords: - blocky @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/booksonic-air/Chart.yaml b/charts/stable/booksonic-air/Chart.yaml index 3ab84369..6fe4ee02 100644 --- a/charts/stable/booksonic-air/Chart.yaml +++ b/charts/stable/booksonic-air/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2009.1.0 description: Booksonic is a platform for accessing the audibooks you own wherever you are name: booksonic-air -version: 5.2.0 +version: 5.3.0 kubeVersion: ">=1.16.0-0" keywords: - booksonic @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/bookstack/Chart.yaml b/charts/stable/bookstack/Chart.yaml index fcd7d212..f5199739 100644 --- a/charts/stable/bookstack/Chart.yaml +++ b/charts/stable/bookstack/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 appVersion: v21.05.1 description: A simple, self-hosted, easy-to-use platform for organising and storing information. name: bookstack -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - bookstack @@ -23,8 +23,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: mariadb - version: 9.3.13 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled diff --git a/charts/stable/calibre-web/Chart.yaml b/charts/stable/calibre-web/Chart.yaml index 3cad495d..ebb60ebc 100644 --- a/charts/stable/calibre-web/Chart.yaml +++ b/charts/stable/calibre-web/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.6.12 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: 7.2.0 +version: 7.3.0 kubeVersion: ">=1.16.0-0" keywords: - calibre @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/calibre/Chart.yaml b/charts/stable/calibre/Chart.yaml index 1029a246..f654ef6d 100644 --- a/charts/stable/calibre/Chart.yaml +++ b/charts/stable/calibre/Chart.yaml @@ -4,7 +4,7 @@ apiVersion: v2 appVersion: version-v5.21.0 description: Calibre is a powerful and easy to use e-book manager. name: calibre -version: 4.1.0 +version: 4.2.0 kubeVersion: ">=1.16.0-0" keywords: - calibre @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/comcast/Chart.yaml b/charts/stable/comcast/Chart.yaml index f9eb1417..37b450cb 100644 --- a/charts/stable/comcast/Chart.yaml +++ b/charts/stable/comcast/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: comcast -version: 5.0.0 +version: 5.1.0 appVersion: 1.0.0 description: periodic comcast data usage checks and save the results to InfluxDB keywords: @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/deconz/Chart.yaml b/charts/stable/deconz/Chart.yaml index c814b4e1..39e97b8c 100644 --- a/charts/stable/deconz/Chart.yaml +++ b/charts/stable/deconz/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.12.01 description: deCONZ is an easy to use control software, with which you can set up and control Zigbee networks of any size without further programming effort. name: deconz -version: 5.1.1 +version: 5.2.0 kubeVersion: ">=1.16.0-0" keywords: - deconz @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/deluge/Chart.yaml b/charts/stable/deluge/Chart.yaml index 20d98fcf..8f203a16 100644 --- a/charts/stable/deluge/Chart.yaml +++ b/charts/stable/deluge/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.0.3-2201906121747 description: Deluge is a torrent download client name: deluge -version: 4.2.0 +version: 4.3.0 kubeVersion: ">=1.16.0-0" keywords: - deluge @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/dizquetv/Chart.yaml b/charts/stable/dizquetv/Chart.yaml index 8ad462cb..0dbd20cf 100644 --- a/charts/stable/dizquetv/Chart.yaml +++ b/charts/stable/dizquetv/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.4.3 description: Create live TV channel streams from media on your Plex servers. name: dizquetv -version: 3.2.0 +version: 3.3.0 kubeVersion: ">=1.16.0-0" keywords: - dizqueTV @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/dnsmadeeasy-webhook/Chart.yaml b/charts/stable/dnsmadeeasy-webhook/Chart.yaml index c5c01f69..d36b3417 100644 --- a/charts/stable/dnsmadeeasy-webhook/Chart.yaml +++ b/charts/stable/dnsmadeeasy-webhook/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.2.0 description: Cert-Manager Webhook for DNSMadeEasy name: dnsmadeeasy-webhook -version: 3.3.2 +version: 3.4.0 keywords: - cert-manager - dnsmadeeasy @@ -18,7 +18,7 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: cert-manager repository: https://charts.jetstack.io version: v1.4.0 diff --git a/charts/stable/dsmr-reader/Chart.yaml b/charts/stable/dsmr-reader/Chart.yaml index 324fa8e8..d7375308 100644 --- a/charts/stable/dsmr-reader/Chart.yaml +++ b/charts/stable/dsmr-reader/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: "2021.06.01" description: DSMR-protocol reader, telegram data storage and energy consumption visualizer. name: dsmr-reader -version: 4.2.0 +version: 4.3.0 kubeVersion: ">=1.16.0-0" keywords: - dsmr-reader @@ -18,8 +18,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.9 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled diff --git a/charts/stable/duplicati/Chart.yaml b/charts/stable/duplicati/Chart.yaml index f5a4c3af..190a0e9b 100644 --- a/charts/stable/duplicati/Chart.yaml +++ b/charts/stable/duplicati/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: Store securely encrypted backups on cloud storage services! name: duplicati -version: 4.2.0 +version: 4.3.0 keywords: - duplicati home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/duplicati @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/emby/Chart.yaml b/charts/stable/emby/Chart.yaml index 368e3694..2da41491 100644 --- a/charts/stable/emby/Chart.yaml +++ b/charts/stable/emby/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 appVersion: 4.6.1.0 description: Emby Server is a home media server name: emby -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - emby @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/esphome/Chart.yaml b/charts/stable/esphome/Chart.yaml index 3c117788..3397fa12 100644 --- a/charts/stable/esphome/Chart.yaml +++ b/charts/stable/esphome/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.18.0 description: ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems. name: esphome -version: 7.2.0 +version: 7.3.0 kubeVersion: ">=1.16.0-0" keywords: - esphome @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/flaresolverr/Chart.yaml b/charts/stable/flaresolverr/Chart.yaml index a719db2d..03ad979e 100644 --- a/charts/stable/flaresolverr/Chart.yaml +++ b/charts/stable/flaresolverr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v1.2.8 description: FlareSolverr is a proxy server to bypass Cloudflare protection name: flaresolverr -version: 4.2.0 +version: 4.3.0 kubeVersion: ">=1.16.0-0" keywords: - flaresolverr @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/flood/Chart.yaml b/charts/stable/flood/Chart.yaml index 442d953f..e647a717 100644 --- a/charts/stable/flood/Chart.yaml +++ b/charts/stable/flood/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 4.6.0 description: Flood is a monitoring service for various torrent clients name: flood -version: 5.2.0 +version: 5.3.0 kubeVersion: ">=1.16.0-0" keywords: - flood @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/focalboard/Chart.yaml b/charts/stable/focalboard/Chart.yaml index 5d834e4c..bf6ceaf1 100644 --- a/charts/stable/focalboard/Chart.yaml +++ b/charts/stable/focalboard/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.6.7 description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana. name: focalboard -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - focalboard @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/foundryvtt/Chart.yaml b/charts/stable/foundryvtt/Chart.yaml index 49bdd8a9..9f46461a 100644 --- a/charts/stable/foundryvtt/Chart.yaml +++ b/charts/stable/foundryvtt/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.8.3 description: An easy-to-deploy Dockerized Foundry Virtual Tabletop server name: foundryvtt -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - foundryvtt @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/freshrss/Chart.yaml b/charts/stable/freshrss/Chart.yaml index 8143ff69..fffa99d7 100644 --- a/charts/stable/freshrss/Chart.yaml +++ b/charts/stable/freshrss/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.18.1 description: FreshRSS is a self-hosted RSS feed aggregator name: freshrss -version: 5.2.0 +version: 5.3.0 kubeVersion: ">=1.16.0-0" keywords: - freshrss @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/gaps/Chart.yaml b/charts/stable/gaps/Chart.yaml index 59ebbba6..9fe71a3c 100644 --- a/charts/stable/gaps/Chart.yaml +++ b/charts/stable/gaps/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: 4.2.0 +version: 4.3.0 kubeVersion: ">=1.16.0-0" keywords: - plex @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/gollum/Chart.yaml b/charts/stable/gollum/Chart.yaml index 5dba440f..dd168cf4 100644 --- a/charts/stable/gollum/Chart.yaml +++ b/charts/stable/gollum/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: Gollum is a simple wiki system built on top of Git name: gollum -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - gollum @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/gonic/Chart.yaml b/charts/stable/gonic/Chart.yaml index 485e1e06..1976849e 100644 --- a/charts/stable/gonic/Chart.yaml +++ b/charts/stable/gonic/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.13.1 description: Music streaming server / subsonic server API implementation name: gonic -version: 5.2.0 +version: 5.3.0 kubeVersion: ">=1.16.0-0" keywords: - music @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/grocy/Chart.yaml b/charts/stable/grocy/Chart.yaml index 5bc6e4b8..dadbd376 100644 --- a/charts/stable/grocy/Chart.yaml +++ b/charts/stable/grocy/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.0.1 description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home name: grocy -version: 7.2.0 +version: 7.3.0 kubeVersion: ">=1.16.0-0" keywords: - grocy @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/haste-server/Chart.yaml b/charts/stable/haste-server/Chart.yaml index 042418b0..7c5ef539 100644 --- a/charts/stable/haste-server/Chart.yaml +++ b/charts/stable/haste-server/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: Simple text sharing name: haste-server -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - haste @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/healthchecks/Chart.yaml b/charts/stable/healthchecks/Chart.yaml index 99c0696b..59061292 100644 --- a/charts/stable/healthchecks/Chart.yaml +++ b/charts/stable/healthchecks/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: version-v1.20.0 description: Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages ("pings") from your cron jobs and scheduled tasks ("checks"). When a ping does not arrive on time, Healthchecks sends out alerts. name: healthchecks -version: 3.1.0 +version: 3.2.0 keywords: - cron - monitoring @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/heimdall/Chart.yaml b/charts/stable/heimdall/Chart.yaml index 96bf9bf0..f6fc0a1f 100644 --- a/charts/stable/heimdall/Chart.yaml +++ b/charts/stable/heimdall/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.2.2 description: An Application dashboard and launcher name: heimdall -version: 7.2.0 +version: 7.3.0 kubeVersion: ">=1.16.0-0" keywords: - heimdall @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/home-assistant/Chart.yaml b/charts/stable/home-assistant/Chart.yaml index 1924e426..a712ced4 100644 --- a/charts/stable/home-assistant/Chart.yaml +++ b/charts/stable/home-assistant/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2021.6.3 description: Home Assistant name: home-assistant -version: 9.2.0 +version: 9.3.0 kubeVersion: ">=1.16.0-0" keywords: - home-assistant @@ -20,13 +20,13 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.9 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled - name: mariadb - version: 9.3.14 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled - name: influxdb diff --git a/charts/stable/homebridge/Chart.yaml b/charts/stable/homebridge/Chart.yaml index 76b9c468..cf9f4078 100644 --- a/charts/stable/homebridge/Chart.yaml +++ b/charts/stable/homebridge/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 4.0.0 description: A lightweight NodeJS server that emulates the iOS HomeKit API name: homebridge -version: 3.1.0 +version: 3.2.0 kubeVersion: ">=1.16.0-0" keywords: - homebridge @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/homer/Chart.yaml b/charts/stable/homer/Chart.yaml index df1ef39d..4c83b60e 100644 --- a/charts/stable/homer/Chart.yaml +++ b/charts/stable/homer/Chart.yaml @@ -4,7 +4,7 @@ description: A dead simple static HOMepage for your servER to keep your services icon: https://raw.githubusercontent.com/bastienwirtz/homer/main/public/logo.png home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/homer name: homer -version: 5.1.0 +version: 5.2.0 kubeVersion: ">=1.16.0-0" sources: - https://github.com/bastienwirtz/homer @@ -14,4 +14,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/hyperion-ng/Chart.yaml b/charts/stable/hyperion-ng/Chart.yaml index bd80cc79..1702c407 100644 --- a/charts/stable/hyperion-ng/Chart.yaml +++ b/charts/stable/hyperion-ng/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.0.0-alpha9 description: Hyperion is an opensource Bias or Ambient Lighting implementation name: hyperion-ng -version: 4.1.0 +version: 4.2.0 kubeVersion: ">=1.16.0-0" keywords: - hyperion-ng @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/icantbelieveitsnotvaletudo/Chart.yaml b/charts/stable/icantbelieveitsnotvaletudo/Chart.yaml index 237a71db..c55b046a 100644 --- a/charts/stable/icantbelieveitsnotvaletudo/Chart.yaml +++ b/charts/stable/icantbelieveitsnotvaletudo/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2021.2.1 description: Create live map data from Valetudo powered robots name: icantbelieveitsnotvaletudo -version: 4.1.0 +version: 4.2.0 kubeVersion: ">=1.16.0-0" keywords: - icantbelieveitsnotvaletudo @@ -22,4 +22,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/icinga2/Chart.yaml b/charts/stable/icinga2/Chart.yaml index 1ef54576..1bac6bf7 100644 --- a/charts/stable/icinga2/Chart.yaml +++ b/charts/stable/icinga2/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: A monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting. name: icinga2 -version: 1.0.0 +version: 1.1.0 kubeVersion: ">=1.16.0-0" keywords: - icinga2 @@ -18,8 +18,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: mariadb - version: 9.3.14 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled diff --git a/charts/stable/intel-gpu-plugin/Chart.yaml b/charts/stable/intel-gpu-plugin/Chart.yaml index 987c56ec..9a3e803b 100644 --- a/charts/stable/intel-gpu-plugin/Chart.yaml +++ b/charts/stable/intel-gpu-plugin/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: intel-gpu-plugin -version: 3.2.0 +version: 3.3.0 appVersion: 0.20.0 description: The Intel GPU plugin facilitates offloading the processing of computation intensive workloads to GPU hardware keywords: @@ -19,5 +19,5 @@ maintainers: email: me@bjw-s.dev dependencies: - name: common - version: 3.2.0 + version: 3.3.0 repository: https://library-charts.k8s-at-home.com diff --git a/charts/stable/jackett/Chart.yaml b/charts/stable/jackett/Chart.yaml index 5164ba37..039f1d1c 100644 --- a/charts/stable/jackett/Chart.yaml +++ b/charts/stable/jackett/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.18.303 description: API Support for your favorite torrent trackers name: jackett -version: 10.2.0 +version: 10.3.0 kubeVersion: ">=1.16.0-0" keywords: - jackett @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/jellyfin/Chart.yaml b/charts/stable/jellyfin/Chart.yaml index d60fccd7..b6841b7e 100644 --- a/charts/stable/jellyfin/Chart.yaml +++ b/charts/stable/jellyfin/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 10.7.5 description: Jellyfin is a Free Software Media System name: jellyfin -version: 8.2.0 +version: 8.3.0 kubeVersion: ">=1.16.0-0" keywords: - jellyfin @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/jetbrains-projector/Chart.yaml b/charts/stable/jetbrains-projector/Chart.yaml index 91333914..fd9e77be 100644 --- a/charts/stable/jetbrains-projector/Chart.yaml +++ b/charts/stable/jetbrains-projector/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 description: Projector is a technology to run and access JetBrains IDEs remotely name: jetbrains-projector -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - jetbrains @@ -17,7 +17,7 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 annotations: artifacthub.io/license: Apache-2.0 artifacthub.io/links: | diff --git a/charts/stable/joplin-server/Chart.yaml b/charts/stable/joplin-server/Chart.yaml index 49de85a3..8f6db8c9 100644 --- a/charts/stable/joplin-server/Chart.yaml +++ b/charts/stable/joplin-server/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.1.2 description: This server allows you to sync any Joplin client name: joplin-server -version: 3.2.0 +version: 3.3.0 keywords: - joplin - notes @@ -18,8 +18,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.9 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled diff --git a/charts/stable/kanboard/Chart.yaml b/charts/stable/kanboard/Chart.yaml index 8c1eeb53..5ef901b1 100644 --- a/charts/stable/kanboard/Chart.yaml +++ b/charts/stable/kanboard/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v1.2.20 description: Kanboard is a free and open source Kanban project management software. name: kanboard -version: 3.0.0 +version: 3.1.0 kubeVersion: ">=1.16.0-0" keywords: - kanboard @@ -17,8 +17,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled diff --git a/charts/stable/komga/Chart.yaml b/charts/stable/komga/Chart.yaml index 31c269ef..ba37debd 100644 --- a/charts/stable/komga/Chart.yaml +++ b/charts/stable/komga/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.99.4 description: A comics/mangas server to serve/stream pages via API name: komga -version: 1.0.0 +version: 1.1.0 kubeVersion: ">=1.16.0-0" keywords: - komga @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/lazylibrarian/Chart.yaml b/charts/stable/lazylibrarian/Chart.yaml index 56f067da..def8ce63 100644 --- a/charts/stable/lazylibrarian/Chart.yaml +++ b/charts/stable/lazylibrarian/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: version-1152df82 name: lazylibrarian description: A Helm chart for deploying LazyLibrarian -version: 6.0.0 +version: 6.1.0 kubeVersion: ">=1.16.0-0" keywords: - lazylibrarian @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/leaf2mqtt/Chart.yaml b/charts/stable/leaf2mqtt/Chart.yaml index 78c57ad5..d50969ac 100644 --- a/charts/stable/leaf2mqtt/Chart.yaml +++ b/charts/stable/leaf2mqtt/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: "0.1" description: Nissan Leaf connected services to MQTT adapter name: leaf2mqtt -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - leaf2mqtt @@ -21,4 +21,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/librespeed/Chart.yaml b/charts/stable/librespeed/Chart.yaml index ec7390d9..54045feb 100644 --- a/charts/stable/librespeed/Chart.yaml +++ b/charts/stable/librespeed/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: version-5.2.4 description: Librespeed is a HTML5 webpage to test upload and download speeds name: librespeed -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - librespeed @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/lidarr/Chart.yaml b/charts/stable/lidarr/Chart.yaml index d1e0e9a7..4066cf71 100644 --- a/charts/stable/lidarr/Chart.yaml +++ b/charts/stable/lidarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v1.0.0.2226 description: Looks and smells like Sonarr but made for music name: lidarr -version: 10.2.0 +version: 10.3.0 kubeVersion: ">=1.16.0-0" keywords: - lidarr @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/lychee/Chart.yaml b/charts/stable/lychee/Chart.yaml index fe1f43fc..a6067f29 100644 --- a/charts/stable/lychee/Chart.yaml +++ b/charts/stable/lychee/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v4.3.0 description: Lychee is a free photo-management tool, which runs on your server or web-space name: lychee -version: 5.0.0 +version: 5.1.0 kubeVersion: ">=1.16.0-0" keywords: - lychee @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/magic-mirror/Chart.yaml b/charts/stable/magic-mirror/Chart.yaml index 6b1448d1..ea98cc44 100644 --- a/charts/stable/magic-mirror/Chart.yaml +++ b/charts/stable/magic-mirror/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.15.0 description: magic-mirror helm package name: magic-mirror -version: 3.0.0 +version: 3.1.0 kubeVersion: ">=1.16.0-0" keywords: - magic-mirror @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/mealie/Chart.yaml b/charts/stable/mealie/Chart.yaml index e3c79b0c..83907b40 100644 --- a/charts/stable/mealie/Chart.yaml +++ b/charts/stable/mealie/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.5.1 description: Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. name: mealie -version: 2.2.1 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - grocy @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/miniflux/Chart.yaml b/charts/stable/miniflux/Chart.yaml index 69da04e5..82bc20f5 100644 --- a/charts/stable/miniflux/Chart.yaml +++ b/charts/stable/miniflux/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.0.32 description: Miniflux is a minimalist and opinionated feed reader. name: miniflux -version: 3.0.0 +version: 3.1.0 kubeVersion: ">=1.16.0-0" keywords: - miniflux @@ -18,8 +18,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled diff --git a/charts/stable/minio-console/Chart.yaml b/charts/stable/minio-console/Chart.yaml index d4d72ea7..706f1a36 100644 --- a/charts/stable/minio-console/Chart.yaml +++ b/charts/stable/minio-console/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.7.4 description: A management console for minio server and operator name: minio-console -version: 1.0.0 +version: 1.1.0 kubeVersion: ">=1.16.0-0" keywords: - minio-console @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/modem-stats/Chart.yaml b/charts/stable/modem-stats/Chart.yaml index 7fba89b3..23fd5bb2 100644 --- a/charts/stable/modem-stats/Chart.yaml +++ b/charts/stable/modem-stats/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: modem-stats -version: 5.0.0 +version: 5.1.0 appVersion: 1.0.0 description: periodic cable modem data collection and save the results to InfluxDB keywords: @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/monica/Chart.yaml b/charts/stable/monica/Chart.yaml index a002738a..a1214fd7 100644 --- a/charts/stable/monica/Chart.yaml +++ b/charts/stable/monica/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 3.1.1-apache description: A Personal Relationship Management tool to help you organize your social life name: monica -version: 5.0.0 +version: 5.1.0 kubeVersion: ">=1.16.0-0" keywords: - crm @@ -17,8 +17,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: mariadb - version: 9.3.13 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled diff --git a/charts/stable/mosquitto/Chart.yaml b/charts/stable/mosquitto/Chart.yaml index b6866774..018342c1 100644 --- a/charts/stable/mosquitto/Chart.yaml +++ b/charts/stable/mosquitto/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.0.11 description: Eclipse Mosquitto - An open source MQTT broker name: mosquitto -version: 3.2.0 +version: 3.3.0 kubeVersion: ">=1.16.0-0" keywords: - mosquitto @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/multus/Chart.yaml b/charts/stable/multus/Chart.yaml index bec58590..3bf4d6a6 100644 --- a/charts/stable/multus/Chart.yaml +++ b/charts/stable/multus/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.7.1 description: multus CNI allows multiple NICs per pod name: multus -version: 2.0.2 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - multus @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/mylar/Chart.yaml b/charts/stable/mylar/Chart.yaml index db8fdc28..c800fa6f 100644 --- a/charts/stable/mylar/Chart.yaml +++ b/charts/stable/mylar/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: version-v0.5.3 description: Mylar is the automated Comic Book downloader (cbr/cbz) for use with various download clients. name: mylar -version: 3.0.0 +version: 3.1.0 kubeVersion: ">=1.16.0-0" keywords: - mylar @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/navidrome/Chart.yaml b/charts/stable/navidrome/Chart.yaml index 4a7c34bf..7221fa9d 100644 --- a/charts/stable/navidrome/Chart.yaml +++ b/charts/stable/navidrome/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.43.0 description: Navidrome is an open source web-based music collection server and streamer name: navidrome -version: 5.0.0 +version: 5.1.0 kubeVersion: ">=1.16.0-0" keywords: - navidrome @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/neolink/Chart.yaml b/charts/stable/neolink/Chart.yaml index 5351c887..4d209fb3 100644 --- a/charts/stable/neolink/Chart.yaml +++ b/charts/stable/neolink/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.3.0 description: Neolink - RTSP bridge to Reolink IP cameras name: neolink -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - reolink @@ -15,4 +15,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/network-ups-tools/Chart.yaml b/charts/stable/network-ups-tools/Chart.yaml index 2e076771..bdec0296 100644 --- a/charts/stable/network-ups-tools/Chart.yaml +++ b/charts/stable/network-ups-tools/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.7.4-2474-gb4a58380 description: Network UPS Tools is a collection of programs which provide a common interface for monitoring and administering UPS, PDU and SCD hardware. name: network-ups-tools -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - nut @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/node-red/Chart.yaml b/charts/stable/node-red/Chart.yaml index 79e93f00..9a0b64ae 100644 --- a/charts/stable/node-red/Chart.yaml +++ b/charts/stable/node-red/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.3.5 description: Node-RED is low-code programming for event-driven applications name: node-red -version: 8.0.0 +version: 8.1.0 kubeVersion: ">=1.16.0-0" keywords: - nodered @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/nullserv/Chart.yaml b/charts/stable/nullserv/Chart.yaml index 18bb1984..b48d784a 100644 --- a/charts/stable/nullserv/Chart.yaml +++ b/charts/stable/nullserv/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.3.0 description: A simple null file http and https server name: nullserv -version: 1.1.0 +version: 1.2.0 kubeVersion: ">=1.16.0-0" keywords: - nullserv @@ -15,4 +15,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/nzbget/Chart.yaml b/charts/stable/nzbget/Chart.yaml index 23a5abb5..711acb68 100644 --- a/charts/stable/nzbget/Chart.yaml +++ b/charts/stable/nzbget/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v21.1 description: NZBGet is a Usenet downloader client name: nzbget -version: 11.2.0 +version: 11.3.0 kubeVersion: ">=1.16.0-0" keywords: - nzbget @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/nzbhydra2/Chart.yaml b/charts/stable/nzbhydra2/Chart.yaml index 237b4ab7..c0b5ab58 100644 --- a/charts/stable/nzbhydra2/Chart.yaml +++ b/charts/stable/nzbhydra2/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.14.2 description: Usenet meta search name: nzbhydra2 -version: 9.0.0 +version: 9.1.0 kubeVersion: ">=1.16.0-0" keywords: - nzbhydra2 @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/octoprint/Chart.yaml b/charts/stable/octoprint/Chart.yaml index 5ab2a325..981ddff9 100644 --- a/charts/stable/octoprint/Chart.yaml +++ b/charts/stable/octoprint/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.6.1 description: OctoPrint is the snappy web interface for your 3D printer name: octoprint -version: 5.2.0 +version: 5.3.0 kubeVersion: ">=1.16.0-0" keywords: - octoprint @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/omada-controller/Chart.yaml b/charts/stable/omada-controller/Chart.yaml index 4cb2fd84..7b4f9e7e 100644 --- a/charts/stable/omada-controller/Chart.yaml +++ b/charts/stable/omada-controller/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: '4.3' description: Omada enables the network administrators to monitor and manage all the Omada products in the network with a centralized management platform. name: omada-controller -version: 3.0.0 +version: 3.1.0 kubeVersion: ">=1.16.0-0" keywords: - omada-controller @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/ombi/Chart.yaml b/charts/stable/ombi/Chart.yaml index c83cf866..9ec2499b 100644 --- a/charts/stable/ombi/Chart.yaml +++ b/charts/stable/ombi/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: version-v4.0.1430 description: Want a Movie or TV Show on Plex or Emby? Use Ombi! name: ombi -version: 10.0.0 +version: 10.1.0 kubeVersion: ">=1.16.0-0" keywords: - ombi @@ -22,4 +22,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/openemr/Chart.yaml b/charts/stable/openemr/Chart.yaml index b348ab34..24ccb8e3 100644 --- a/charts/stable/openemr/Chart.yaml +++ b/charts/stable/openemr/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 appVersion: 6.1.0 description: OpenEMR is the most popular open source electronic health records and medical practice management solution. name: openemr -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - openemr @@ -21,8 +21,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: mariadb - version: 9.3.13 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled diff --git a/charts/stable/openkm/Chart.yaml b/charts/stable/openkm/Chart.yaml index 5cc17b4e..df812877 100644 --- a/charts/stable/openkm/Chart.yaml +++ b/charts/stable/openkm/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.0.0 description: OpenKM integrates all essential documents management, collaboration and an advanced search functionality into one easy to use solution. name: openkm -version: 1.1.0 +version: 1.2.0 kubeVersion: ">=1.16.0-0" keywords: - openkm @@ -19,7 +19,7 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql version: 10.5.2 repository: https://charts.bitnami.com/bitnami diff --git a/charts/stable/organizr/Chart.yaml b/charts/stable/organizr/Chart.yaml index 337ed5d8..6badf6be 100644 --- a/charts/stable/organizr/Chart.yaml +++ b/charts/stable/organizr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: HTPC/Homelab Services Organizer name: organizr -version: 6.0.0 +version: 6.1.0 kubeVersion: ">=1.16.0-0" keywords: - organizr @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/overseerr/Chart.yaml b/charts/stable/overseerr/Chart.yaml index 34088165..f2c4f7e1 100644 --- a/charts/stable/overseerr/Chart.yaml +++ b/charts/stable/overseerr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.25.0 description: Overseerr is a free and open source software application for managing requests for your media library. It integrates with your existing services such as Sonarr, Radarr and Plex! name: overseerr -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - overseerr @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/owncast/Chart.yaml b/charts/stable/owncast/Chart.yaml index bdb869a2..80354cf0 100644 --- a/charts/stable/owncast/Chart.yaml +++ b/charts/stable/owncast/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.0.7 description: Take control over your live stream video by running it yourself. Streaming + chat out of the box. name: owncast -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - owncast @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/owncloud-ocis/Chart.yaml b/charts/stable/owncloud-ocis/Chart.yaml index 6ec9c881..ebf2b1bc 100644 --- a/charts/stable/owncloud-ocis/Chart.yaml +++ b/charts/stable/owncloud-ocis/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.7.0 description: ownCloud Infinite Scale is a self-hosted file sync and share server. name: owncloud-ocis -version: 1.0.0 +version: 1.1.0 kubeVersion: ">=1.16.0-0" keywords: - owncloud @@ -24,4 +24,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/paperless/Chart.yaml b/charts/stable/paperless/Chart.yaml index e2b233a3..c9afbc6a 100644 --- a/charts/stable/paperless/Chart.yaml +++ b/charts/stable/paperless/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.0.0 description: Paperless - Index and archive all of your scanned paper documents name: paperless -version: 6.0.0 +version: 6.1.0 kubeVersion: ">=1.16.0-0" keywords: - paperless @@ -15,4 +15,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/photoprism/Chart.yaml b/charts/stable/photoprism/Chart.yaml index 72f51022..ff2f81d9 100644 --- a/charts/stable/photoprism/Chart.yaml +++ b/charts/stable/photoprism/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: "20210523" description: PhotoPrism® is a server-based application for browsing, organizing and sharing your personal photo collection name: photoprism -version: 5.2.0 +version: 5.3.0 kubeVersion: ">=1.16.0-0" keywords: - photos @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/piaware/Chart.yaml b/charts/stable/piaware/Chart.yaml index 28ce7666..d74de2cc 100644 --- a/charts/stable/piaware/Chart.yaml +++ b/charts/stable/piaware/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v5.0 description: Program for forwarding ADS-B data to FlightAware name: piaware -version: 7.0.0 +version: 7.1.0 kubeVersion: ">=1.16.0-0" keywords: - piaware @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/plex/Chart.yaml b/charts/stable/plex/Chart.yaml index df016736..2f024e36 100644 --- a/charts/stable/plex/Chart.yaml +++ b/charts/stable/plex/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v1.23.2.4656-85f0adf5b description: Plex Media Server name: plex -version: 5.2.0 +version: 5.3.0 kubeVersion: ">=1.16.0-0" keywords: - plex @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/pod-gateway/Chart.yaml b/charts/stable/pod-gateway/Chart.yaml index abaa05db..6974149e 100644 --- a/charts/stable/pod-gateway/Chart.yaml +++ b/charts/stable/pod-gateway/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.2.6 description: Admision controller to change the default gateway and DNS server of PODs name: pod-gateway -version: 3.2.2 +version: 3.3.0 kubeVersion: ">=1.16.0-0" keywords: - pod-gateway @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/powerdns/Chart.yaml b/charts/stable/powerdns/Chart.yaml index 0807c4f9..9dce2ee0 100755 --- a/charts/stable/powerdns/Chart.yaml +++ b/charts/stable/powerdns/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v4.3.1 description: PowerDNS is a DNS server, written in C++ and licensed under the GPL. It runs on most Unix derivatives. PowerDNS features a large number of different backends ranging from simple BIND style zonefiles to relational databases and load balancing/failover algorithms. A DNS recursor is provided as a separate program. name: powerdns -version: 3.2.3 +version: 3.3.0 home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/powerdns sources: - http://www.github.com/PowerDNS/ @@ -12,10 +12,10 @@ maintainers: email: ryan@ryanholt.net dependencies: - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled - name: mariadb - version: 9.3.13 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled diff --git a/charts/stable/pretend-youre-xyzzy/Chart.yaml b/charts/stable/pretend-youre-xyzzy/Chart.yaml index d381a077..2120b40f 100644 --- a/charts/stable/pretend-youre-xyzzy/Chart.yaml +++ b/charts/stable/pretend-youre-xyzzy/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: "4" description: pretend-youre-xyzzy, a cards against humanity clone name: pretend-youre-xyzzy -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - pretend-youre-xyzzy @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/promcord/Chart.yaml b/charts/stable/promcord/Chart.yaml index 1074c6e6..746aa741 100644 --- a/charts/stable/promcord/Chart.yaml +++ b/charts/stable/promcord/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: Discord bot that provides metrics from a Discord server name: promcord -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - promcord @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/prometheus-nut-exporter/Chart.yaml b/charts/stable/prometheus-nut-exporter/Chart.yaml index 7f98149f..8a0b2f17 100644 --- a/charts/stable/prometheus-nut-exporter/Chart.yaml +++ b/charts/stable/prometheus-nut-exporter/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.1.1 description: Prometheus NUT Exporter a service monitor to send NUT server metrics to a Prometheus instance. name: prometheus-nut-exporter -version: 3.0.0 +version: 3.1.0 kubeVersion: ">=1.16.0-0" keywords: - nut @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/protonmail-bridge/Chart.yaml b/charts/stable/protonmail-bridge/Chart.yaml index a8ad4fae..5542020f 100644 --- a/charts/stable/protonmail-bridge/Chart.yaml +++ b/charts/stable/protonmail-bridge/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.8.7-1 description: Container for protonmail bridge to work on the network. name: protonmail-bridge -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - protonmail @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/prowlarr/Chart.yaml b/charts/stable/prowlarr/Chart.yaml index 58aabade..9e825510 100644 --- a/charts/stable/prowlarr/Chart.yaml +++ b/charts/stable/prowlarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.1.0.421 description: Indexer manager/proxy built on the popular arr net base stack to integrate with your various PVR apps. name: prowlarr -version: 3.2.0 +version: 3.3.0 kubeVersion: ">=1.16.0-0" keywords: - prowlarr @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/pyload/Chart.yaml b/charts/stable/pyload/Chart.yaml index 5f011c71..490ac326 100644 --- a/charts/stable/pyload/Chart.yaml +++ b/charts/stable/pyload/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.4.20 description: pyLoad is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web. name: pyload -version: 5.0.0 +version: 5.1.0 kubeVersion: ">=1.16.0-0" keywords: - pyload @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/qbittorrent/Chart.yaml b/charts/stable/qbittorrent/Chart.yaml index e492666e..0de3b733 100644 --- a/charts/stable/qbittorrent/Chart.yaml +++ b/charts/stable/qbittorrent/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v4.3.5 description: qBittorrent is a cross-platform free and open-source BitTorrent client name: qbittorrent -version: 11.2.0 +version: 11.3.0 kubeVersion: ">=1.16.0-0" keywords: - qbittorrent @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/radarr/Chart.yaml b/charts/stable/radarr/Chart.yaml index 104d5f7f..0cdd152e 100644 --- a/charts/stable/radarr/Chart.yaml +++ b/charts/stable/radarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.2.2.5080 description: A fork of Sonarr to work with movies à la Couchpotato name: radarr -version: 12.2.0 +version: 12.3.0 kubeVersion: ">=1.16.0-0" keywords: - radarr @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/readarr/Chart.yaml b/charts/stable/readarr/Chart.yaml index 74619209..0cada9ce 100644 --- a/charts/stable/readarr/Chart.yaml +++ b/charts/stable/readarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.1.0.715 description: A fork of Radarr to work with Books & AudioBooks name: readarr -version: 5.2.0 +version: 5.3.0 kubeVersion: ">=1.16.0-0" keywords: - readarr @@ -21,4 +21,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/recipes/Chart.yaml b/charts/stable/recipes/Chart.yaml index 67e10894..f61cef81 100644 --- a/charts/stable/recipes/Chart.yaml +++ b/charts/stable/recipes/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.16.7 description: Recipes is a Django application to manage, tag and search recipes using either built in models or external storage providers hosting PDF's, Images or other files. name: recipes -version: 5.0.0 +version: 5.1.0 kubeVersion: ">=1.16.0-0" keywords: - recipes @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/reg/Chart.yaml b/charts/stable/reg/Chart.yaml index 84bda8b9..185700ea 100644 --- a/charts/stable/reg/Chart.yaml +++ b/charts/stable/reg/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 appVersion: 0.16.1 description: Docker registry v2 command line client and repo listing generator with security checks. name: reg -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - reg @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/resilio-sync/Chart.yaml b/charts/stable/resilio-sync/Chart.yaml index 1de80b75..0abd2666 100644 --- a/charts/stable/resilio-sync/Chart.yaml +++ b/charts/stable/resilio-sync/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.7.2 description: Resilio Sync is a fast, reliable, and simple file sync and share solution, powered by P2P technology name: resilio-sync -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - resilio @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/rtorrent-flood/Chart.yaml b/charts/stable/rtorrent-flood/Chart.yaml index b8a27d7f..f2164dc7 100644 --- a/charts/stable/rtorrent-flood/Chart.yaml +++ b/charts/stable/rtorrent-flood/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: rTorrent is a stable, high-performance and low resource consumption BitTorrent client. name: rtorrent-flood -version: 8.0.0 +version: 8.1.0 kubeVersion: ">=1.16.0-0" keywords: - rtorrent @@ -21,4 +21,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/sabnzbd/Chart.yaml b/charts/stable/sabnzbd/Chart.yaml index b8a7b841..1fdb1e5c 100644 --- a/charts/stable/sabnzbd/Chart.yaml +++ b/charts/stable/sabnzbd/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.3.1 description: Free and easy binary newsreader name: sabnzbd -version: 8.0.0 +version: 8.1.0 kubeVersion: ">=1.16.0-0" keywords: - sabnzbd @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/samba/Chart.yaml b/charts/stable/samba/Chart.yaml index 9f0da502..adf973c2 100644 --- a/charts/stable/samba/Chart.yaml +++ b/charts/stable/samba/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: A simple in-cluster Samba server name: samba -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - samba @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/searx/Chart.yaml b/charts/stable/searx/Chart.yaml index f5e44442..2f481819 100644 --- a/charts/stable/searx/Chart.yaml +++ b/charts/stable/searx/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.0.0 description: Searx is a privacy-respecting, hackable metasearch engine name: searx -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - searx @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/ser2sock/Chart.yaml b/charts/stable/ser2sock/Chart.yaml index 0d00535e..6fda74c9 100644 --- a/charts/stable/ser2sock/Chart.yaml +++ b/charts/stable/ser2sock/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.0.0 description: Serial to Socket Redirector name: ser2sock -version: 4.0.1 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - ser2sock @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/sharry/Chart.yaml b/charts/stable/sharry/Chart.yaml index 5063cd7c..bf2fd0df 100644 --- a/charts/stable/sharry/Chart.yaml +++ b/charts/stable/sharry/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.8.0 description: Sharry allows to share files with others in a simple way. It is a self-hosted web application. The basic concept is to upload files and get a url back that can then be shared. name: sharry -version: 4.0.0 +version: 4.1.0 keywords: - file sharing home: https://github.com/k8s-at-home/charts/tree/master/charts/stable/sharry @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/shlink/Chart.yaml b/charts/stable/shlink/Chart.yaml index b9cb9d86..10fe8462 100644 --- a/charts/stable/shlink/Chart.yaml +++ b/charts/stable/shlink/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.7.1 description: A self-hosted and PHP-based URL shortener application with CLI and REST interfaces name: shlink -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - shlink @@ -17,12 +17,12 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled - name: mariadb - version: 9.3.13 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled diff --git a/charts/stable/smarter-device-manager/Chart.yaml b/charts/stable/smarter-device-manager/Chart.yaml index b3d5d90d..72b15548 100644 --- a/charts/stable/smarter-device-manager/Chart.yaml +++ b/charts/stable/smarter-device-manager/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.20.7 description: Manage hardware resource allocation without a need for privileged containers name: smarter-device-manager -version: 5.0.0 +version: 5.1.0 kubeVersion: ">=1.16.0-0" keywords: - kubernetes @@ -21,4 +21,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/sonarr/Chart.yaml b/charts/stable/sonarr/Chart.yaml index cee0a7f1..7d525dde 100644 --- a/charts/stable/sonarr/Chart.yaml +++ b/charts/stable/sonarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.0.6.1196 description: Smart PVR for newsgroup and bittorrent users name: sonarr -version: 12.2.0 +version: 12.3.0 kubeVersion: ">=1.16.0-0" keywords: - sonarr @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/speedtest-exporter/Chart.yaml b/charts/stable/speedtest-exporter/Chart.yaml index 2508f8db..2e310980 100644 --- a/charts/stable/speedtest-exporter/Chart.yaml +++ b/charts/stable/speedtest-exporter/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.2.2 description: Speedtest Exporter made in python using the official speedtest bin name: speedtest-exporter -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - speedtest-exporter @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/stash/Chart.yaml b/charts/stable/stash/Chart.yaml index 887701f9..f1b9ee39 100644 --- a/charts/stable/stash/Chart.yaml +++ b/charts/stable/stash/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: An organizer for your porn, written in Go name: stash -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - porn @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/statping/Chart.yaml b/charts/stable/statping/Chart.yaml index e766ddaf..62efbd39 100644 --- a/charts/stable/statping/Chart.yaml +++ b/charts/stable/statping/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v0.90.74 description: Status page for monitoring your websites and applications name: statping -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - statping @@ -20,8 +20,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled diff --git a/charts/stable/syncthing/Chart.yaml b/charts/stable/syncthing/Chart.yaml index f51c70b6..3a507be5 100644 --- a/charts/stable/syncthing/Chart.yaml +++ b/charts/stable/syncthing/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.17.0 description: Open Source Continuous File Synchronization name: syncthing -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - syncthing @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/tautulli/Chart.yaml b/charts/stable/tautulli/Chart.yaml index f190da3b..9a4fa221 100644 --- a/charts/stable/tautulli/Chart.yaml +++ b/charts/stable/tautulli/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.7.4 description: A Python based monitoring and tracking tool for Plex Media Server name: tautulli -version: 10.0.0 +version: 10.1.0 kubeVersion: ">=1.16.0-0" keywords: - tautulli @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/tdarr/Chart.yaml b/charts/stable/tdarr/Chart.yaml index 49f94c42..041d6cd0 100644 --- a/charts/stable/tdarr/Chart.yaml +++ b/charts/stable/tdarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.00.10 description: Tdarr is a self hosted web-app for automating media library transcode/remux management and making sure your files are exactly how you need them to be in terms of codecs/streams/containers etc. name: tdarr -version: 3.0.0 +version: 3.1.0 keywords: - transcoding - remux @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/teedy/Chart.yaml b/charts/stable/teedy/Chart.yaml index c33207d9..294a3fef 100644 --- a/charts/stable/teedy/Chart.yaml +++ b/charts/stable/teedy/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v1.9 description: Teedy is an open source, lightweight document management system for individuals and businesses. name: teedy -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - teedy @@ -19,8 +19,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled diff --git a/charts/stable/teslamate/Chart.yaml b/charts/stable/teslamate/Chart.yaml index 6f1c1a5e..f7fc269a 100644 --- a/charts/stable/teslamate/Chart.yaml +++ b/charts/stable/teslamate/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 appVersion: v1.23.4 description: A self-hosted data logger for your Tesla 🚘 name: teslamate -version: 5.0.0 +version: 5.1.0 keywords: - teslamate - tesla @@ -14,9 +14,9 @@ sources: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled maintainers: diff --git a/charts/stable/thelounge/Chart.yaml b/charts/stable/thelounge/Chart.yaml index fa69a45d..0808b10b 100644 --- a/charts/stable/thelounge/Chart.yaml +++ b/charts/stable/thelounge/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: "4.2.0" description: The Lounge, modern web IRC client designed for self-hosting name: thelounge -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - thelounge @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/traccar/Chart.yaml b/charts/stable/traccar/Chart.yaml index 5951dd84..67a366e5 100644 --- a/charts/stable/traccar/Chart.yaml +++ b/charts/stable/traccar/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v4.13 description: Traccar is an open source GPS tracking system. name: traccar -version: 5.0.0 +version: 5.1.0 kubeVersion: ">=1.16.0-0" keywords: - traccar @@ -18,8 +18,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: mariadb - version: 9.3.13 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled diff --git a/charts/stable/transmission/Chart.yaml b/charts/stable/transmission/Chart.yaml index 03bffeb5..22ae75cb 100644 --- a/charts/stable/transmission/Chart.yaml +++ b/charts/stable/transmission/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v3.00 description: Transmission is a cross-platform BitTorrent client name: transmission -version: 7.0.0 +version: 7.1.0 kubeVersion: ">=1.16.0-0" keywords: - transmission @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/truecommand/Chart.yaml b/charts/stable/truecommand/Chart.yaml index a92ca9e5..366f30fe 100644 --- a/charts/stable/truecommand/Chart.yaml +++ b/charts/stable/truecommand/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.0.1 description: Central Management of TrueNAS storage systems name: truecommand -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - storage @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/tt-rss/Chart.yaml b/charts/stable/tt-rss/Chart.yaml index 573d81e0..ebb8c304 100644 --- a/charts/stable/tt-rss/Chart.yaml +++ b/charts/stable/tt-rss/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v1.8723.0 description: Tiny Tiny RSS is a free and open source web-based news feed (RSS/Atom) reader and aggregator name: tt-rss -version: 3.1.0 +version: 3.2.0 kubeVersion: ">=1.16.0-0" keywords: - tt-rss @@ -16,8 +16,8 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled diff --git a/charts/stable/tvheadend/Chart.yaml b/charts/stable/tvheadend/Chart.yaml index 82a75989..a8ae3006 100644 --- a/charts/stable/tvheadend/Chart.yaml +++ b/charts/stable/tvheadend/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: version-eb59284b description: TVheadend - a TV streaming server and digital video recorder name: tvheadend -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - tv @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/unifi-poller/Chart.yaml b/charts/stable/unifi-poller/Chart.yaml index 81891b57..5efabe82 100644 --- a/charts/stable/unifi-poller/Chart.yaml +++ b/charts/stable/unifi-poller/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.1.3 description: Collect ALL UniFi Controller, Site, Device & Client Data - Export to InfluxDB or Prometheus name: unifi-poller -version: 8.0.0 +version: 8.1.0 kubeVersion: ">=1.16.0-0" keywords: - unifi @@ -18,7 +18,7 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: influxdb version: 1.1.9 repository: https://charts.bitnami.com/bitnami diff --git a/charts/stable/unpackerr/Chart.yaml b/charts/stable/unpackerr/Chart.yaml index 40ae0782..d2890687 100644 --- a/charts/stable/unpackerr/Chart.yaml +++ b/charts/stable/unpackerr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.9.7 description: This application runs as a daemon on your download host. It checks for completed downloads and extracts them so Radarr, Lidarr, Sonarr, and Readarr may import them. name: unpackerr -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - unpackerr @@ -21,4 +21,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/uptimerobot-prometheus/Chart.yaml b/charts/stable/uptimerobot-prometheus/Chart.yaml index 6fb5e157..60d0a2c3 100644 --- a/charts/stable/uptimerobot-prometheus/Chart.yaml +++ b/charts/stable/uptimerobot-prometheus/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: uptimerobot-prometheus description: Prometheus Exporter for the official uptimerobot CLI type: application -version: 4.0.0 +version: 4.1.0 appVersion: 0.0.1 keywords: - uptimerobot @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/valheim/Chart.yaml b/charts/stable/valheim/Chart.yaml index 1239ded6..8407259f 100644 --- a/charts/stable/valheim/Chart.yaml +++ b/charts/stable/valheim/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: latest description: Valheim dedicated gameserver with automatic update and world backup support name: valheim -version: 3.0.0 +version: 3.1.0 kubeVersion: ">=1.16.0-0" keywords: - valheim @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/vaultwarden/Chart.yaml b/charts/stable/vaultwarden/Chart.yaml index 273295b1..2e478236 100644 --- a/charts/stable/vaultwarden/Chart.yaml +++ b/charts/stable/vaultwarden/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.20.0 description: Vaultwarden is a Bitwarden compatable server in Rust name: vaultwarden -version: 2.2.0 +version: 2.3.0 kubeVersion: ">=1.16.0-0" keywords: - Vaultwarden @@ -17,12 +17,12 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: mariadb - version: 9.3.13 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled diff --git a/charts/stable/vikunja/Chart.yaml b/charts/stable/vikunja/Chart.yaml index a028d143..0acab452 100644 --- a/charts/stable/vikunja/Chart.yaml +++ b/charts/stable/vikunja/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.17.0 description: The to-do app to organize your life name: vikunja -version: 3.0.0 +version: 3.1.0 keywords: - vikunja - to-do @@ -23,4 +23,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/wallabag/Chart.yaml b/charts/stable/wallabag/Chart.yaml index 67a8c4d7..c5f82efe 100644 --- a/charts/stable/wallabag/Chart.yaml +++ b/charts/stable/wallabag/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.4.2 description: A self hostable application for saving web pages, freely. name: wallabag -version: 3.0.0 +version: 3.1.0 kubeVersion: ">=1.16.0-0" keywords: - wallabag @@ -17,16 +17,16 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 - name: redis - version: 14.1.1 + version: 14.6.6 repository: https://charts.bitnami.com/bitnami condition: redis.enabled - name: postgresql - version: 10.4.8 + version: 10.5.2 repository: https://charts.bitnami.com/bitnami condition: postgresql.enabled - name: mariadb - version: 9.3.13 + version: 9.3.16 repository: https://charts.bitnami.com/bitnami condition: mariadb.enabled diff --git a/charts/stable/whoogle/Chart.yaml b/charts/stable/whoogle/Chart.yaml index f415f838..8a855788 100644 --- a/charts/stable/whoogle/Chart.yaml +++ b/charts/stable/whoogle/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 0.5.4 description: A self-hosted, ad-free, privacy-respecting metasearch engine name: whoogle -version: 2.0.0 +version: 2.1.0 kubeVersion: ">=1.16.0-0" keywords: - whoogle @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/wikijs/Chart.yaml b/charts/stable/wikijs/Chart.yaml index b62e61b4..07e7df59 100644 --- a/charts/stable/wikijs/Chart.yaml +++ b/charts/stable/wikijs/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: version-2.5.201 description: Make documentation a joy to write using Wiki.js's beautiful and intuitive interface! name: wikijs -version: 5.0.0 +version: 5.1.0 kubeVersion: ">=1.16.0-0" keywords: - wiki @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/xbackbone/Chart.yaml b/charts/stable/xbackbone/Chart.yaml index 1731436e..9656f321 100644 --- a/charts/stable/xbackbone/Chart.yaml +++ b/charts/stable/xbackbone/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 3.3.3 description: XBackBone is a simple, self-hosted, lightweight PHP file manager that support the instant sharing tool ShareX and *NIX systems. It supports uploading and displaying images, GIF, video, code, formatted text, and file downloading and uploading. Also have a web UI with multi user management, past uploads history and search support. name: xbackbone -version: 4.0.0 +version: 4.1.0 kubeVersion: ">=1.16.0-0" keywords: - xbackbone @@ -18,4 +18,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/xteve/Chart.yaml b/charts/stable/xteve/Chart.yaml index 3b0bf6f1..4de06866 100644 --- a/charts/stable/xteve/Chart.yaml +++ b/charts/stable/xteve/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: v2.2.0.200 description: M3U Proxy for Plex DVR and Emby Live TV. name: xteve -version: 7.0.0 +version: 7.1.0 kubeVersion: ">=1.16.0-0" keywords: - xteve @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/youtubedl-material/Chart.yaml b/charts/stable/youtubedl-material/Chart.yaml index c365e687..d003921e 100644 --- a/charts/stable/youtubedl-material/Chart.yaml +++ b/charts/stable/youtubedl-material/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: "4.2" description: Self-hosted YouTube downloader built on Material Design name: youtubedl-material -version: 3.0.0 +version: 3.1.0 kubeVersion: ">=1.16.0-0" keywords: - youtubedl-material @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/zalando-postgres-cluster/Chart.yaml b/charts/stable/zalando-postgres-cluster/Chart.yaml index c0ca57de..584ecf54 100644 --- a/charts/stable/zalando-postgres-cluster/Chart.yaml +++ b/charts/stable/zalando-postgres-cluster/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -version: 2.2.0 +version: 2.3.0 description: Creates a postgres cluster using the Zalando Postgres operator and local storage name: zalando-postgres-cluster appVersion: 1.0.0 @@ -17,4 +17,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/zigbee2mqtt/Chart.yaml b/charts/stable/zigbee2mqtt/Chart.yaml index 89bf3bde..fcd5c72f 100644 --- a/charts/stable/zigbee2mqtt/Chart.yaml +++ b/charts/stable/zigbee2mqtt/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.19.1 description: Bridges events and allows you to control your Zigbee devices via MQTT name: zigbee2mqtt -version: 8.2.0 +version: 8.3.0 kubeVersion: ">=1.16.0-0" keywords: - zigbee @@ -20,4 +20,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/charts/stable/zwavejs2mqtt/Chart.yaml b/charts/stable/zwavejs2mqtt/Chart.yaml index de896d6b..701c6d3a 100644 --- a/charts/stable/zwavejs2mqtt/Chart.yaml +++ b/charts/stable/zwavejs2mqtt/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 5.0.2 description: Fully configurable Zwave to MQTT Gateway and Control Panel name: zwavejs2mqtt -version: 4.1.0 +version: 4.2.0 kubeVersion: ">=1.16.0-0" keywords: - zwave @@ -19,4 +19,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0 diff --git a/templates/chart/Chart.yaml b/templates/chart/Chart.yaml index 05af5140..a45cccf4 100644 --- a/templates/chart/Chart.yaml +++ b/templates/chart/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 1.0.0 description: ${CHARTNAME} helm package name: ${CHARTNAME} -version: 1.2.0 +version: 1.3.0 kubeVersion: ">=1.16.0-0" keywords: - ${CHARTNAME} @@ -16,4 +16,4 @@ maintainers: dependencies: - name: common repository: https://library-charts.k8s-at-home.com - version: 3.2.0 + version: 3.3.0