sumomo 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +38 -3
- data/exe/sumomo +3 -2
- data/lib/sumomo/ecs.rb +38 -16
- data/lib/sumomo/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: 19a7b13c51abbddeff61c5b0b23eb1163dd70bd8
|
4
|
+
data.tar.gz: fbe8f61d32f2d6acd41b6437fa8f8ac84773f4c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a12275c78d5ee20bcd911f678607003f6c1681570243d1a8772d702dc1950b8180474cfdfbd10440813d05d8d370b260c6c235c476d15de96c16dbf1dc225b2e
|
7
|
+
data.tar.gz: a13a1e7840147f9e70948256b81ecd8f0baf25b7bc58bc53e938e641663a8040e5ca00d949dae36de3333a0f3fc54b99da0c592bb95f33323a03d78940194265
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Sumomo
|
2
2
|
|
3
|
+
Making cloudformation suck less.
|
4
|
+
|
3
5
|
Because plums are also peaches
|
4
6
|
|
5
7
|
## Installation
|
@@ -18,22 +20,55 @@ Or install it yourself as:
|
|
18
20
|
|
19
21
|
$ gem install sumomo
|
20
22
|
|
21
|
-
## Usage
|
23
|
+
## Commandline Tool Usage
|
22
24
|
|
23
25
|
This gem lets you use all of the syntax in the [momo](https://github.com/davidsiaw/momo) and more!
|
24
26
|
|
25
27
|
You need to setup your AWS credentials using `aws configure`.
|
26
28
|
|
29
|
+
This is the simplest way to use sumomo:
|
30
|
+
|
31
|
+
First, create a file called Sumomofile in your directory
|
32
|
+
|
33
|
+
```ruby
|
34
|
+
# Sumomofile
|
35
|
+
x = hidden_value "meow"
|
36
|
+
eip = make "AWS::EC2::EIP"
|
37
|
+
output "IPAddress", eip
|
38
|
+
output "Haha", x
|
27
39
|
```
|
40
|
+
|
41
|
+
To create a stack that acquires an IP Address and outputs it
|
42
|
+
|
43
|
+
$ sumomo create mystack
|
44
|
+
|
45
|
+
To view a stack's outputs
|
46
|
+
|
47
|
+
$ sumomo outputs mystack
|
48
|
+
|
49
|
+
To update a stack
|
50
|
+
|
51
|
+
$ sumomo update mystack
|
52
|
+
|
53
|
+
To delete a stack
|
54
|
+
|
55
|
+
$ sumomo delete mystack
|
56
|
+
|
57
|
+
## Library Usage
|
58
|
+
|
59
|
+
The commandline tool actions can also be performed programmatically
|
60
|
+
|
61
|
+
```ruby
|
28
62
|
require "sumomo"
|
29
63
|
|
30
64
|
Sumomo::update_stack(name: "mystack", region: "ap-northeast-1") do
|
31
65
|
x = hidden_value "meow"
|
32
|
-
|
66
|
+
eip = make "AWS::EC2::EIP"
|
67
|
+
output "IPAddress", eip
|
33
68
|
output "Haha", x
|
34
69
|
end
|
35
70
|
|
36
|
-
Sumomo::wait_for_stack(name: "
|
71
|
+
Sumomo::wait_for_stack(name: "mystack", region: "ap-northeast-1")
|
37
72
|
```
|
38
73
|
|
39
74
|
## Development
|
data/exe/sumomo
CHANGED
@@ -25,10 +25,11 @@ when "delete"
|
|
25
25
|
|
26
26
|
when "create", "update"
|
27
27
|
local_opts = Trollop::options do
|
28
|
-
opt :filename, "File that describes the stack", type: :string,
|
28
|
+
opt :filename, "File that describes the stack", type: :string, default: "Sumomofile"
|
29
29
|
end
|
30
30
|
Sumomo::create_stack(name: ARGV[0], region: global_opts[:region]) do
|
31
|
-
|
31
|
+
proc = Proc.new {}
|
32
|
+
eval File.read(local_opts[:filename]), proc.binding, local_opts[:filename]
|
32
33
|
end
|
33
34
|
|
34
35
|
when "outputs"
|
data/lib/sumomo/ecs.rb
CHANGED
@@ -44,30 +44,52 @@ module Sumomo
|
|
44
44
|
}
|
45
45
|
}
|
46
46
|
|
47
|
-
|
47
|
+
if container[:files]
|
48
|
+
definition["MountPoints"] = container[:files].map do |file, destination|
|
48
49
|
|
49
|
-
|
50
|
-
|
50
|
+
s3_location = "container_files/#{sluggify(service_name)}/#{definition["Name"]}/#{file}"
|
51
|
+
volume_name = sluggify("#{definition["Name"].underscore}_#{destination}").camelize
|
51
52
|
|
52
|
-
|
53
|
+
upload_file s3_location, File.read(file)
|
53
54
|
|
54
|
-
|
55
|
+
machine_volume_locations[s3_location] = "/opt/s3/#{s3_location}"
|
55
56
|
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
57
|
+
volumes << {
|
58
|
+
"Name" => volume_name,
|
59
|
+
"Host" => { "SourcePath" => machine_volume_locations[s3_location] }
|
60
|
+
}
|
60
61
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
62
|
+
{
|
63
|
+
"ContainerPath" => destination,
|
64
|
+
"SourceVolume" => volume_name
|
65
|
+
}
|
66
|
+
end
|
67
|
+
container.delete(:files)
|
65
68
|
end
|
66
69
|
|
67
|
-
container
|
68
|
-
|
69
|
-
|
70
|
+
if container[:ports]
|
71
|
+
definition["PortMappings"] = container[:ports].map do |from_port, to_port|
|
72
|
+
{
|
73
|
+
"ContainerPort" => from_port,
|
74
|
+
"HostPort" => to_port
|
75
|
+
}
|
70
76
|
end
|
77
|
+
container.delete(:ports)
|
78
|
+
end
|
79
|
+
|
80
|
+
if container[:envvars]
|
81
|
+
definition["Environment"] = container[:envvars].map do |var_name, var_value|
|
82
|
+
{
|
83
|
+
"Name" => var_name,
|
84
|
+
"Value" => var_value
|
85
|
+
}
|
86
|
+
end
|
87
|
+
container.delete(:envvars)
|
88
|
+
end
|
89
|
+
|
90
|
+
|
91
|
+
container.each do |key, value|
|
92
|
+
definition["#{key}".camelize] = value
|
71
93
|
end
|
72
94
|
|
73
95
|
definition
|
data/lib/sumomo/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sumomo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Siaw
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|