Skip to content

Commit 7f3519a

Browse files
committed
Merge pull request #583 from opdemand/new-amis
Updated EC2 AMIs from prep scripts.
2 parents d6a0062 + 1a89091 commit 7f3519a

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

contrib/ec2/provision-ec2-controller.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,21 @@ region=$1
4545
# see contrib/prepare-ubuntu-ami.sh for instructions
4646
# on creating your own deis-optmized AMIs
4747
if [ "$region" == "ap-northeast-1" ]; then
48-
image=ami-ed7503ec
48+
image=ami-55007154
4949
elif [ "$region" == "ap-southeast-1" ]; then
50-
image=ami-76673624
50+
image=ami-4eb4e51c
5151
elif [ "$region" == "ap-southeast-2" ]; then
52-
image=ami-7dbb2247
52+
image=ami-6f5bc255
5353
elif [ "$region" == "eu-west-1" ]; then
54-
image=ami-bd31c3ca
54+
image=ami-c7ef12b0
5555
elif [ "$region" == "sa-east-1" ]; then
56-
image=ami-2964c734
56+
image=ami-3945e624
5757
elif [ "$region" == "us-east-1" ]; then
58-
image=ami-f9080a90
58+
image=ami-c50408ac
5959
elif [ "$region" == "us-west-1" ]; then
60-
image=ami-148bb751
60+
image=ami-963906d3
6161
elif [ "$region" == "us-west-2" ]; then
62-
image=ami-f082eec0
62+
image=ami-606a0550
6363
else
6464
echo "Cannot find AMI for region: $region"
6565
exit 1

provider/ec2.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
# Deis-optimized EC2 amis -- with 3.8 kernel, chef 11 deps,
1818
# and large docker images (e.g. buildstep) pre-installed
1919
IMAGE_MAP = {
20-
'ap-northeast-1': 'ami-f37503f2',
21-
'ap-southeast-1': 'ami-7867362a',
22-
'ap-southeast-2': 'ami-71bb224b',
23-
'eu-west-1': 'ami-af31c3d8',
24-
'sa-east-1': 'ami-2b64c736',
25-
'us-east-1': 'ami-c1080aa8',
26-
'us-west-1': 'ami-1c8bb759',
27-
'us-west-2': 'ami-f282eec2',
20+
'ap-northeast-1': 'ami-59007158',
21+
'ap-southeast-1': 'ami-4cb4e51e',
22+
'ap-southeast-2': 'ami-6d5bc257',
23+
'eu-west-1': 'ami-c3ef12b4',
24+
'sa-east-1': 'ami-3b45e626',
25+
'us-east-1': 'ami-d90408b0',
26+
'us-west-1': 'ami-9c3906d9',
27+
'us-west-2': 'ami-8c6a05bc',
2828
}
2929

3030

0 commit comments

Comments
 (0)