ironfan 4.7.3 → 4.7.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +6 -0
- data/README.md +6 -1
- data/VERSION +1 -1
- data/ironfan.gemspec +2 -2
- data/lib/chef/knife/cluster_launch.rb +1 -1
- data/lib/ironfan/dsl/ec2.rb +2 -0
- metadata +3 -3
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
# v4.7.5
|
2
|
+
* cluster_launch: correcting public_target to public_hostname
|
3
|
+
|
4
|
+
# v4.7.4
|
5
|
+
* Add configuration for us-west-2 ubuntu precise AMIs (thanks @msaffitz)
|
6
|
+
|
1
7
|
# v4.7.3
|
2
8
|
* cluster ssh was broken for VPC instances, this will fix a few bugs (fixes #236, thanks @gwilton)
|
3
9
|
* cluster_ssh & cluster_launch: cleaning up SSH usage to handle VPC
|
data/README.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
>## **Ironfan: A Community Discussion Webinar**
|
2
|
+
**<p>Thursday, January 31 @ 10a P, 12p C, 1p E</p>**
|
3
|
+
Join Nathaniel Eliot, @temujin9, DevOps Engineer and lead on Ironfan, in this community discussion. Ironfan is a lightweight cluster orchestration toolset, built on top of Chef, which empowers spinning up of Hadoop clusters in under 20 minutes. Nathan has been responsible for Ironfan’s core plugin code, cookbooks, and other components to stabilize both Infochimps’ open source offerings, and internal architectures.
|
4
|
+
[Register Now](https://www4.gotomeeting.com/register/188375087)
|
5
|
+
|
1
6
|
# Ironfan Core: Knife Tools and Core Models
|
2
7
|
|
3
8
|
Ironfan, the foundation of The Infochimps Platform, is an expressive toolset for constructing scalable, resilient architectures. It works in the cloud, in the data center, and on your laptop, and it makes your system diagram visible and inevitable. Inevitable systems coordinate automatically to interconnect, removing the hassle of manual configuration of connection points (and the associated danger of human error).
|
@@ -45,4 +50,4 @@ Ironfan consists of the following Toolset:
|
|
45
50
|
|
46
51
|
### Getting Help
|
47
52
|
* Feel free to contact us at info@infochimps.com or 855-DATA-FUN
|
48
|
-
* Also, you're invited to a [private consultation](http://www.infochimps.com/free-big-data-consultation?utm_source=git&utm_medium=referral&utm_campaign=consult) with Infochimps founders on your big data project.
|
53
|
+
* Also, you're invited to a [private consultation](http://www.infochimps.com/free-big-data-consultation?utm_source=git&utm_medium=referral&utm_campaign=consult) with Infochimps founders on your big data project.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.7.
|
1
|
+
4.7.5
|
data/ironfan.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "ironfan"
|
8
|
-
s.version = "4.7.
|
8
|
+
s.version = "4.7.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Infochimps"]
|
12
|
-
s.date = "2013-01-
|
12
|
+
s.date = "2013-01-18"
|
13
13
|
s.description = "Ironfan allows you to orchestrate not just systems but clusters of machines. It includes a powerful layer on top of knife and a collection of cloud cookbooks."
|
14
14
|
s.email = "coders@infochimps.com"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -115,7 +115,7 @@ class Chef
|
|
115
115
|
# Try SSH
|
116
116
|
unless config[:dry_run]
|
117
117
|
Ironfan.step(computer.name, 'trying ssh', :white)
|
118
|
-
address = computer.machine.vpc_id.nil? ? computer.machine.
|
118
|
+
address = computer.machine.vpc_id.nil? ? computer.machine.public_hostname : computer.machine.public_ip_address
|
119
119
|
nil until tcp_test_ssh(address){ sleep @initial_sleep_delay ||= 10 }
|
120
120
|
end
|
121
121
|
|
data/lib/ironfan/dsl/ec2.rb
CHANGED
@@ -426,6 +426,8 @@ Chef::Config[:ec2_image_info].merge!({
|
|
426
426
|
#
|
427
427
|
%w[ us-east-1 32-bit ebs precise ] => { :image_id => 'ami-3b4ff252', :ssh_user => 'ubuntu', :bootstrap_distro => "ubuntu10.04-gems", },
|
428
428
|
%w[ us-east-1 64-bit ebs precise ] => { :image_id => 'ami-3d4ff254', :ssh_user => 'ubuntu', :bootstrap_distro => "ubuntu10.04-gems", },
|
429
|
+
%w[ us-west-2 32-bit ebs precise ] => { :image_id => 'ami-7cab224c', :ssh_user => 'ubuntu', :bootstrap_distro => "ubuntu10.04-gems", },
|
430
|
+
%w[ us-west-2 64-bit ebs precise ] => { :image_id => 'ami-7eab224e', :ssh_user => 'ubuntu', :bootstrap_distro => "ubuntu10.04-gems", },
|
429
431
|
# # These images will only work once http://askubuntu.com/questions/209844/latest-ec2-ubuntu-instance-seems-broken is fixed
|
430
432
|
# %w[ us-east-1 32-bit ebs precise ] => { :image_id => 'ami-9878c0f1', :ssh_user => 'ubuntu', :bootstrap_distro => "ubuntu10.04-gems", },
|
431
433
|
# %w[ us-east-1 64-bit ebs precise ] => { :image_id => 'ami-9c78c0f5', :ssh_user => 'ubuntu', :bootstrap_distro => "ubuntu10.04-gems", },
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: ironfan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 4.7.
|
5
|
+
version: 4.7.5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Infochimps
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2013-01-
|
13
|
+
date: 2013-01-18 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: chef
|
@@ -282,7 +282,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
282
282
|
requirements:
|
283
283
|
- - ">="
|
284
284
|
- !ruby/object:Gem::Version
|
285
|
-
hash:
|
285
|
+
hash: -946421318815757718
|
286
286
|
segments:
|
287
287
|
- 0
|
288
288
|
version: "0"
|