Skip to content

Commit b8bf42b

Browse files
committed
Added registry port 5000 to EC2 provisioning script, refs #550.
1 parent 0abf453 commit b8bf42b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

contrib/ec2/provision-ec2-controller.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,14 @@ if ! ec2-describe-group | grep -q "$sg_name"; then
8383
set -x
8484
ec2-create-group $sg_name -d "Created by Deis"
8585
set +x
86-
echo_color "Authorizing TCP ports 22,80,443,514,2222,8000 from $sg_src..."
86+
echo_color "Authorizing TCP ports 22,80,443,514,2222,5000,8000 from $sg_src..."
8787
set -x
8888
ec2-authorize deis-controller -P tcp -p 22 -s $sg_src >/dev/null
8989
ec2-authorize deis-controller -P tcp -p 80 -s $sg_src >/dev/null
9090
ec2-authorize deis-controller -P tcp -p 443 -s $sg_src >/dev/null
9191
ec2-authorize deis-controller -P tcp -p 514 -s $sg_src >/dev/null
9292
ec2-authorize deis-controller -P tcp -p 2222 -s $sg_src >/dev/null
93+
ec2-authorize deis-controller -P tcp -p 5000 -s $sg_src >/dev/null
9394
ec2-authorize deis-controller -P tcp -p 8000 -s $sg_src >/dev/null
9495
set +x
9596
else

0 commit comments

Comments
 (0)