reenable syncthing update strategy

This commit is contained in:
Stavros kois
2022-12-13 13:35:34 +02:00
parent 256c393fab
commit 3c4064cc0c

27
test/syncthing/upgrade_strategy Executable file
View File

@@ -0,0 +1,27 @@
#!/usr/bin/python3
import json
import sys
from catalog_update.upgrade_strategy import semantic_versioning
def newer_mapping(image_tags):
key = list(image_tags.keys())[0]
tags = {t: t for t in image_tags[key]}
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)))