mirror of
https://github.com/truenas/charts.git
synced 2026-02-11 22:36:39 +08:00
tdarr: fix upgrade regex (#2583)
Tdarr has sometimes used 4 version segments and suffixed `_ffmpeg5` on image tags.
This commit is contained in:
@@ -3,9 +3,9 @@ description: Tdarr is a Distributed Transcoding System
|
||||
annotations:
|
||||
title: Tdarr
|
||||
type: application
|
||||
version: 1.2.3
|
||||
version: 1.2.4
|
||||
apiVersion: v2
|
||||
appVersion: '2.17.01'
|
||||
appVersion: 2.17.01
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
maintainers:
|
||||
- name: truenas
|
||||
|
||||
@@ -7,7 +7,7 @@ from catalog_update.upgrade_strategy import semantic_versioning
|
||||
|
||||
|
||||
# Drop _ffmpeg5 after Cobia is released for a while
|
||||
RE_STABLE_VERSION = re.compile(r'[0-9]+\.[0-9]+\.[0-9]+_ffmpeg5')
|
||||
RE_STABLE_VERSION = re.compile(r'[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?(_ffmpeg5)?')
|
||||
STRIP_TEXT = '_ffmpeg5'
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: haveagitgat/tdarr
|
||||
pullPolicy: IfNotPresent
|
||||
tag: '2.17.01'
|
||||
tag: 2.17.01
|
||||
|
||||
resources:
|
||||
limits:
|
||||
|
||||
Reference in New Issue
Block a user