Files
chart/library/ix-dev/community/joplin/upgrade_strategy
Stavros Kois a4177f09dc NAS-123672 / 24.04 / add joplin to community apps (#1471)
* add `joplin` to `community` apps

* add storage and service

* add more boilerplat

* add some test values

* add values

* update readme

* add basic ui

* add initialmeta

* add todo

* render config

* use 1001

* fix probes

* reduce permissiosn

* fix portal

* remove todo

* bump common

* simplify probe header

* add deafult creds

* remove redundant values

* update wording
2023-08-30 14:19:06 +03:00

32 lines
727 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+-beta')
def newer_mapping(image_tags):
key = list(image_tags.keys())[0]
tags = {t.strip("-beta"): 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)))