simple_provision 0.99.2 → 0.99.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +11 -4
- data/lib/ext/fog.rb +0 -9
- data/lib/simple_provision/version.rb +1 -1
- data/simple_provision.gemspec +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70f9a80a35531d55dc4fb6bfa5f89fbe88b8865e
|
|
4
|
+
data.tar.gz: d16aa39d8d2edb3dfb0645aa966cfdc84f697a43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 49d61798c9fea32e91d7f4fdff75d33abd5926421a1276a36cf440da70e41175ecb27bb251b345804466393a39a5211949418e39cac47f3b26820898a6cea588
|
|
7
|
+
data.tar.gz: a0fccdb9672d90b9b22d3ba2b17f8c9c135d8be180e4b8f89011a85a51c04f55ea0a9b6558b78d613f58cf8f1a67fa5cc59586e8479923691a0e555660eaa7fa
|
data/README.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
# Introduction
|
|
2
2
|
This is based on the work that brandonhilkert initally carried to automate
|
|
3
|
-
EC2
|
|
4
|
-
and JUST WORK to the world of Digital Ocean. So you own a Digital Ocean?
|
|
3
|
+
EC2 instance provision with YAML and SHELL script. It tries to bring the good spirit: SIMPLE, and JUST WORK to the world of Digital Ocean.
|
|
5
4
|
|
|
6
|
-
If you
|
|
7
|
-
|
|
5
|
+
If you own a Digital Ocean, here is my advice: Chef and Puppet is shitty
|
|
6
|
+
thing that just create more problems than it solves. It will take you
|
|
7
|
+
days even weeks just to get familar and put things in the right order.
|
|
8
|
+
|
|
9
|
+
With simple_provision, you get your hand dirty in a few minutes and
|
|
10
|
+
we have the working provision profile in just half an hour. From that
|
|
11
|
+
moment, provision another instance is just the matter of kicking off
|
|
12
|
+
a command from the terminal.
|
|
13
|
+
|
|
14
|
+
Let's rock.
|
|
8
15
|
|
|
9
16
|
### Recipes repo
|
|
10
17
|
|
data/lib/ext/fog.rb
CHANGED
|
@@ -50,12 +50,3 @@ class Fog::SSH::Real
|
|
|
50
50
|
results
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
|
-
|
|
54
|
-
require "fog/digitalocean/models/compute/server"
|
|
55
|
-
|
|
56
|
-
# Monkey patch Digital Ocean to properly return public_ip_address to used in scp
|
|
57
|
-
Fog::Compute::DigitalOcean::Server.class_eval do
|
|
58
|
-
def public_ip_address
|
|
59
|
-
ip_address
|
|
60
|
-
end
|
|
61
|
-
end
|
data/simple_provision.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_provision
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.99.
|
|
4
|
+
version: 0.99.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Phuong Gia Su
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-05-
|
|
12
|
+
date: 2014-05-09 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -43,16 +43,16 @@ dependencies:
|
|
|
43
43
|
name: fog
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
45
45
|
requirements:
|
|
46
|
-
- -
|
|
46
|
+
- - '>='
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: 1.
|
|
48
|
+
version: 1.21.0
|
|
49
49
|
type: :runtime
|
|
50
50
|
prerelease: false
|
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
|
-
- -
|
|
53
|
+
- - '>='
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: 1.
|
|
55
|
+
version: 1.21.0
|
|
56
56
|
description: The easiest, most common sense server provision tool.
|
|
57
57
|
email:
|
|
58
58
|
- phuongnd08@gmail.com
|