roadworker 0.3.0 → 0.3.1
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 +12 -5
- data/bin/roadwork +0 -1
- data/lib/roadworker/dsl.rb +11 -4
- data/lib/roadworker/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -4,9 +4,11 @@ Roadworker is a tool to manage Route53.
|
|
4
4
|
|
5
5
|
It defines the state of Route53 using DSL, and updates Route53 according to DSL.
|
6
6
|
|
7
|
+
[](https://drone.io/bitbucket.org/winebarrel/roadworker/latest)
|
8
|
+
|
7
9
|
**Notice**
|
8
10
|
|
9
|
-
*
|
11
|
+
* Roadworker cannot update TTL of two or more same weighted A records (with different SetIdentifier) after creation.
|
10
12
|
|
11
13
|
## Installation
|
12
14
|
|
@@ -64,7 +66,7 @@ hosted_zone "info.winebarrel.jp." do
|
|
64
66
|
rrset "zzz.info.winebarrel.jp", "A" do
|
65
67
|
set_identifier "Primary"
|
66
68
|
failover "PRIMARY"
|
67
|
-
health_check "http://192.0.43.10:80/path", "example.com"
|
69
|
+
health_check "http://192.0.43.10:80/path", :host => "example.com"
|
68
70
|
ttl 456
|
69
71
|
resource_records(
|
70
72
|
"127.0.0.1",
|
@@ -97,10 +99,15 @@ info.winebarrel.jp. A:
|
|
97
99
|
actual=127.0.0.1(300),127.0.0.2(300)
|
98
100
|
5 examples, 1 failure
|
99
101
|
```
|
100
|
-
## CI
|
101
|
-
[drone.io](https://drone.io/bitbucket.org/winebarrel/roadworker)
|
102
102
|
|
103
|
-
|
103
|
+
(Please note test of A(Alias) is not possible to perfection...)
|
104
|
+
|
105
|
+
## DNS management using GitHub/Bitbucket
|
106
|
+
|
107
|
+

|
108
|
+
|
109
|
+
* [Bitbucket example repository](https://bitbucket.org/winebarrel/roadworker-example/src)
|
110
|
+
* [drone.io example project](https://drone.io/bitbucket.org/winebarrel/roadworker-example/latest)
|
104
111
|
|
105
112
|
## Link
|
106
113
|
* [RubyGems.org site](http://rubygems.org/gems/roadworker)
|
data/bin/roadwork
CHANGED
data/lib/roadworker/dsl.rb
CHANGED
@@ -19,7 +19,6 @@ module Roadworker
|
|
19
19
|
Converter.convert(hosted_zones)
|
20
20
|
end
|
21
21
|
|
22
|
-
|
23
22
|
def test(dsl, options)
|
24
23
|
Tester.test(dsl, options)
|
25
24
|
end
|
@@ -117,10 +116,18 @@ module Roadworker
|
|
117
116
|
@result.failover = value
|
118
117
|
end
|
119
118
|
|
120
|
-
def health_check(url,
|
119
|
+
def health_check(url, options = nil)
|
121
120
|
config = HealthCheck.parse_url(url)
|
122
|
-
|
123
|
-
|
121
|
+
|
122
|
+
if options
|
123
|
+
if options.kind_of?(Hash)
|
124
|
+
config[:fully_qualified_domain_name] = options.fetch(:host)
|
125
|
+
else
|
126
|
+
config[:fully_qualified_domain_name] = options.to_s
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
@result.health_check = config
|
124
131
|
end
|
125
132
|
|
126
133
|
def resource_records(*values)
|
data/lib/roadworker/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: roadworker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-08-
|
12
|
+
date: 2013-08-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: aws-sdk
|