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/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
7
## [ Unreleased]
8
+
9
+ ## [ 1.2.0] - 2018-07-30
8
10
### Added
9
11
- Add a map for for a more flexible mechanism to tag.
10
12
@@ -14,6 +16,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
14
16
- Limit the resources access for docker machine.
15
17
- Updated default docker build image to 18.03.1-ce
16
18
19
+ ### Fixes
20
+ - Add fix for non correct ec2 instances starting, add retry to yum update
21
+
17
22
## [ 1.1.0] - 2018-07-14
18
23
### Added
19
24
- Add variable to enable cloudwatch monitoring for spot instances, by default disabled.
Original file line number Diff line number Diff line change 1
1
echo 'installing additional software for logging'
2
2
# installing in a loop to ensure the cli is intalled.
3
- for i in { 1..5 }
3
+ for i in { 1..7 }
4
4
do
5
+ echo "Attempt: ---- " $i
5
6
yum install -y aws-cli awslogs jq && break || sleep 60
6
7
done
7
8
Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ tee /etc/hosts <<EOL
7
7
127.0.0.1 localhost localhost.localdomain ` hostname`
8
8
EOL
9
9
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
11
15
12
16
${logging}
13
17
You can’t perform that action at this time.
0 commit comments