sous-chef 0.0.1 → 0.0.2
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.
- data/README.md +20 -1
- data/lib/sous-chef/tasks.rb +1 -1
- data/sous-chef.gemspec +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -1,16 +1,35 @@
|
|
1
1
|
# SousChef
|
2
2
|
|
3
|
+
Note: This gem is a work in progress.
|
4
|
+
|
3
5
|
Manage knife-solo nodes.
|
4
6
|
|
5
7
|
## Install
|
6
8
|
|
9
|
+
Add the following to your `Rakefile`:
|
10
|
+
|
7
11
|
```ruby
|
8
12
|
require 'sous-chef'
|
9
13
|
```
|
10
14
|
|
11
15
|
## Configure
|
12
16
|
|
13
|
-
|
17
|
+
nodes.yml
|
18
|
+
|
19
|
+
Create `nodes.yml` in your root. Example `nodes.yml`:
|
20
|
+
|
21
|
+
Key is node name and everything underneath is used for the sshconfig
|
22
|
+
|
23
|
+
```yaml
|
24
|
+
SuperAwesomeNode:
|
25
|
+
HostName: 12.34.56.789
|
26
|
+
Port 1234
|
27
|
+
IdentityFile: ~/.ssh/other_id_rsa
|
28
|
+
|
29
|
+
|
30
|
+
OtherAwesome:
|
31
|
+
HostName: localhost
|
32
|
+
```
|
14
33
|
|
15
34
|
## Usage
|
16
35
|
|
data/lib/sous-chef/tasks.rb
CHANGED
data/sous-chef.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
6
6
|
s.email = "shaun@substantail.com"
|
7
7
|
|
8
8
|
s.name = 'sous-chef'
|
9
|
-
s.version = "0.0.
|
9
|
+
s.version = "0.0.2"
|
10
10
|
s.description = %q{Manage knife-solo nodes}
|
11
11
|
s.summary = %q{Manage knife-solo nodes}
|
12
12
|
s.homepage = %q{http://github.com/substantial/sous-chef}
|