bosh-bootstrap 0.11.6 → 0.11.7

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog.md CHANGED
@@ -28,6 +28,7 @@
28
28
  * microbosh volume is smaller 4G and automatically fits on devstack/openstack (v0.11.5; thx @ryfow)
29
29
  * security group `bosh_agent_http` renamed to `bosh_agent_https`, with same 6868 port for talking to bosh_agent running in https mode (`bosh_agent_http` can then be deleted) (v0.11.5)
30
30
  * add port 53/dns security group (v0.11.6)
31
+ * port 53 open on UDP & TCP as workaround for multi-region AWS (v0.11.7; thx @yudai)
31
32
 
32
33
  ## v0.10
33
34
 
@@ -16,7 +16,7 @@ module Bosh::Bootstrap::NetworkProviders
16
16
  def security_groups
17
17
  {
18
18
  ssh: 22,
19
- dns_server: 53,
19
+ dns_server: { protocol: "udp", ports: (53..53) },
20
20
  bosh_nats_server: 4222,
21
21
  bosh_agent_https: 6868,
22
22
  bosh_blobstore: 25250,
@@ -16,7 +16,7 @@ module Bosh::Bootstrap::NetworkProviders
16
16
  def security_groups
17
17
  {
18
18
  ssh: 22,
19
- dns_server: 53,
19
+ dns_server: { protocol: "udp", ports: (53..53) },
20
20
  bosh_nats_server: 4222,
21
21
  bosh_agent_https: 6868,
22
22
  bosh_blobstore: 25250,
@@ -1,5 +1,5 @@
1
1
  module Bosh
2
2
  module Bootstrap
3
- VERSION = "0.11.6"
3
+ VERSION = "0.11.7"
4
4
  end
5
5
  end
@@ -16,7 +16,7 @@ describe Bosh::Bootstrap::NetworkProviders::AWS do
16
16
  it "creates security groups it needs" do
17
17
  expected_groups = [
18
18
  ["ssh", "ssh", ports: 22],
19
- ["dns_server", "dns_server", ports: 53],
19
+ ["dns_server", "dns_server", ports: { protocol: "udp", ports: (53..53) }],
20
20
  ["bosh_nats_server", "bosh_nats_server", ports: 4222],
21
21
  ["bosh_agent_https", "bosh_agent_https", ports: 6868],
22
22
  ["bosh_blobstore", "bosh_blobstore", ports: 25250],
@@ -28,4 +28,4 @@ describe Bosh::Bootstrap::NetworkProviders::AWS do
28
28
  end
29
29
  subject.perform
30
30
  end
31
- end
31
+ end
@@ -15,7 +15,7 @@ describe Bosh::Bootstrap::NetworkProviders::OpenStack do
15
15
  it "creates security groups it needs" do
16
16
  expected_groups = [
17
17
  ["ssh", "ssh", ports: 22],
18
- ["dns_server", "dns_server", ports: 53],
18
+ ["dns_server", "dns_server", ports: { protocol: "udp", ports: (53..53) }],
19
19
  ["bosh_nats_server", "bosh_nats_server", ports: 4222],
20
20
  ["bosh_agent_https", "bosh_agent_https", ports: 6868],
21
21
  ["bosh_blobstore", "bosh_blobstore", ports: 25250],
@@ -27,4 +27,4 @@ describe Bosh::Bootstrap::NetworkProviders::OpenStack do
27
27
  end
28
28
  subject.perform
29
29
  end
30
- end
30
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bosh-bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.6
4
+ version: 0.11.7
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-07-16 00:00:00.000000000 Z
12
+ date: 2013-07-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: cyoi
@@ -227,7 +227,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
227
227
  version: '0'
228
228
  segments:
229
229
  - 0
230
- hash: -867321845324653925
230
+ hash: -1163275774745142724
231
231
  requirements: []
232
232
  rubyforge_project:
233
233
  rubygems_version: 1.8.25