gantree 0.2.4 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -5
- data/lib/gantree/deploy.rb +1 -1
- data/lib/gantree/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ee447acf88f5cb72f17884a5083bd4851c76411
|
4
|
+
data.tar.gz: 90247293b2a1bda2dedb9a79672434f15ef1d79d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c0d0931b964537a666f3164a2215942842c8cbc5b72d9ca5dfd749c1c611922afb141bd3d848b6f060cccd125aefd21382ef677ec3a8f7cffc6321bb85d3890
|
7
|
+
data.tar.gz: d76a3deda1e34621f937c3c43e4cbc2af888de7cb5eee20e3d00dd49e3cb4ac5b2d709098eb6ac97b7bbc5441de2dd1ef5c0879791952415487c29f0b4dc14f8
|
data/README.md
CHANGED
@@ -14,16 +14,14 @@ This tool is intended to help you setup a Dockerrun.aws.json which allows you to
|
|
14
14
|
|
15
15
|
## Installation
|
16
16
|
|
17
|
-
You need to have your
|
17
|
+
You need to have your AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables set in order to use the tool as well as the proper aws permissions for Elastic Beanstalk, and S3 access.
|
18
18
|
|
19
19
|
For the time being you also need to configure your github repo to auto build an image inside of Dockerhub (private or open). In order to do this you need to have a dockerhub account already, login, and select your profile/orginization to add a *Automated Build* to. Select the branch you want to build, location of the docker file and the tag to reference the image that will be built (this will hopefully be automated in the future via dockerhub api).
|
20
20
|
|
21
21
|
Once you have your docker image created you will also need to install docker (if you haven't already)
|
22
22
|
|
23
|
-
*MAC OSX*
|
24
|
-
|
25
|
-
brew install docker
|
26
|
-
```
|
23
|
+
*Install docker for MAC OSX*
|
24
|
+
https://docs.docker.com/installation/mac/
|
27
25
|
|
28
26
|
Generate your login credentials token:
|
29
27
|
```
|
data/lib/gantree/deploy.rb
CHANGED
@@ -74,7 +74,7 @@ module Gantree
|
|
74
74
|
puts "hash #{hash}"
|
75
75
|
version = "#{@env}-#{hash}-#{unique_hash}"
|
76
76
|
puts "version: #{version}"
|
77
|
-
auto_detect_app_role if @options[:autodetect_app_role] == true
|
77
|
+
#auto_detect_app_role if @options[:autodetect_app_role] == true
|
78
78
|
set_tag_to_deploy if @options[:tag]
|
79
79
|
unless ext?
|
80
80
|
new_dockerrun = "#{version}-Dockerrun.aws.json"
|
data/lib/gantree/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gantree
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|