rundock-plugin-operation-itamae 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b429255d4f8e9e4b4b0e6678c80f243dd118918
4
- data.tar.gz: 64ef23ea60e8ee08e570370e67375dfa37723e28
3
+ metadata.gz: f38952008e93c8226e30f0cdfbfd2ce32fc940ee
4
+ data.tar.gz: a7f5652f075d166a46ec76fcc40cd739e57e90d6
5
5
  SHA512:
6
- metadata.gz: d78377d56d7f61e62b0d6f99a4eb1689f48334078357acc69bebdc2910cd6073f8c7b7569d07918c842540ac71baa508b8190a760ae7df1a5f0a95897ea4c117
7
- data.tar.gz: 6cf74a382fa32936388aa0b1b91c0c9ed04440e461a7f58e836246323253890499483d4781c2535cf4a369817073037dba7b317bfddf27afa302bc287905c5d0
6
+ metadata.gz: 753594926bd9036f28edf403e238eb74ffbb4cdb0f0320371e64ed9b35c1af8606bd17c94c839bcbbb1425588c159217c0ea7bbbe3c90c0f70ffbbaa86464076
7
+ data.tar.gz: c287a18c7bf5b7e19fe2aef48f2f6550fc4f399b55c16c224c0fe673b0e57e3e7423d7fb8197e68921383dacf68734d15ef5b76a35e3fda0661635e64b7e7832
data/README.md CHANGED
@@ -1,16 +1,40 @@
1
- # Rundock::Plugin::Operation::Itamae
1
+ # Rundock::Plugin::Operation::Itamae [![Gem Version](https://badge.fury.io/rb/rundock-plugin-operation-itamae.svg)](http://badge.fury.io/rb/rundock-plugin-operation-itamae) [![Circle CI](https://circleci.com/gh/hiracy/rundock-plugin-operation-itamae/tree/master.png?style=shield)](https://circleci.com/gh/hiracy/rundock-plugin-operation-itamae/tree/master)
2
2
 
3
- [Rundock](https://github.com/hiracy/rundock) plugin for itamae operation.
3
+ [Rundock](https://github.com/hiracy/rundock) plugin for [itamae](https://github.com/itamae-kitchen/itamae) operation.
4
4
 
5
5
  ## Installation
6
6
 
7
+ ```
8
+ $ gem install rundock
9
+ ```
10
+
7
11
  ```
8
12
  $ gem install rundock-plugin-operation-itamae
9
13
  ```
10
14
 
11
15
  ## Usage
12
16
 
13
- TODO: Write usage instructions here
17
+ Edit your operation scenario to "[scenario.yml](https://github.com/hiracy/rundock/blob/master/scenario_sample.yml)" like this sample.
18
+
19
+ ```
20
+ - node: anyhost-01
21
+ itamae:
22
+ - /local/path/to/nginx.rb # itamae recipe
23
+ - /local/path/to/mysql.rb
24
+ - node_json: /local/path/to/attr.js # itamae --node-json option
25
+ log_level: info # you can use itamae any options here
26
+ ---
27
+ anyhost-01: # see rundock options(https://github.com/hiracy/rundock/blob/master/README.md)
28
+ host: 192.168.10.11
29
+ ssh_opts:
30
+ port: 22
31
+ user: anyuser
32
+ key: ~/.ssh/id_rsa
33
+ ```
34
+
35
+ and execute rundock.
36
+
37
+ $ rundock do /path/to/your-dir/scenario.yml
14
38
 
15
39
  ## Contributing
16
40
 
data/circle.yml ADDED
@@ -0,0 +1,7 @@
1
+ machine:
2
+ ruby:
3
+ version: 2.0.0-p195
4
+
5
+ test:
6
+ override:
7
+ - bundle exec rake spec
@@ -2,7 +2,7 @@ module Rundock
2
2
  module Plugin
3
3
  module Operation
4
4
  module Itamae
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.3"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rundock-plugin-operation-itamae
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - hiracy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-08-06 00:00:00.000000000 Z
11
+ date: 2015-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -94,6 +94,7 @@ files:
94
94
  - LICENSE
95
95
  - README.md
96
96
  - Rakefile
97
+ - circle.yml
97
98
  - lib/rundock/plugin/operation/itamae.rb
98
99
  - lib/rundock/plugin/operation/itamae/version.rb
99
100
  - rundock-plugin-operation-itamae.gemspec