With the current state of automation scripts, this is not possible anymore to launch script with multiple auto configs.
17 lines
707 B
Python
17 lines
707 B
Python
from common import dates, http
|
|
from common.releasedata import ProductData, config_from_argv
|
|
|
|
"""Fetch Nutanix products versions from https://portal.nutanix.com/api/v1."""
|
|
|
|
config = config_from_argv()
|
|
with ProductData(config.product) as product_data:
|
|
data = http.fetch_json(f"https://portal.nutanix.com/api/v1/eol/find?type={config.url}")
|
|
|
|
for version_data in data["contents"]:
|
|
release_name = '.'.join(version_data["version"].split(".")[:2])
|
|
|
|
if 'GENERAL_AVAILABILITY' in version_data:
|
|
version = version_data["version"]
|
|
date = dates.parse_datetime(version_data["GENERAL_AVAILABILITY"]).replace(second=0)
|
|
product_data.declare_version(version, date)
|