##// END OF EJS Templates
automation: use m6i instances...
Gregory Szorc -
r49638:ae28d37f stable
parent child Browse files
Show More
@@ -1157,7 +1157,7 b' def ensure_windows_dev_ami('
1157 1157 ],
1158 1158 'ImageId': image.id,
1159 1159 'InstanceInitiatedShutdownBehavior': 'stop',
1160 'InstanceType': 't3.medium',
1160 'InstanceType': 'm6i.large',
1161 1161 'KeyName': '%sautomation' % prefix,
1162 1162 'MaxCount': 1,
1163 1163 'MinCount': 1,
@@ -151,7 +151,7 b' def build_all_windows_packages('
151 151 image = aws.ensure_windows_dev_ami(c, base_image_name=base_image_name)
152 152 DIST_PATH.mkdir(exist_ok=True)
153 153
154 with aws.temporary_windows_dev_instances(c, image, 't3.medium') as insts:
154 with aws.temporary_windows_dev_instances(c, image, 'm6i.large') as insts:
155 155 instance = insts[0]
156 156
157 157 winrm_client = instance.winrm_client
@@ -496,7 +496,7 b' def get_parser():'
496 496 sp.add_argument(
497 497 '--instance-type',
498 498 help='EC2 instance type to use',
499 default='t3.medium',
499 default='m6i.large',
500 500 )
501 501 sp.add_argument(
502 502 '--python-version',
General Comments 0
You need to be logged in to leave comments. Login now