Files
chart/library/ix-dev/community/netbootxyz/upgrade_strategy
Kelly Shutt b7ddea7dc2 netboot.xyz - Match values.yaml to questions.yaml (#2119)
* in.tftpd needs chroot to spawn child processes.

* Bump version number.

* Fixes #2104 - Make the nbxyz version numbers look like semantic versions.

* Match defaults in questions.yaml

* Bump version number.

* Bump version.

* Fix app version.

* Mark executable
2024-02-02 11:58:33 +02:00

32 lines
738 B
Python
Executable File

#!/usr/bin/python3
import json
import re
import sys
from catalog_update.upgrade_strategy import semantic_versioning
RE_STABLE_VERSION = re.compile(r'\d+\.\d+\.\d+-nbxyz\d')
def newer_mapping(image_tags):
key = list(image_tags.keys())[0]
tags = {t.replace("-nbxyz", "."): t for t in image_tags[key] if RE_STABLE_VERSION.fullmatch(t)}
version = semantic_versioning(list(tags))
if not version:
return {}
return {
'tags': {key: tags[version]},
'app_version': version,
}
if __name__ == '__main__':
try:
versions_json = json.loads(sys.stdin.read())
except ValueError:
raise ValueError('Invalid json specified')
print(json.dumps(newer_mapping(versions_json)))