From 7574f60b2dfbefe417a38c6a2b73edc6bc1cbb5a Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Jul 20 2021 14:57:07 +0000 Subject: coreos-download: add support for Azure Stack images We're soon going to ship it. --- diff --git a/sites/static/js/coreos-download.js b/sites/static/js/coreos-download.js index cc80449..9210c4e 100644 --- a/sites/static/js/coreos-download.js +++ b/sites/static/js/coreos-download.js @@ -6,7 +6,7 @@ //const baseUrl = 'https://s3.amazonaws.com/fcos-builds/streams' const baseUrl = 'https://builds.coreos.fedoraproject.org/streams' // list of cloud image artifacts -const cloudImages = ['aws', 'azure', 'aliyun', 'digitalocean', 'exoscale', 'gcp', 'ibmcloud', 'openstack', 'packet', 'vultr'] +const cloudImages = ['aws', 'azure', 'azurestack', 'aliyun', 'digitalocean', 'exoscale', 'gcp', 'ibmcloud', 'openstack', 'packet', 'vultr'] // list of virtualized image artifacts const virtualizedImages = ['openstack', 'qemu', 'virtualbox', 'vmware'] // dict of pretty names for platforms, indexed by platform.extension @@ -14,6 +14,7 @@ const prettyPlatforms = { "aliyun": "Alibaba Cloud", "aws": "AWS", "azure": "Azure", + "azurestack": "Azure Stack", "digitalocean": "DigitalOcean", "exoscale": "Exoscale", "gcp": "GCP",