mirror of
https://github.com/truenas/charts.git
synced 2026-04-13 17:52:13 +08:00
fix pihole upgrade_strategy (#1810)
This commit is contained in:
@@ -11,7 +11,7 @@ RE_STABLE_VERSION = re.compile(r'\d+\.\d+\.\d+')
|
||||
|
||||
def newer_mapping(image_tags):
|
||||
key = list(image_tags.keys())[0]
|
||||
tags = {t for t in image_tags[key] if RE_STABLE_VERSION.fullmatch(t)}
|
||||
tags = {t: t for t in image_tags[key] if RE_STABLE_VERSION.fullmatch(t)}
|
||||
version = semantic_versioning(list(tags))
|
||||
if not version:
|
||||
return {}
|
||||
|
||||
Reference in New Issue
Block a user