Files
chart/library/ix-dev/community/passbolt/upgrade_strategy
Stavros Kois 7513fcf82b add passbolt to community train (#1650)
* init commit

* add `passbolt` to `community` train

* roofs

* mount var run

* probes

* try init user

* fix app url

* add metadata

* remove init user

* add questions and revert to user 33

* plump hostnet and add hostnet values for ci

* fix perms and UI
2023-10-20 23:59:13 +03:00

32 lines
763 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+-\d+-ce-non-root')
def newer_mapping(image_tags):
key = list(image_tags.keys())[0]
tags = {t.strip('-ce-non-root').replace('-', '.'): 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)))