Dynamic polling (#560)
* chore(deps): update helm chart common to v6.3.1 * Fix KMS and Unifi * try a collabora fix * Temporarily disable nzbget probes waiting for next common * try if firefly-iii wants https * Fix a linting error on nzbget and path issues with jackett/prototypeGUI also disable for podgrab for now (just like NZBget, till next common) * try polling the login path for firefly * fireflyiii back to http * APP_KEY typo and useless security context * again * fireflyiii fix broken db setup Co-authored-by: Renovate Bot <bot@renovateapp.com>
This commit is contained in:
co-authored by
Renovate Bot
parent
368026e9b1
commit
3ff41ac29e
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
description: Airsonic is a Free and Open Source community driven media server
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/airsonic
|
||||
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/airsonic-logo.png
|
||||
@@ -19,4 +19,4 @@ sources:
|
||||
- https://github.com/airsonic/airsonic
|
||||
- https://github.com/linuxserver/docker-airsonic
|
||||
- https://github.com/k8s-at-home/charts/tree/master/charts/airsonic
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: v4.0.8
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: AppDaemon is a loosely coupled, multithreaded, sandboxed python execution
|
||||
environment for writing automation apps for Home Assistant home automation software.
|
||||
@@ -26,4 +26,4 @@ name: appdaemon
|
||||
sources:
|
||||
- https://github.com/AppDaemon/appdaemon
|
||||
type: application
|
||||
version: 3.0.2
|
||||
version: 3.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Bazarr is a companion application to Bazarr and Radarr. It manages and
|
||||
downloads subtitles based on your requirements
|
||||
@@ -29,4 +29,4 @@ sources:
|
||||
- https://github.com/Bazarr/Bazarr
|
||||
- https://hub.docker.com/r/linuxserver/bazarr
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Calibre-Web is a web app providing a clean interface for browsing, reading
|
||||
and downloading eBooks using an existing Calibre database.
|
||||
@@ -23,4 +23,4 @@ sources:
|
||||
- https://hub.docker.com/r/linuxserver/calibre-web/
|
||||
- https://github.com/janeczku/calibre-web
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Deluge App for TrueNAS SCALE
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/deluge
|
||||
@@ -21,4 +21,4 @@ name: deluge
|
||||
sources:
|
||||
- https://github.com/deluge-torrent/deluge
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
- condition: postgresql.enabled
|
||||
name: postgresql
|
||||
repository: https://charts.bitnami.com/bitnami
|
||||
@@ -27,4 +27,4 @@ name: fireflyiii
|
||||
sources:
|
||||
- https://github.com/firefly-iii/firefly-iii/
|
||||
type: application
|
||||
version: 4.0.2
|
||||
version: 4.1.0
|
||||
|
||||
@@ -9,6 +9,16 @@ image:
|
||||
pullPolicy: IfNotPresent
|
||||
tag: version-5.5.12
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
path: "/login"
|
||||
|
||||
readiness:
|
||||
path: "/login"
|
||||
|
||||
startup:
|
||||
path: "/login"
|
||||
|
||||
env:
|
||||
DB_USERNAME: fireflyiii
|
||||
DB_DATABASE: fireflyiii
|
||||
|
||||
@@ -28,18 +28,28 @@ service:
|
||||
port: 51080
|
||||
protocol: TCP
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
path: "/login"
|
||||
|
||||
readiness:
|
||||
path: "/login"
|
||||
|
||||
startup:
|
||||
path: "/login"
|
||||
|
||||
env:
|
||||
DB_USERNAME: firefly
|
||||
DB_DATABASE: firefly
|
||||
DB_CONNECTION: pgsql
|
||||
DB_PORT: 5432
|
||||
APP_Key: AGcfkCUS233ZWmBXztYbdyCs2u7kkz55
|
||||
APP_KEY: AGcfkCUS233ZWmBXztYbdyCs2u7kkz55
|
||||
|
||||
envValueFrom:
|
||||
DB_HOST:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
key: url
|
||||
key: postgresql_host
|
||||
DB_PASSWORD:
|
||||
secretKeyRef:
|
||||
name: dbcreds
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: FreshRSS is a self-hosted RSS feed aggregator
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/freshrss
|
||||
@@ -21,4 +21,4 @@ sources:
|
||||
- https://github.com/FreshRSS/FreshRSS
|
||||
- https://hub.docker.com/r/linuxserver/freshrss
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Gaps searches through your Plex Server or local folders for all movies,
|
||||
then queries for known movies in the same collection.
|
||||
@@ -22,4 +22,4 @@ name: gaps
|
||||
sources:
|
||||
- https://github.com/JasonHHouse/gaps
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: ERP beyond your fridge - grocy is a web-based self-hosted groceries &
|
||||
household management solution for your home
|
||||
@@ -20,4 +20,4 @@ name: grocy
|
||||
sources:
|
||||
- https://github.com/grocy/grocy
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: latest
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
description: Simple text sharing
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/haste
|
||||
icon: https://raw.githubusercontent.com/nicholaswilde/helm-charts/main/images/haste.png
|
||||
@@ -21,4 +21,4 @@ name: haste-server
|
||||
sources:
|
||||
- https://github.com/seejohnrun/haste-server
|
||||
- https://github.com/k8s-at-home/container-images
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: An Application dashboard and launcher
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/heimdall
|
||||
@@ -18,4 +18,4 @@ maintainers:
|
||||
name: heimdall
|
||||
sources: null
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: latest
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Get all your books, like series with Sonarr...
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/lazylibrarian
|
||||
@@ -24,4 +24,4 @@ sources:
|
||||
- https://gitlab.com/LazyLibrarian/LazyLibrarian.git
|
||||
- https://lazylibrarian.gitlab.io
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Lychee is a free photo-management tool, which runs on your server or
|
||||
web-space
|
||||
@@ -23,4 +23,4 @@ sources:
|
||||
- https://github.com/LycheeOrg/Lychee
|
||||
- https://hub.docker.com/r/lycheeorg/lychee
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.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.
|
||||
@@ -19,4 +19,4 @@ maintainers:
|
||||
name: mealie
|
||||
sources:
|
||||
- https://github.com/hay-kot/mealie
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Eclipse Mosquitto - An open source MQTT broker
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/mosquitto
|
||||
@@ -21,4 +21,4 @@ name: mosquitto
|
||||
sources:
|
||||
- https://github.com/eclipse/mosquitto
|
||||
type: application
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Navidrome is an open source web-based music collection server and streamer
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/navidrome
|
||||
@@ -22,4 +22,4 @@ sources:
|
||||
- https://github.com/deluan/navidrome
|
||||
- https://hub.docker.com/r/deluan/navidrome
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Node-RED is low-code programming for event-driven applications
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/node-red
|
||||
@@ -20,4 +20,4 @@ name: node-red
|
||||
sources:
|
||||
- https://github.com/node-red/node-red-docker
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: NZBGet is a Usenet downloader client
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/nzbget
|
||||
@@ -20,4 +20,4 @@ name: nzbget
|
||||
sources:
|
||||
- https://nzbget.net/
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -9,6 +9,16 @@ image:
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v21.1
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
enabled: false
|
||||
|
||||
readiness:
|
||||
enabled: false
|
||||
|
||||
startup:
|
||||
enabled: false
|
||||
|
||||
##
|
||||
# Most other defaults are set in questions.yaml
|
||||
# For other options please refer to the wiki, default_values.yaml or the common library chart
|
||||
|
||||
@@ -14,6 +14,16 @@ service:
|
||||
main:
|
||||
port: 6789
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
enabled: false
|
||||
|
||||
readiness:
|
||||
enabled: false
|
||||
|
||||
startup:
|
||||
enabled: false
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: latest
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: HTPC/Homelab Services Organizer
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/organizr
|
||||
@@ -20,4 +20,4 @@ sources:
|
||||
- https://github.com/causefx/Organizr
|
||||
- https://hub.docker.com/r/organizr/organizr
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: A self-hosted podcast manager to download episodes as soon as they become
|
||||
live.
|
||||
@@ -24,4 +24,4 @@ sources:
|
||||
- https://github.com/akhilrex/podgrab
|
||||
- https://hub.docker.com/r/akhilrex/podgrab
|
||||
type: application
|
||||
version: 4.0.2
|
||||
version: 4.1.0
|
||||
|
||||
@@ -10,6 +10,16 @@ image:
|
||||
tag: 1.0.0
|
||||
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
enabled: false
|
||||
|
||||
readiness:
|
||||
enabled: false
|
||||
|
||||
startup:
|
||||
enabled: false
|
||||
|
||||
##
|
||||
# Most other defaults are set in questions.yaml
|
||||
# For other options please refer to the wiki, default_values.yaml or the common library chart
|
||||
|
||||
@@ -45,3 +45,13 @@ hostPathMounts:
|
||||
enabled: true
|
||||
mountPath: "/assets"
|
||||
type: emptyDir
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
enabled: false
|
||||
|
||||
readiness:
|
||||
enabled: false
|
||||
|
||||
startup:
|
||||
enabled: false
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
description: Indexer manager/proxy built on the popular arr net base stack to integrate
|
||||
with your various PVR apps.
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/prowlarr
|
||||
@@ -21,4 +21,4 @@ name: prowlarr
|
||||
sources:
|
||||
- https://github.com/Prowlarr/Prowlarr
|
||||
- https://github.com/k8s-at-home/container-images
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: qBittorrent is a cross-platform free and open-source BitTorrent client
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/qbittorrent
|
||||
@@ -19,4 +19,4 @@ maintainers:
|
||||
name: qbittorrent
|
||||
sources: null
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: A fork of Radarr to work with Books & AudioBooks
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/readarr
|
||||
@@ -27,4 +27,4 @@ sources:
|
||||
- https://github.com/Readarr/Readarr
|
||||
- https://readarr.com
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
description: Docker registry v2 command line client and repo listing generator with
|
||||
security checks.
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/reg
|
||||
@@ -19,4 +19,4 @@ name: reg
|
||||
sources:
|
||||
- https://github.com/genuinetools/reg
|
||||
- https://github.com/k8s-at-home/container-images/
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Free and easy binary newsreader
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/sabnzbd
|
||||
@@ -20,4 +20,4 @@ name: sabnzbd
|
||||
sources:
|
||||
- https://sabnzbd.org/
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
description: The Lounge, modern web IRC client designed for self-hosting
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/thelounge
|
||||
icon: https://avatars.githubusercontent.com/u/14336958?s=200&v=4
|
||||
@@ -21,4 +21,4 @@ maintainers:
|
||||
name: thelounge
|
||||
sources:
|
||||
- https://github.com/thelounge/thelounge
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: TVheadend - a TV streaming server and digital video recorder
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/tvheadend
|
||||
@@ -22,4 +22,4 @@ name: tvheadend
|
||||
sources:
|
||||
- https://github.com/tvheadend/tvheadend
|
||||
type: application
|
||||
version: 7.0.2
|
||||
version: 7.1.0
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
description: Ubiquiti Network's Unifi Controller
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/unifi
|
||||
@@ -21,4 +21,4 @@ sources:
|
||||
- https://github.com/jacobalberty/unifi-docker
|
||||
- https://unifi-network.ui.com
|
||||
type: application
|
||||
version: 6.0.2
|
||||
version: 6.1.0
|
||||
|
||||
@@ -214,7 +214,7 @@ questions:
|
||||
label: "Port Type"
|
||||
schema:
|
||||
type: string
|
||||
default: "HTTP"
|
||||
default: "HTTPS"
|
||||
enum:
|
||||
- value: HTTP
|
||||
description: "HTTP"
|
||||
|
||||
@@ -17,6 +17,7 @@ service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: HTTPS
|
||||
port: 8443
|
||||
comm:
|
||||
enabled: true
|
||||
|
||||
@@ -3,7 +3,7 @@ appVersion: auto
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org/
|
||||
version: 6.1.1
|
||||
version: 6.3.1
|
||||
deprecated: false
|
||||
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
|
||||
@@ -26,4 +26,4 @@ sources:
|
||||
- https://github.com/davidnewhall/unpackerr
|
||||
- https://hub.docker.com/r/golift/unpackerr
|
||||
type: application
|
||||
version: 1.0.2
|
||||
version: 1.1.0
|
||||
|
||||
Reference in New Issue
Block a user