Files
chart/library/ix-dev/community/rsyncd/upgrade_strategy
Stavros Kois a2fb88a46b NAS-122154 / 23.10 / Add rsyncd to community train (#1227)
* add initial files

* add some validation and fix image tag

* add modules to the config

* extend test and add capabilities

* add extra test

* rsync -> Rsync and add metadata file

* add UI

* hide questions when module is disablwed

* rename test file and add validation to questions

* remove dot

* update wording

* remove logToStdout toggle

* update image
2023-06-05 15:57:18 +03:00

31 lines
715 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'[1-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)}
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)))