File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
77## [ Unreleased]
8+
9+ ## [ 1.2.0] - 2018-07-30
810### Added
911- Add a map for for a more flexible mechanism to tag.
1012
@@ -14,6 +16,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1416- Limit the resources access for docker machine.
1517- Updated default docker build image to 18.03.1-ce
1618
19+ ### Fixes
20+ - Add fix for non correct ec2 instances starting, add retry to yum update
21+
1722## [ 1.1.0] - 2018-07-14
1823### Added
1924- Add variable to enable cloudwatch monitoring for spot instances, by default disabled.
Original file line number Diff line number Diff line change 11echo 'installing additional software for logging'
22# installing in a loop to ensure the cli is intalled.
3- for i in { 1..5 }
3+ for i in { 1..7 }
44do
5+ echo "Attempt: ---- " $i
56 yum install -y aws-cli awslogs jq && break || sleep 60
67done
78
Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ tee /etc/hosts <<EOL
77127.0.0.1 localhost localhost.localdomain ` hostname`
88EOL
99
10- yum -y update
10+ for i in {1..7}
11+ do
12+ echo " Attempt: ---- " $i
13+ yum -y update && break || sleep 60
14+ done
1115
1216${logging}
1317
You can’t perform that action at this time.
0 commit comments