mirror of
https://github.com/truenas/charts.git
synced 2026-04-04 11:20:18 +08:00
tautulli: switch to upstream image (#2547)
* tautulli: switch to upstream image * remove key
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 := . }}
|
||||
|
||||
@@ -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 {}
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user