Files
chart/library/ix-dev/community/ipfs/upgrade_strategy
Stavros Kois 010418b98c NAS-120628 / 23.10 / Add IPFS app to community train (#1023)
* Add ipfs to community train

* run chown before config and only once

* fix selector

* update readme(s)

* add update strategy
2023-03-20 18:00:15 +02:00

27 lines
580 B
Python
Executable File

#!/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]
version = semantic_versioning(image_tags[key])
if not version:
return {}
return {
'tags': {key: f'v{version}'},
'app_version': f'v{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)))