From 048161293c4109a2a983b0804423200545e59e8a Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Sun, 7 Mar 2021 17:46:04 +0100 Subject: [PATCH] Cleanup versioning and add auto-updater (#245) --- .github/renovate.json5 | 59 ++++++++++++++++++++- charts/bazarr/2.0.0/Chart.yaml | 2 +- charts/calibre-web/2.0.0/Chart.yaml | 2 +- charts/collabora-online/2.0.0/Chart.yaml | 2 +- charts/deluge/2.0.0/Chart.yaml | 2 +- charts/deluge/2.0.0/ix_values.yaml | 2 +- charts/deluge/2.0.0/test_values.yaml | 2 +- charts/esphome/2.0.0/Chart.yaml | 2 +- charts/freshrss/2.0.0/Chart.yaml | 2 +- charts/gaps/2.0.0/Chart.yaml | 2 +- charts/gaps/2.0.0/ix_values.yaml | 2 +- charts/gaps/2.0.0/test_values.yaml | 2 +- charts/grocy/2.0.0/Chart.yaml | 2 +- charts/handbrake/2.0.0/Chart.yaml | 2 +- charts/handbrake/2.0.0/ix_values.yaml | 1 + charts/heimdall/2.0.0/Chart.yaml | 2 +- charts/home-assistant/2.0.0/Chart.yaml | 2 +- charts/jackett/2.0.0/Chart.yaml | 2 +- charts/jellyfin/2.0.0/Chart.yaml | 2 +- charts/kms/2.0.0/Chart.yaml | 2 +- charts/lazylibrarian/2.0.0/Chart.yaml | 2 +- charts/lazylibrarian/2.0.0/ix_values.yaml | 2 +- charts/lazylibrarian/2.0.0/test_values.yaml | 2 +- charts/lidarr/2.0.0/Chart.yaml | 2 +- charts/lychee/2.0.0/Chart.yaml | 2 +- charts/navidrome/2.0.0/Chart.yaml | 2 +- charts/node-red/2.0.0/Chart.yaml | 2 +- charts/nzbget/2.0.0/Chart.yaml | 2 +- charts/nzbhydra/2.0.0/Chart.yaml | 2 +- charts/nzbhydra/2.0.0/ix_values.yaml | 1 + charts/ombi/2.0.0/Chart.yaml | 2 +- charts/organizr/2.0.0/Chart.yaml | 2 +- charts/qbittorrent/2.0.0/Chart.yaml | 2 +- charts/qbittorrent/2.0.0/ix_values.yaml | 2 +- charts/qbittorrent/2.0.0/test_values.yaml | 2 +- charts/radarr/2.0.0/Chart.yaml | 2 +- charts/radarr/2.0.0/ix_values.yaml | 1 + charts/readarr/2.0.0/Chart.yaml | 2 +- charts/sabnzbd/2.0.0/Chart.yaml | 2 +- charts/sonarr/2.0.0/Chart.yaml | 2 +- charts/sonarr/2.0.0/ix_values.yaml | 1 + charts/tautulli/2.0.0/Chart.yaml | 2 +- charts/traefik/2.0.0/ix_values.yaml | 2 +- charts/traefik/2.0.0/test_values.yaml | 2 +- charts/transmission/2.0.0/Chart.yaml | 2 +- charts/truecommand/2.0.0/Chart.yaml | 2 +- charts/unifi/2.0.0/Chart.yaml | 2 +- charts/unifi/2.0.0/ix_values.yaml | 2 +- charts/unifi/2.0.0/test_values.yaml | 2 +- charts/zwavejs2mqtt/2.0.0/Chart.yaml | 2 +- charts/zwavejs2mqtt/2.0.0/ix_values.yaml | 1 + library/common-test/values.yaml | 2 +- 52 files changed, 108 insertions(+), 48 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 88c8997faad..427461369c9 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -8,15 +8,16 @@ "rebaseWhen": "conflicted", "prConcurrentLimit": 5, "helm-values": { - "enabled": false + "fileMatch": ["charts/.+/.+/.*_values\\.yaml$"] }, "helmv3": { "fileMatch": ["charts/.+/.+/Chart\\.yaml$"] }, "packageRules": [ - // Setup datasources + // Setup datasources for dep updates { "datasources": ["helm"], + "matchManagers": ["helmv3"], "commitMessageTopic": "Helm chart {{depName}}", "separateMinorPatch": true }, @@ -78,6 +79,60 @@ "schedule": [ "every 1 months on the first day of the month" ] + }, + // Setup datasources tag updates + { + "datasources": ["helm"], + "matchManagers": ["helm-values"], + "commitMessageTopic": "Helm chart {{depName}}" + }, + // + // Tag updates for semantic tags + // + { + "commitMessagePrefix": "[{{{parentDir}}}]", + "branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}", + "updateTypes": ["major"], + "bumpVersion": "major", + "labels": ["tag/major"] + }, + { + "updateTypes": ["minor"], + "bumpVersion": "patch", + "labels": ["tag/minor"], + "groupName": ["minor"] + }, + { + "updateTypes": ["patch", "minor"], + "bumpVersion": "patch", + "labels": ["tag/patch"], + "groupName": ["patch"] + }, + // + // Tag updates for linuxserver two-three digit versions + // + { + "packagePatterns": ["^linuxserver\\/"], + "versionScheme": "regex:^(?.*?(\\d+\\.)??)(?\\d+)\\.(?\\d+)\\.?(?\\d+)?(-r?p?\\d)?$" + }, + { + "commitMessagePrefix": "[{{{parentDir}}}]", + "branchTopic": "{{{parentDir}}}-{{{depNameSanitized}}}-{{{newMajor}}}{{#if isPatch}}.{{{newMinor}}}{{/if}}.x{{#if isLockfileUpdate}}-lockfile{{/if}}", + "updateTypes": ["major"], + "bumpVersion": "major", + "labels": ["tag/major"] + }, + { + "updateTypes": ["minor"], + "bumpVersion": "patch", + "labels": ["tag/minor"], + "groupName": ["minor"] + }, + { + "updateTypes": ["patch", "minor"], + "bumpVersion": "patch", + "labels": ["tag/patch"], + "groupName": ["patch"] } ] } diff --git a/charts/bazarr/2.0.0/Chart.yaml b/charts/bazarr/2.0.0/Chart.yaml index 7e338d3565e..422f696c7e2 100644 --- a/charts/bazarr/2.0.0/Chart.yaml +++ b/charts/bazarr/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/bazarr/2.0.0/Chart.yaml upstream_version: 5.2.1 -appVersion: v0.9.0.5 +appVersion: "auto" description: Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements type: application deprecated: false diff --git a/charts/calibre-web/2.0.0/Chart.yaml b/charts/calibre-web/2.0.0/Chart.yaml index bca2d216ad9..7bf20de18bd 100644 --- a/charts/calibre-web/2.0.0/Chart.yaml +++ b/charts/calibre-web/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/calibre-web/2.0.0/Chart.yaml upstream_version: 4.3.1 -appVersion: 0.6.9 +appVersion: "auto" description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. type: application deprecated: false diff --git a/charts/collabora-online/2.0.0/Chart.yaml b/charts/collabora-online/2.0.0/Chart.yaml index 0a351570a49..a19b3dabffd 100644 --- a/charts/collabora-online/2.0.0/Chart.yaml +++ b/charts/collabora-online/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/collabora-online/2.0.0/Chart.yaml # upstream_version: -appVersion: 6.4.6.1 +appVersion: "auto" description: Collabora Online Development Edition – an awesome, Online Office suite image suitable for home use. type: application deprecated: false diff --git a/charts/deluge/2.0.0/Chart.yaml b/charts/deluge/2.0.0/Chart.yaml index b2e521bff85..48c84ecdebc 100644 --- a/charts/deluge/2.0.0/Chart.yaml +++ b/charts/deluge/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/deluge/2.0.0/Chart.yaml upstream_version: 1.1.1 -appVersion: v2.0.3-2201906121747 +appVersion: "latest" description: Deluge is a torrent download client type: application deprecated: false diff --git a/charts/deluge/2.0.0/ix_values.yaml b/charts/deluge/2.0.0/ix_values.yaml index f34e2d338d5..671da2e5e51 100644 --- a/charts/deluge/2.0.0/ix_values.yaml +++ b/charts/deluge/2.0.0/ix_values.yaml @@ -7,7 +7,7 @@ image: repository: linuxserver/deluge pullPolicy: IfNotPresent - tag: version-2.0.3-2201906121747ubuntu18.04.1 + tag: latest ## # Most other defaults are set in questions.yaml diff --git a/charts/deluge/2.0.0/test_values.yaml b/charts/deluge/2.0.0/test_values.yaml index b010785d752..b9c68fa17a5 100644 --- a/charts/deluge/2.0.0/test_values.yaml +++ b/charts/deluge/2.0.0/test_values.yaml @@ -3,7 +3,7 @@ image: repository: linuxserver/deluge pullPolicy: IfNotPresent - tag: version-2.0.3-2201906121747ubuntu18.04.1 + tag: latest strategy: type: Recreate diff --git a/charts/esphome/2.0.0/Chart.yaml b/charts/esphome/2.0.0/Chart.yaml index 18d402168dc..3db0597aad6 100644 --- a/charts/esphome/2.0.0/Chart.yaml +++ b/charts/esphome/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/esphome/2.0.0/Chart.yaml upstream_version: 4.3.1 -appVersion: 1.15.3 +appVersion: "auto" description: ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems. type: application deprecated: false diff --git a/charts/freshrss/2.0.0/Chart.yaml b/charts/freshrss/2.0.0/Chart.yaml index b013128e8ff..c8df1424cfc 100644 --- a/charts/freshrss/2.0.0/Chart.yaml +++ b/charts/freshrss/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/freshrss/2.0.0/Chart.yaml upstream_version: 2.3.1 -appVersion: 1.17.0 +appVersion: "auto" description: FreshRSS is a self-hosted RSS feed aggregator type: application deprecated: false diff --git a/charts/gaps/2.0.0/Chart.yaml b/charts/gaps/2.0.0/Chart.yaml index b8260f6141d..ee15e749b56 100644 --- a/charts/gaps/2.0.0/Chart.yaml +++ b/charts/gaps/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/gaps/2.0.0/Chart.yaml upstream_version: 1.1.1 -appVersion: latest +appVersion: "auto" description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. type: application deprecated: false diff --git a/charts/gaps/2.0.0/ix_values.yaml b/charts/gaps/2.0.0/ix_values.yaml index fb1c358f9be..d11177660e5 100644 --- a/charts/gaps/2.0.0/ix_values.yaml +++ b/charts/gaps/2.0.0/ix_values.yaml @@ -7,7 +7,7 @@ image: repository: housewrecker/gaps pullPolicy: IfNotPresent - tag: latest + tag: v0.8.8 ## # Most other defaults are set in questions.yaml diff --git a/charts/gaps/2.0.0/test_values.yaml b/charts/gaps/2.0.0/test_values.yaml index 70f0b6b91fc..af433c55bb8 100644 --- a/charts/gaps/2.0.0/test_values.yaml +++ b/charts/gaps/2.0.0/test_values.yaml @@ -3,7 +3,7 @@ image: repository: housewrecker/gaps pullPolicy: IfNotPresent - tag: latest + tag: v0.8.8 strategy: type: Recreate diff --git a/charts/grocy/2.0.0/Chart.yaml b/charts/grocy/2.0.0/Chart.yaml index 61e848a07eb..e53d793e448 100644 --- a/charts/grocy/2.0.0/Chart.yaml +++ b/charts/grocy/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/grocy/2.0.0/Chart.yaml upstream_version: 4.3.1 -appVersion: v2.7.1 +appVersion: "auto" description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home type: application deprecated: false diff --git a/charts/handbrake/2.0.0/Chart.yaml b/charts/handbrake/2.0.0/Chart.yaml index d798089a730..66e1f5fb913 100644 --- a/charts/handbrake/2.0.0/Chart.yaml +++ b/charts/handbrake/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.3.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/handbrake/2.0.0/Chart.yaml # upstream_version: -appVersion: 1.23.1 +appVersion: "auto" description: HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. type: application deprecated: false diff --git a/charts/handbrake/2.0.0/ix_values.yaml b/charts/handbrake/2.0.0/ix_values.yaml index c75068f5dcf..b8fd1dd808c 100644 --- a/charts/handbrake/2.0.0/ix_values.yaml +++ b/charts/handbrake/2.0.0/ix_values.yaml @@ -8,6 +8,7 @@ image: repository: jlesage/handbrake tag: v1.23.1 pullPolicy: IfNotPresent + #All values here are set as the docker defaults. envTpl: # Permissions Settings diff --git a/charts/heimdall/2.0.0/Chart.yaml b/charts/heimdall/2.0.0/Chart.yaml index b8bc6f40eca..c60af70da41 100644 --- a/charts/heimdall/2.0.0/Chart.yaml +++ b/charts/heimdall/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/heimdall/2.0.0/Chart.yaml upstream_version: 4.1.1 -appVersion: 2.2.2 +appVersion: "auto" description: An Application dashboard and launcher type: application deprecated: false diff --git a/charts/home-assistant/2.0.0/Chart.yaml b/charts/home-assistant/2.0.0/Chart.yaml index 31d986aaad5..5016329eee2 100644 --- a/charts/home-assistant/2.0.0/Chart.yaml +++ b/charts/home-assistant/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/home-assistant/2.0.0/Chart.yaml upstream_version: 5.3.0 -appVersion: 2021.2.2 +appVersion: "auto" description: home-assistant App for TrueNAS SCALE type: application deprecated: false diff --git a/charts/jackett/2.0.0/Chart.yaml b/charts/jackett/2.0.0/Chart.yaml index 0d9906d2357..b8f8589f1d8 100644 --- a/charts/jackett/2.0.0/Chart.yaml +++ b/charts/jackett/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/jackett/2.0.0/Chart.yaml upstream_version: 7.0.1 -appVersion: version-v0.17.153 +appVersion: "auto" description: API Support for your favorite torrent trackers. type: application deprecated: false diff --git a/charts/jellyfin/2.0.0/Chart.yaml b/charts/jellyfin/2.0.0/Chart.yaml index 8fea37106be..9ac06eec798 100644 --- a/charts/jellyfin/2.0.0/Chart.yaml +++ b/charts/jellyfin/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/jellyfin/2.0.0/Chart.yaml upstream_version: 4.2.1 -appVersion: 10.6.4 +appVersion: "auto" description: Jellyfin is a Free Software Media System type: application deprecated: false diff --git a/charts/kms/2.0.0/Chart.yaml b/charts/kms/2.0.0/Chart.yaml index 15682d10bcb..31ede17308d 100644 --- a/charts/kms/2.0.0/Chart.yaml +++ b/charts/kms/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/kms/2.0.0/Chart.yaml # upstream_version: -appVersion: latest +appVersion: "auto" description: Private Windows Activation Server for development and testing type: application deprecated: false diff --git a/charts/lazylibrarian/2.0.0/Chart.yaml b/charts/lazylibrarian/2.0.0/Chart.yaml index 8448dcbf2f5..22cf5e85f37 100644 --- a/charts/lazylibrarian/2.0.0/Chart.yaml +++ b/charts/lazylibrarian/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/lazylibrarian/2.0.0/Chart.yaml upstream_version: 2.1.0 -appVersion: 1.7.2 +appVersion: "latest" description: Get all your books, like series with Sonarr... type: application deprecated: false diff --git a/charts/lazylibrarian/2.0.0/ix_values.yaml b/charts/lazylibrarian/2.0.0/ix_values.yaml index 089d608e0f4..be495b43a39 100644 --- a/charts/lazylibrarian/2.0.0/ix_values.yaml +++ b/charts/lazylibrarian/2.0.0/ix_values.yaml @@ -7,7 +7,7 @@ image: repository: linuxserver/lazylibrarian pullPolicy: IfNotPresent - tag: version-047f91af + tag: latest ## # Most other defaults are set in questions.yaml diff --git a/charts/lazylibrarian/2.0.0/test_values.yaml b/charts/lazylibrarian/2.0.0/test_values.yaml index 570fe4b4f49..a5bad0318c0 100644 --- a/charts/lazylibrarian/2.0.0/test_values.yaml +++ b/charts/lazylibrarian/2.0.0/test_values.yaml @@ -3,7 +3,7 @@ image: repository: linuxserver/lazylibrarian pullPolicy: IfNotPresent - tag: version-047f91af + tag: latest strategy: type: Recreate diff --git a/charts/lidarr/2.0.0/Chart.yaml b/charts/lidarr/2.0.0/Chart.yaml index e683dec2f00..1876eb62e7a 100644 --- a/charts/lidarr/2.0.0/Chart.yaml +++ b/charts/lidarr/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/lidarr/2.0.0/Chart.yaml upstream_version: 7.1.0 -appVersion: 0.8.0.1886 +appVersion: "auto" description: Looks and smells like Sonarr but made for music type: application deprecated: false diff --git a/charts/lychee/2.0.0/Chart.yaml b/charts/lychee/2.0.0/Chart.yaml index e9a765f3a40..12ae769eadd 100644 --- a/charts/lychee/2.0.0/Chart.yaml +++ b/charts/lychee/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/lychee/2.0.0/Chart.yaml upstream_version: 2.3.1 -appVersion: 4.0.8 +appVersion: "auto" description: Lychee is a free photo-management tool, which runs on your server or web-space type: application deprecated: false diff --git a/charts/navidrome/2.0.0/Chart.yaml b/charts/navidrome/2.0.0/Chart.yaml index 3977e7b7780..1d03d928e2b 100644 --- a/charts/navidrome/2.0.0/Chart.yaml +++ b/charts/navidrome/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/navidrome/2.0.0/Chart.yaml upstream_version: 2.3.1 -appVersion: 0.39.0 +appVersion: "auto" description: Navidrome is an open source web-based music collection server and streamer type: application deprecated: false diff --git a/charts/node-red/2.0.0/Chart.yaml b/charts/node-red/2.0.0/Chart.yaml index dbe73dba660..a126edc7a91 100644 --- a/charts/node-red/2.0.0/Chart.yaml +++ b/charts/node-red/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/node-red/2.0.0/Chart.yaml upstream_version: 5.2.1 -appVersion: 1.2.5 +appVersion: "auto" description: Node-RED is low-code programming for event-driven applications type: application deprecated: false diff --git a/charts/nzbget/2.0.0/Chart.yaml b/charts/nzbget/2.0.0/Chart.yaml index 3c082317455..784d1440043 100644 --- a/charts/nzbget/2.0.0/Chart.yaml +++ b/charts/nzbget/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/nzbget/2.0.0/Chart.yaml upstream_version: 7.3.1 -appVersion: v21.0 +appVersion: "auto" description: NZBGet is a Usenet downloader client type: application deprecated: false diff --git a/charts/nzbhydra/2.0.0/Chart.yaml b/charts/nzbhydra/2.0.0/Chart.yaml index 63785e78657..46c8b47e82d 100644 --- a/charts/nzbhydra/2.0.0/Chart.yaml +++ b/charts/nzbhydra/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/nzbhydra/2.0.0/Chart.yaml upstream_version: 5.3.1 -appVersion: v3.8.1 +appVersion: "auto" description: Usenet meta search type: application deprecated: false diff --git a/charts/nzbhydra/2.0.0/ix_values.yaml b/charts/nzbhydra/2.0.0/ix_values.yaml index ca7bcd934ea..ec3ae0e6e48 100644 --- a/charts/nzbhydra/2.0.0/ix_values.yaml +++ b/charts/nzbhydra/2.0.0/ix_values.yaml @@ -8,6 +8,7 @@ image: repository: linuxserver/nzbhydra2 pullPolicy: IfNotPresent tag: version-v3.8.1 + probes: liveness: custom: true diff --git a/charts/ombi/2.0.0/Chart.yaml b/charts/ombi/2.0.0/Chart.yaml index b7c7c3e2550..510bdcb418b 100644 --- a/charts/ombi/2.0.0/Chart.yaml +++ b/charts/ombi/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/ombi/2.0.0/Chart.yaml upstream_version: 8.0.1 -appVersion: 4.0.681 +appVersion: "auto" description: Want a Movie or TV Show on Plex or Emby? Use Ombi! type: application deprecated: false diff --git a/charts/organizr/2.0.0/Chart.yaml b/charts/organizr/2.0.0/Chart.yaml index 1527f60f47c..1600af0d610 100644 --- a/charts/organizr/2.0.0/Chart.yaml +++ b/charts/organizr/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/organizr/2.0.0/Chart.yaml upstream_version: 3.2.1 -appVersion: latest +appVersion: "latest" description: HTPC/Homelab Services Organizer type: application deprecated: false diff --git a/charts/qbittorrent/2.0.0/Chart.yaml b/charts/qbittorrent/2.0.0/Chart.yaml index c7f15380b2b..f25d0679df4 100644 --- a/charts/qbittorrent/2.0.0/Chart.yaml +++ b/charts/qbittorrent/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/qbittorrent/2.0.0/Chart.yaml upstream_version: 7.2.1 -appVersion: 4.3.0 +appVersion: "latest" description: qBittorrent is a cross-platform free and open-source BitTorrent client type: application deprecated: false diff --git a/charts/qbittorrent/2.0.0/ix_values.yaml b/charts/qbittorrent/2.0.0/ix_values.yaml index bfbb3c5d0b6..0bc17637ab8 100644 --- a/charts/qbittorrent/2.0.0/ix_values.yaml +++ b/charts/qbittorrent/2.0.0/ix_values.yaml @@ -7,7 +7,7 @@ image: repository: linuxserver/qbittorrent pullPolicy: IfNotPresent - tag: version-4.3.0202010181232-7086-1c663adeeubuntu18.04.1 + tag: latest ## # Most other defaults are set in questions.yaml diff --git a/charts/qbittorrent/2.0.0/test_values.yaml b/charts/qbittorrent/2.0.0/test_values.yaml index e5afd3a8a17..d9830ea376c 100644 --- a/charts/qbittorrent/2.0.0/test_values.yaml +++ b/charts/qbittorrent/2.0.0/test_values.yaml @@ -3,7 +3,7 @@ image: repository: linuxserver/qbittorrent pullPolicy: IfNotPresent - tag: version-4.3.0202010181232-7086-1c663adeeubuntu18.04.1 + tag: latest strategy: type: Recreate diff --git a/charts/radarr/2.0.0/Chart.yaml b/charts/radarr/2.0.0/Chart.yaml index 902007b4518..def8a74b9e8 100644 --- a/charts/radarr/2.0.0/Chart.yaml +++ b/charts/radarr/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/radarr/2.0.0/Chart.yaml upstream_version: 9.1.0 -appVersion: "version-3.0.0.3989" +appVersion: "auto" description: A fork of Sonarr to work with movies à la Couchpotato type: application deprecated: false diff --git a/charts/radarr/2.0.0/ix_values.yaml b/charts/radarr/2.0.0/ix_values.yaml index d4736d6dfd7..fe62b072041 100644 --- a/charts/radarr/2.0.0/ix_values.yaml +++ b/charts/radarr/2.0.0/ix_values.yaml @@ -8,6 +8,7 @@ image: repository: linuxserver/radarr pullPolicy: IfNotPresent tag: version-3.0.0.3989 + probes: liveness: enabled: true diff --git a/charts/readarr/2.0.0/Chart.yaml b/charts/readarr/2.0.0/Chart.yaml index 467bdd8283a..02e091de046 100644 --- a/charts/readarr/2.0.0/Chart.yaml +++ b/charts/readarr/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/readarr/2.0.0/Chart.yaml upstream_version: 2.1.0 -appversion: "nightly" +appVersion: "nightly" description: A fork of Radarr to work with Books & AudioBooks type: application deprecated: false diff --git a/charts/sabnzbd/2.0.0/Chart.yaml b/charts/sabnzbd/2.0.0/Chart.yaml index 0f2c68c87f8..f7e4886662b 100644 --- a/charts/sabnzbd/2.0.0/Chart.yaml +++ b/charts/sabnzbd/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/sabnzbd/2.0.0/Chart.yaml upstream_version: 5.0.1 -appVersion: 3.1.0 +appVersion: "auto" description: Free and easy binary newsreader type: application deprecated: false diff --git a/charts/sonarr/2.0.0/Chart.yaml b/charts/sonarr/2.0.0/Chart.yaml index edb710aa2e3..8a369eb78fd 100644 --- a/charts/sonarr/2.0.0/Chart.yaml +++ b/charts/sonarr/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/sonarr/2.0.0/Chart.yaml upstream_version: 9.1.0 -appVersion: "version-3.0.4.993" +appVersion: "auto" description: Smart PVR for newsgroup and bittorrent users type: application deprecated: false diff --git a/charts/sonarr/2.0.0/ix_values.yaml b/charts/sonarr/2.0.0/ix_values.yaml index d0eae739e4c..32a7540a2bc 100644 --- a/charts/sonarr/2.0.0/ix_values.yaml +++ b/charts/sonarr/2.0.0/ix_values.yaml @@ -8,6 +8,7 @@ image: repository: linuxserver/sonarr pullPolicy: IfNotPresent tag: version-3.0.4.993 + probes: liveness: enabled: true diff --git a/charts/tautulli/2.0.0/Chart.yaml b/charts/tautulli/2.0.0/Chart.yaml index a765af87224..47792d722b2 100644 --- a/charts/tautulli/2.0.0/Chart.yaml +++ b/charts/tautulli/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/tautulli/2.0.0/Chart.yaml upstream_version: 7.0.1 -appVersion: "v2.6.6" +appVersion: "auto" description: A Python based monitoring and tracking tool for Plex Media Server type: application deprecated: false diff --git a/charts/traefik/2.0.0/ix_values.yaml b/charts/traefik/2.0.0/ix_values.yaml index 066f17e19fb..26f6ebac0e6 100644 --- a/charts/traefik/2.0.0/ix_values.yaml +++ b/charts/traefik/2.0.0/ix_values.yaml @@ -7,7 +7,7 @@ image: name: traefik # defaults to appVersion - tag: "" + tag: v2.4.6 pullPolicy: IfNotPresent # diff --git a/charts/traefik/2.0.0/test_values.yaml b/charts/traefik/2.0.0/test_values.yaml index 5ba957a604d..e47c311159e 100644 --- a/charts/traefik/2.0.0/test_values.yaml +++ b/charts/traefik/2.0.0/test_values.yaml @@ -2,7 +2,7 @@ image: name: traefik # defaults to appVersion - tag: "" + tag: v2.4.6 pullPolicy: IfNotPresent # diff --git a/charts/transmission/2.0.0/Chart.yaml b/charts/transmission/2.0.0/Chart.yaml index 7f002002066..dca3ee6203b 100644 --- a/charts/transmission/2.0.0/Chart.yaml +++ b/charts/transmission/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/transmission/2.0.0/Chart.yaml # upstream_version: -appVersion: "version-v0.17.153" +appVersion: "auto" description: API Support for your favorite torrent trackers. type: application deprecated: false diff --git a/charts/truecommand/2.0.0/Chart.yaml b/charts/truecommand/2.0.0/Chart.yaml index 59ed7eab064..17a777a9f79 100644 --- a/charts/truecommand/2.0.0/Chart.yaml +++ b/charts/truecommand/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/truecommand/2.0.0/Chart.yaml # upstream_version: 1.1.0 -appVersion: 1.3.2 +appVersion: "auto" description: Aggregated management of TrueNAS devices type: application deprecated: false diff --git a/charts/unifi/2.0.0/Chart.yaml b/charts/unifi/2.0.0/Chart.yaml index f5a7ee78a8d..19c2d48f705 100644 --- a/charts/unifi/2.0.0/Chart.yaml +++ b/charts/unifi/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.3.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/unifi/2.0.0/Chart.yaml upstream_version: 1.5.1 -appVersion: 5.14.23 +appVersion: "auto" description: Ubiquiti Network's Unifi Controller type: application deprecated: false diff --git a/charts/unifi/2.0.0/ix_values.yaml b/charts/unifi/2.0.0/ix_values.yaml index e909485ac32..d14aab2f201 100644 --- a/charts/unifi/2.0.0/ix_values.yaml +++ b/charts/unifi/2.0.0/ix_values.yaml @@ -6,7 +6,7 @@ image: repository: jacobalberty/unifi - tag: stable-6 + tag: 6.0.45 pullPolicy: IfNotPresent ## diff --git a/charts/unifi/2.0.0/test_values.yaml b/charts/unifi/2.0.0/test_values.yaml index 3fbc543f694..94e1ceb9daa 100644 --- a/charts/unifi/2.0.0/test_values.yaml +++ b/charts/unifi/2.0.0/test_values.yaml @@ -2,7 +2,7 @@ image: repository: jacobalberty/unifi - tag: stable-6 + tag: 6.0.45 pullPolicy: IfNotPresent strategy: diff --git a/charts/zwavejs2mqtt/2.0.0/Chart.yaml b/charts/zwavejs2mqtt/2.0.0/Chart.yaml index 5772e4d2a5e..5dabd5cadbd 100644 --- a/charts/zwavejs2mqtt/2.0.0/Chart.yaml +++ b/charts/zwavejs2mqtt/2.0.0/Chart.yaml @@ -7,7 +7,7 @@ version: 1.6.4 version: 2.0.0 >>>>>>> [Common] Refactor Services (#212):charts/zwavejs2mqtt/2.0.0/Chart.yaml upstream_version: 1.1.0 -appVersion: 1.1.1 +appVersion: "auto" description: Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue type: application deprecated: false diff --git a/charts/zwavejs2mqtt/2.0.0/ix_values.yaml b/charts/zwavejs2mqtt/2.0.0/ix_values.yaml index 8f453d4d911..31c97dd8c13 100644 --- a/charts/zwavejs2mqtt/2.0.0/ix_values.yaml +++ b/charts/zwavejs2mqtt/2.0.0/ix_values.yaml @@ -8,6 +8,7 @@ image: repository: zwavejs/zwavejs2mqtt pullPolicy: IfNotPresent tag: 1.1.1 + probes: liveness: enabled: true diff --git a/library/common-test/values.yaml b/library/common-test/values.yaml index a858189c907..be76319d8bc 100644 --- a/library/common-test/values.yaml +++ b/library/common-test/values.yaml @@ -1,6 +1,6 @@ image: repository: b4bz/homer - tag: latest + tag: 21.03.1 pullPolicy: IfNotPresent services: