Skip to content

Commit b853082

Browse files
committed
Merge branch 'release/1.2.0'
2 parents c49c073 + 6d5f0ff commit b853082

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHNAGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and 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.

template/logging.tpl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
echo '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}
44
do
5+
echo "Attempt: ---- " $i
56
yum install -y aws-cli awslogs jq && break || sleep 60
67
done
78

template/user-data.tpl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ tee /etc/hosts <<EOL
77
127.0.0.1 localhost localhost.localdomain `hostname`
88
EOL
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

0 commit comments

Comments
 (0)