fix jenkins upgrade strategy (#1286)

This commit is contained in:
Stavros Kois
2023-06-23 15:30:48 +03:00
committed by GitHub
parent f4e96cd8f1
commit 973c8c3bc9
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ description: Jenkins is a leading open source automation server,
annotations:
title: Jenkins
type: application
version: 1.0.0
version: 1.0.1
apiVersion: v2
appVersion: '2.401.1'
kubeVersion: '>=1.16.0-0'

View File

@@ -11,7 +11,7 @@ RE_STABLE_VERSION = re.compile(r'[0-9]+\.[0-9]+\.[0-9]+-jdk17')
def newer_mapping(image_tags):
key = list(image_tags.keys())[0]
tags = {t.strip('-jdk17'): t for t in image_tags[key] if RE_STABLE_VERSION.fullmatch(t)}
tags = {t.replace('-jdk17', ''): t for t in image_tags[key] if RE_STABLE_VERSION.fullmatch(t)}
version = semantic_versioning(list(tags))
if not version:
return {}