right_infrastructure_agent 1.1.2 → 1.1.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ca12e04c5b64e16c354a7031c39599a36d0c431d
4
- data.tar.gz: 463c200718bfe3c8f01817497764942c2a44b173
3
+ metadata.gz: 018098cb97ad1c547d96bb5d75a22dd722c6a3fa
4
+ data.tar.gz: 182363fe396c9ca96b476de9e63a58dd0b4531f9
5
5
  SHA512:
6
- metadata.gz: 90d0a95a758ecc476cb5b78069e4a9914a1f4f61671855a9bb7f0217254a1b46c1b494bf52a9e35a6bae1a0ed01a3832a16d4f84b06f25ed8751dfe7ef8bcd69
7
- data.tar.gz: 51a45fc9db03ee26f6e0b1b6d536e1e3060ff49f2682cf00565c4f17f63b7b9c4f28582276e2f3f8936646de8cb19ae763e6066b3d5c08c62a320510c4326299
6
+ metadata.gz: 600d57f88a0b3451bf641dc1538eba8dfaed645c45351c96ba09f6adc92dd5ff50a5b19bf06ef05aa00b298ad142dfc898fccb7cf3f85a4a03b93109baeebe72
7
+ data.tar.gz: 448bf97ceca3fc44fc9c8ecdc96cfce0e05fd2448cc7f97e2bdf46724a77cabeaac89645436fc0befab01c7b67788620f36e913cf362152fb23a091afb23e83b
data/README.rdoc CHANGED
@@ -31,6 +31,8 @@ RightInfrastructureAgent has been tested on EC2 instances running CentOS 5.2 and
31
31
 
32
32
  RightInfrastructureAgent is work in progress.
33
33
 
34
+ Owned by the RightScale Cornsilk team.
35
+
34
36
  = ADDITIONAL RESOURCES
35
37
 
36
38
  * [1] RabbitMQ is http://www.rabbitmq.com/documentation.html
@@ -72,7 +72,10 @@
72
72
  # of the server ready to process messages from the given queue
73
73
  # --rnds-urls URLS Set comma-separated list of URLs for accessing RightNetDataService
74
74
  # --tags-urls URLS Set comma-separated list of URLs for accessing TagService
75
- # --tags-auth-token TOKEN Set authentication token for accessing TagService
75
+ # --tags-auth-token TOKEN Set authorization token for accessing TagService
76
+ # --aeds-urls URLS Set comma-separated list of URLs for accessing Audit Entry Detail Service
77
+ # --uns-urls URLS Set comma-separated list of URLs for accessing User Notification Service
78
+ # --uns-auth-token TOKEN Set authorization token for accessing User Notification Service
76
79
  # --max-cache-size Set maximum number of entries in LRU cache for storing instance agents
77
80
  # --cache-reload-age Set age in seconds of cached instance before automatically reload
78
81
  # --home-island ID Set comma-separated list of identifiers of RightNet islands which router is servicing
@@ -137,6 +140,18 @@ module RightScale
137
140
  options[:tags_auth_token] = token
138
141
  end
139
142
 
143
+ opts.on('--aeds-urls URLS') do |urls|
144
+ options[:aeds_urls] = urls
145
+ end
146
+
147
+ opts.on('--uns-urls URLS') do |urls|
148
+ options[:uns_urls] = urls
149
+ end
150
+
151
+ opts.on('--uns-auth-token TOKEN') do |token|
152
+ options[:uns_auth_token] = token
153
+ end
154
+
140
155
  opts.on('--max-cache-size SIZE') do |size|
141
156
  options[:max_cache_size] = size.to_i
142
157
  end
@@ -214,6 +229,9 @@ module RightScale
214
229
  cfg[:rnds_urls] = options[:rnds_urls] if options[:rnds_urls]
215
230
  cfg[:tags_urls] = options[:tags_urls] if options[:tags_urls]
216
231
  cfg[:tags_auth_token] = options[:tags_auth_token] if options[:tags_auth_token]
232
+ cfg[:aeds_urls] = options[:aeds_urls] if options[:aeds_urls]
233
+ cfg[:uns_urls] = options[:uns_urls] if options[:uns_urls]
234
+ cfg[:uns_auth_token] = options[:uns_auth_token] if options[:uns_auth_token]
217
235
  cfg[:max_cache_size] = options[:max_cache_size] || 1000
218
236
  cfg[:cache_reload_age] = options[:cache_reload_age] || 30
219
237
  cfg[:home_island] = options[:home_island] if options[:home_island]
@@ -24,8 +24,8 @@ require 'rubygems'
24
24
 
25
25
  Gem::Specification.new do |spec|
26
26
  spec.name = 'right_infrastructure_agent'
27
- spec.version = '1.1.2'
28
- spec.date = '2014-07-24'
27
+ spec.version = '1.1.3'
28
+ spec.date = '2014-08-08'
29
29
  spec.authors = ['Lee Kirchhoff', 'Raphael Simon']
30
30
  spec.email = 'lee@rightscale.com'
31
31
  spec.homepage = 'https://github.com/rightscale/right_infrastructure_agent'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: right_infrastructure_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lee Kirchhoff
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-07-24 00:00:00.000000000 Z
12
+ date: 2014-08-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: right_support