diff options
author | lucasmoura <lucas.moura@canonical.com> | 2020-06-30 19:25:26 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 16:25:26 -0600 |
commit | 3fcdacc8995d6908858aceaf1da7ee5ff090fc04 (patch) | |
tree | 5cebbbd7e891a65a6a6b33e9b76ccda862e05291 /cloudinit/distros/__init__.py | |
parent | e88f15a3bca93c82eb02c13e87f2b6839385639b (diff) | |
download | vyos-cloud-init-3fcdacc8995d6908858aceaf1da7ee5ff090fc04.tar.gz vyos-cloud-init-3fcdacc8995d6908858aceaf1da7ee5ff090fc04.zip |
Disable ec2 mirror for non aws instances (#390)
For versions before 20.2, we allowed the use of ec2 mirrors if the datasource availability_zone matches one of the ec2 regions. We are now updating that behavior to allow allow the use of ec2 mirrors on ec2 instances or if the user directly passes an an ec2 mirror url through #cloud-config apt directives.
LP: #1456277
Diffstat (limited to 'cloudinit/distros/__init__.py')
-rwxr-xr-x | cloudinit/distros/__init__.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index 89940cf0..2fc91bbc 100755 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -28,6 +28,9 @@ from cloudinit import type_utils from cloudinit import subp from cloudinit import util +from cloudinit.features import \ + ALLOW_EC2_MIRRORS_ON_NON_AWS_INSTANCE_TYPES + from cloudinit.distros.parsers import hosts from .networking import LinuxNetworking @@ -849,7 +852,12 @@ def _get_package_mirror_info(mirror_info, data_source=None, # ec2 availability zones are named cc-direction-[0-9][a-d] (us-east-1b) # the region is us-east-1. so region = az[0:-1] if _EC2_AZ_RE.match(data_source.availability_zone): - subst['ec2_region'] = "%s" % data_source.availability_zone[0:-1] + ec2_region = data_source.availability_zone[0:-1] + + if ALLOW_EC2_MIRRORS_ON_NON_AWS_INSTANCE_TYPES: + subst['ec2_region'] = "%s" % ec2_region + elif data_source.platform_type == "ec2": + subst['ec2_region'] = "%s" % ec2_region if data_source and data_source.region: subst['region'] = data_source.region |