tautulli: switch to upstream image (#2547)

* tautulli: switch to upstream image

* remove key
This commit is contained in:
Stavros Kois
2024-06-06 18:07:58 +03:00
committed by GitHub
parent a7e9917153
commit a3d4bd3bd5
4 changed files with 12 additions and 7 deletions

View File

@@ -3,9 +3,9 @@ description: Tautulli is a python based web application for monitoring, analytic
annotations:
title: Tautulli
type: application
version: 1.2.3
version: 1.2.4
apiVersion: v2
appVersion: 2.13.4
appVersion: v2.14.2
kubeVersion: '>=1.16.0-0'
maintainers:
- name: truenas

View File

@@ -15,10 +15,15 @@ workload:
runAsUser: {{ .Values.tautulliRunAs.user }}
runAsGroup: {{ .Values.tautulliRunAs.group }}
command:
- /entrypoint.sh
- python
- Tautulli.py
args:
- --port
- {{ .Values.tautulliNetwork.webPort | quote }}
- --config
- /config/config.ini
- --datadir
- /config
{{ with .Values.tautulliConfig.additionalEnvs }}
envList:
{{ range $env := . }}

View File

@@ -6,12 +6,12 @@ import sys
from catalog_update.upgrade_strategy import semantic_versioning
RE_STABLE_VERSION = re.compile(r'[0-9]+\.[0-9]+\.[0-9]+')
RE_STABLE_VERSION = re.compile(r'v[0-9]+\.[0-9]+\.[0-9]+')
def newer_mapping(image_tags):
key = list(image_tags.keys())[0]
tags = {t: t for t in image_tags[key] if RE_STABLE_VERSION.fullmatch(t)}
tags = {t.strip('v'): t for t in image_tags[key]}
version = semantic_versioning(list(tags))
if not version:
return {}

View File

@@ -1,7 +1,7 @@
image:
repository: ghcr.io/onedr0p/tautulli
repository: tautulli/tautulli
pullPolicy: IfNotPresent
tag: 2.13.4
tag: v2.14.2
resources:
limits: