Skip to content

Commit f367c7e

Browse files
committed
Fixed #327 -- updated EC2 AMIs for 0.2.1 release.
1 parent c75566d commit f367c7e

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-39bfda38
48+
image=ami-2bd9bf2a
4949
elif [ "$region" == "ap-southeast-1" ]; then
50-
image=ami-c0613492
50+
image=ami-2821757a
5151
elif [ "$region" == "ap-southeast-2" ]; then
52-
image=ami-9741ddad
52+
image=ami-4dfd6277
5353
elif [ "$region" == "eu-west-1" ]; then
54-
image=ami-39bc5e4e
54+
image=ami-0452be73
5555
elif [ "$region" == "sa-east-1" ]; then
56-
image=ami-0775d31a
56+
image=ami-87f9589a
5757
elif [ "$region" == "us-east-1" ]; then
58-
image=ami-fa99c193
58+
image=ami-5f84a536
5959
elif [ "$region" == "us-west-1" ]; then
60-
image=ami-802412c5
60+
image=ami-f80c3dbd
6161
elif [ "$region" == "us-west-2" ]; then
62-
image=ami-0e7be33e
62+
image=ami-76ad3746
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-39bfda38',
21-
'ap-southeast-1': 'ami-c0613492',
22-
'ap-southeast-2': 'ami-9741ddad',
23-
'eu-west-1': 'ami-39bc5e4e',
24-
'sa-east-1': 'ami-0775d31a',
25-
'us-east-1': 'ami-fa99c193',
26-
'us-west-1': 'ami-802412c5',
27-
'us-west-2': 'ami-0e7be33e',
20+
'ap-northeast-1': 'ami-2bd9bf2a',
21+
'ap-southeast-1': 'ami-2821757a',
22+
'ap-southeast-2': 'ami-4dfd6277',
23+
'eu-west-1': 'ami-0452be73',
24+
'sa-east-1': 'ami-87f9589a',
25+
'us-east-1': 'ami-5f84a536',
26+
'us-west-1': 'ami-f80c3dbd',
27+
'us-west-2': 'ami-76ad3746',
2828
}
2929

3030

0 commit comments

Comments
 (0)