staypuft 0.0.9 → 0.0.10

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ff35433d1c3032de55e7570d0bb4b743c65f35b7
4
+ data.tar.gz: 3ffdb215618e6332108f54714ceabdf612d4b129
5
+ SHA512:
6
+ metadata.gz: 53fa9dcad17f281e454c1ceb5b02e72e12f9b440585d6309ce3dde5ad3da03325e42dd71b26e5cd919097e7c4e2cd21ebb11b962023ebdf91690bcd697d28e54
7
+ data.tar.gz: b2afa8a380522ae9d9083567e62a93da3d14cbf288eafa163d7fd2a70ca3c33ba7271c0901b3370abfd3b12da67bbefc25bbc950cffbe952cd6f35e22b803c24
@@ -21,6 +21,7 @@
21
21
  height: 300px;
22
22
  min-height: 200px;
23
23
  margin-right: 10px;
24
+ overflow: auto;
24
25
  }
25
26
 
26
27
  .nav > li > a.roles_list {
@@ -8,5 +8,18 @@ module Staypuft
8
8
  _("Services Configuration")
9
9
  )
10
10
  end
11
+
12
+ def is_new
13
+ @deployment.name.empty?
14
+ end
15
+
16
+ def anything_deployed
17
+ @deployment.child_hostgroups.
18
+ # this could be an association on deployment
19
+ inject([]) { |hosts, hg| hosts + hg.hosts }.
20
+ any?
21
+ # (:open_stack_deployed?)
22
+ end
23
+
11
24
  end
12
25
  end
@@ -54,7 +54,7 @@ module Staypuft::Concerns::HostgroupExtensions
54
54
  end
55
55
  end
56
56
 
57
- Gem::Version.new(SETTINGS[:version].to_s.gsub(/-develop$/, '')) < Gem::Version.new('1.5') and
57
+ Gem::Version.new(SETTINGS[:version].notag) < Gem::Version.new('1.5') and
58
58
  Rails.logger.warn 'Foreman 1.5 is required for nesting of Hostgroups to work properly,' +
59
59
  "please upgrade or expect failures.\n#{__FILE__}:#{__LINE__}"
60
60
  end
@@ -62,8 +62,9 @@ module Staypuft
62
62
  end
63
63
  end
64
64
 
65
- # If layout networking is set to 'neutron', then set include_neutron on the
66
- # hostgroup if it includes the "quickstack::pacemaker::params" puppetclass
65
+ # If layout networking is set to 'neutron', then set include_neutron and
66
+ # neutron on the hostgroup if it includes the "quickstack::pacemaker::params"
67
+ # puppetclass
67
68
  def set_networking_params
68
69
  child_hostgroups.each do |the_hostgroup|
69
70
  the_hostgroup.puppetclasses.each do |pclass|
@@ -71,6 +72,10 @@ module Staypuft
71
72
  the_hostgroup.set_param_value_if_changed(pclass, "include_neutron",
72
73
  (layout.networking == 'neutron') ? true : false)
73
74
  end
75
+ if pclass.class_params.where(:key=> "neutron").first
76
+ the_hostgroup.set_param_value_if_changed(pclass, "neutron",
77
+ (layout.networking == 'neutron') ? true : false)
78
+ end
74
79
  end
75
80
  end
76
81
  end
@@ -87,8 +87,8 @@ module Staypuft
87
87
  "ovs_vxlan_udp_port", "qpid_host", "ssl",
88
88
  "tenant_network_type", "tunnel_id_ranges", "verbose"],
89
89
  "Neutron-ovs-agent"=> [],
90
- "Swift" => ["swift_all_ips", "swift_ext4_device", "swift_local_interface",
91
- "swift_loopback", "swift_ring_server", "swift_shared_secret"]
90
+ "Swift (node)" => ["swift_all_ips", "swift_ext4_device", "swift_local_interface",
91
+ "swift_loopback", "swift_ring_server", "swift_shared_secret"]
92
92
 
93
93
  }
94
94
 
@@ -1,10 +1,15 @@
1
1
  <%= render :layout => 'title' do %>
2
+ <% if anything_deployed %>
3
+ <%= alert :class => 'alert-warning', :text => _('Machines are already deployed with this configuration. Proceed with caution.') %>
4
+ <% end %>
5
+
2
6
  <%= form_for(@deployment, :url => wizard_path, :method => 'PUT') do |f| %>
3
7
  <%= base_errors_for @deployment %>
4
8
 
5
9
  <div class="wizard-container">
6
10
  <%= deployment_wizard 1 %>
7
11
  </div>
12
+
8
13
  <%= text_f f, :name %><br />
9
14
  <%= textarea_f f, :description, :rows => 3 %><br />
10
15
 
@@ -42,9 +47,14 @@
42
47
  </div>
43
48
  -->
44
49
  <div class="form_actions">
50
+ <% if !is_new %>
51
+ <%= link_to _("Cancel"), deployment_path(@deployment),
52
+ :class => "btn btn-danger" %>
53
+ <% else %>
45
54
  <%= link_to _("Cancel"), deployment_path(@deployment), :method => :delete,
46
55
  :confirm => _("This will clear whole deployment configuration. Are you sure?"),
47
56
  :class => "btn btn-danger" %>
57
+ <% end %>
48
58
  <%= button_tag(:type => 'submit', :class => "btn btn-primary pull-right") do %>
49
59
  <%= _("Next") %>
50
60
  <span class="glyphicon glyphicon-chevron-right"></span>
@@ -1,4 +1,8 @@
1
1
  <%= render :layout => 'title' do %>
2
+ <% if anything_deployed %>
3
+ <%= alert :class => 'alert-warning', :text => _('Machines are already deployed with this configuration. Proceed with caution.') %>
4
+ <% end %>
5
+
2
6
  <%= form_for(@deployment, :url => wizard_path, :method => 'PUT') do |f| %>
3
7
  <%= base_errors_for @deployment %>
4
8
 
@@ -45,8 +49,7 @@
45
49
  <span class="glyphicon glyphicon-chevron-left"></span>
46
50
  <%= _("Back") %>
47
51
  </a>
48
- <%= link_to _("Cancel"), deployment_path(@deployment), :method => :delete,
49
- :confirm => _("This will clear whole deployment configuration. Are you sure?"),
52
+ <%= link_to _("Cancel"), deployment_path(@deployment),
50
53
  :class => "btn btn-danger" %>
51
54
  <%= button_tag(:type => 'submit', :class => "btn btn-primary pull-right") do %>
52
55
  <%= _("Submit") %>
@@ -1,4 +1,8 @@
1
1
  <%= render :layout => 'title' do %>
2
+ <% if anything_deployed %>
3
+ <%= alert :class => 'alert-warning', :text => _('Machines are already deployed with this configuration. Proceed with caution.') %>
4
+ <% end %>
5
+
2
6
  <%= form_for(@deployment, :url => wizard_path, :method => 'PUT') do |f| %>
3
7
  <%= base_errors_for @deployment %>
4
8
 
@@ -27,8 +31,7 @@
27
31
  <span class="glyphicon glyphicon-chevron-left"></span>
28
32
  <%= _("Back") %>
29
33
  </a>
30
- <%= link_to _("Cancel"), deployment_path(@deployment), :method => :delete,
31
- :confirm => _("This will clear whole deployment configuration. Are you sure?"),
34
+ <%= link_to _("Cancel"), deployment_path(@deployment),
32
35
  :class => "btn btn-danger" %>
33
36
  <%= button_tag(:type => 'submit', :class => "btn btn-primary pull-right") do %>
34
37
  <%= _("Next") %>
@@ -2,6 +2,7 @@
2
2
 
3
3
  <% content_for(:title_actions) do %>
4
4
 
5
+ <%= link_to(_("Edit"), deployment_steps_path) %>
5
6
  <%= link_to(_("Configuration Summary"), summary_deployment_path(@deployment.id), :class => '') %>
6
7
 
7
8
  <% if Rails.env.development? %>
@@ -46,15 +47,15 @@
46
47
  <li class="<%= 'active' if i == 0 %>">
47
48
  <a href="#<%= child_hostgroup.name.parameterize.underscore %>" data-toggle="tab" class="roles_list">
48
49
  <div class="col-xs-2 text-center">
49
- <span class="glyphicon glyphicon-ok"></span>
50
+ <i class="glyphicon glyphicon-ok"></i>
50
51
  <span><%= child_hostgroup.hosts.select { |h| h.open_stack_deployed? && !h.error? }.count %></span>
51
52
  </div>
52
53
  <div class="col-xs-2 text-center">
53
- <span class="glyphicon glyphicon-warning-sign"></span>
54
+ <i class="glyphicon glyphicon-warning-sign"></i>
54
55
  <span><%= child_hostgroup.hosts.select { |h| h.open_stack_deployed? && h.error? }.count %></span>
55
56
  </div>
56
57
  <div class="col-xs-2 text-center">
57
- <span class="glyphicon glyphicon-time"></span>
58
+ <i class="glyphicon glyphicon-time"></i>
58
59
  <span><%= child_hostgroup.hosts.select { |h| !h.open_stack_deployed? }.count %></span>
59
60
  </div>
60
61
  <div class="col-xs-6"><%= child_hostgroup.name %></div>
data/db/seeds.rb CHANGED
@@ -13,6 +13,8 @@ params = {
13
13
  "heat_cfn" => "false",
14
14
  "heat_cloudwatch" => "false",
15
15
  "admin_password" => SecureRandom.hex,
16
+ "ceilometer" => "true",
17
+ "ceilometer_host" => "false",
16
18
  "ceilometer_metering_secret" => SecureRandom.hex,
17
19
  "ceilometer_user_password" => SecureRandom.hex,
18
20
  "cinder_db_password" => SecureRandom.hex,
@@ -105,6 +107,7 @@ params = {
105
107
  "horizon_key" => "/etc/pki/tls/private/PUB_HOST-horizon.key",
106
108
  "qpid_nssdb_password" => SecureRandom.hex,
107
109
  "fence_xvm_key_file_password" => SecureRandom.hex,
110
+ "use_qemu_for_poc" => "false",
108
111
  }
109
112
 
110
113
  def get_key_type(value)
@@ -148,7 +151,7 @@ services = {
148
151
  :nova_compute => {:name => "Nova-compute", :class => []},
149
152
  :neutron_compute => {:name => "Neutron-compute", :class => []},
150
153
  :neutron_ovs_agent => {:name => "Neutron-ovs-agent", :class => []},
151
- :swift => {:name => "Swift", :class => []},
154
+ :swift => {:name => "Swift (node)", :class => []},
152
155
  :ha_controller => {:name => "HA (Controller)", :class => ["quickstack::openstack_common",
153
156
  "quickstack::pacemaker::common",
154
157
  "quickstack::pacemaker::params"]},
@@ -160,7 +163,10 @@ services = {
160
163
  :glance_ha => {:name => "Glance (HA)", :class => ["quickstack::pacemaker::glance"]},
161
164
  :nova_ha => {:name => "Nova (HA)", :class => ["quickstack::pacemaker::nova"]},
162
165
  :cinder_ha => {:name => "Cinder (HA)", :class => ["quickstack::pacemaker::cinder"]},
163
- :ha_db_temp => {:name => "Database (HA -- temp)", :class => ["quickstack::hamysql::singlenodetest"]}
166
+ :swift_ha => {:name => "Swift (HA)", :class => ["quickstack::pacemaker::swift"]},
167
+ :horizon_ha => {:name => "Horizon (HA)", :class => ["quickstack::pacemaker::horizon"]},
168
+ :mysql_ha => {:name => "Mysql (HA)", :class => ["quickstack::pacemaker::mysql"]},
169
+ :neutron_ha => {:name => "Neutron (HA)", :class => ["quickstack::pacemaker::neutron"]}
164
170
  }
165
171
  services.each do |skey, svalue|
166
172
  service = Staypuft::Service.where(:name=>svalue[:name]).first_or_create!
@@ -196,7 +202,7 @@ end
196
202
  roles = [
197
203
  {:name=>"Controller (Nova)",
198
204
  :class=>"quickstack::nova_network::controller",
199
- :layouts=>[[:non_ha_nova, 2]],
205
+ :layouts=>[[:non_ha_nova, 1]],
200
206
  :services=>[:non_ha_qpid, :mysql, :non_ha_keystone, :nova_controller, :non_ha_glance, :cinder, :heat, :ceilometer]},
201
207
  {:name=>"Compute (Nova)",
202
208
  :class=>"quickstack::nova_network::compute",
@@ -204,7 +210,7 @@ roles = [
204
210
  :services=>[:nova_compute]},
205
211
  {:name=>"Controller (Neutron)",
206
212
  :class=>"quickstack::neutron::controller",
207
- :layouts=>[[:non_ha_neutron, 2]],
213
+ :layouts=>[[:non_ha_neutron, 1]],
208
214
  :services=>[:non_ha_qpid, :mysql, :non_ha_keystone, :neutron_controller, :non_ha_glance, :cinder, :heat, :ceilometer]},
209
215
  {:name=>"Compute (Neutron)",
210
216
  :class=>"quickstack::neutron::compute",
@@ -216,25 +222,16 @@ roles = [
216
222
  :services=>[:neutron_l3, :dhcp, :ovs]},
217
223
  {:name=>"LVM Block Storage",
218
224
  :class=>"quickstack::storage_backend::lvm_cinder",
219
- :layouts=>[[:ha_nova, 1], [:ha_neutron, 1], [:non_ha_nova, 1], [:non_ha_neutron, 1]],
225
+ :layouts=>[[:ha_nova, 2], [:ha_neutron, 2], [:non_ha_nova, 2], [:non_ha_neutron, 2]],
220
226
  :services=>[:cinder]},
221
227
  {:name=>"Swift Storage Node",
222
228
  :class=>"quickstack::swift::storage",
223
229
  :layouts=>[[:ha_nova, 5], [:ha_neutron, 5], [:non_ha_nova, 5], [:non_ha_neutron, 5]],
224
230
  :services=>[:swift]},
225
- {:name=>"HA Controller (Nova)",
231
+ {:name=>"HA Controller",
226
232
  :class=>[],
227
- :layouts=>[[:ha_nova, 3]],
228
- :services=>[:ha_controller, :keystone_ha, :load_balancer_ha, :memcached_ha, :qpid_ha, :glance_ha, :nova_ha, :cinder_ha]},
229
- {:name=>"HA Controller (Neutron)",
230
- :class=>[],
231
- :layouts=>[[:ha_neutron, 2]],
232
- :services=>[]},
233
- # this one is temporary -- goes away once db is added back to HA COntroller
234
- {:name=>"HA Database (temporary)",
235
- :class=>[],
236
- :layouts=>[[:ha_nova, 2]],
237
- :services=>[:ha_db_temp]}
233
+ :layouts=>[[:ha_nova, 1], [:ha_neutron, 1]],
234
+ :services=>[:ha_controller, :keystone_ha, :load_balancer_ha, :memcached_ha, :qpid_ha, :glance_ha, :nova_ha, :cinder_ha, :swift_ha, :horizon_ha, :mysql_ha, :neutron_ha]}
238
235
  ]
239
236
 
240
237
  roles.each do |r|
@@ -1,3 +1,3 @@
1
1
  module Staypuft
2
- VERSION = '0.0.9'
2
+ VERSION = '0.0.10'
3
3
  end
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: staypuft
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
5
- prerelease:
4
+ version: 0.0.10
6
5
  platform: ruby
7
6
  authors:
8
7
  - Staypuft team
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-04-15 00:00:00.000000000 Z
11
+ date: 2014-04-22 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: foreman-tasks
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
@@ -30,7 +27,6 @@ dependencies:
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: dynflow
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ~>
36
32
  - !ruby/object:Gem::Version
@@ -38,7 +34,6 @@ dependencies:
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ~>
44
39
  - !ruby/object:Gem::Version
@@ -46,23 +41,20 @@ dependencies:
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: wicked
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - '>='
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - '>='
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: foreman_discovery
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
59
  - - ~>
68
60
  - !ruby/object:Gem::Version
@@ -70,7 +62,6 @@ dependencies:
70
62
  type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
66
  - - ~>
76
67
  - !ruby/object:Gem::Version
@@ -82,65 +73,65 @@ executables: []
82
73
  extensions: []
83
74
  extra_rdoc_files: []
84
75
  files:
85
- - app/assets/javascripts/staypuft/staypuft.js
86
- - app/assets/stylesheets/staypuft/bootstrap_and_overrides.css.scss
87
- - app/assets/stylesheets/staypuft/staypuft.css.scss
88
- - app/controllers/staypuft/application_controller.rb
89
- - app/controllers/staypuft/deployment_steps_controller.rb
90
- - app/controllers/staypuft/deployments_controller.rb
91
76
  - app/helpers/staypuft/application_helper.rb
92
77
  - app/helpers/staypuft/deployments_helper.rb
93
- - app/lib/actions/staypuft/deployment/deploy.rb
94
- - app/lib/actions/staypuft/deployment/populate.rb
95
- - app/lib/actions/staypuft/host/build.rb
96
- - app/lib/actions/staypuft/host/create.rb
97
- - app/lib/actions/staypuft/host/deploy.rb
98
- - app/lib/actions/staypuft/host/puppet_run.rb
99
- - app/lib/actions/staypuft/host/wait_until_host_ready.rb
100
- - app/lib/actions/staypuft/host/wait_until_installed.rb
101
- - app/lib/actions/staypuft/hostgroup/deploy.rb
102
- - app/lib/actions/staypuft/hostgroup/ordered_deploy.rb
103
- - app/lib/actions/staypuft/middleware/as_current_user.rb
104
- - app/lib/staypuft/exception.rb
105
- - app/models/setting/staypuft_provisioning.rb
106
- - app/models/staypuft/concerns/environment_extensions.rb
107
- - app/models/staypuft/concerns/host_open_stack_affiliation.rb
108
- - app/models/staypuft/concerns/host_orchestration_build_hook.rb
109
- - app/models/staypuft/concerns/hostgroup_extensions.rb
110
- - app/models/staypuft/concerns/puppetclass_extensions.rb
78
+ - app/assets/javascripts/staypuft/staypuft.js
79
+ - app/assets/stylesheets/staypuft/staypuft.css.scss
80
+ - app/assets/stylesheets/staypuft/bootstrap_and_overrides.css.scss
81
+ - app/models/staypuft/service.rb
82
+ - app/models/staypuft/role_class.rb
111
83
  - app/models/staypuft/deployment.rb
84
+ - app/models/staypuft/role_service.rb
112
85
  - app/models/staypuft/deployment_role_hostgroup.rb
113
86
  - app/models/staypuft/layout.rb
87
+ - app/models/staypuft/service_class.rb
88
+ - app/models/staypuft/concerns/host_orchestration_build_hook.rb
89
+ - app/models/staypuft/concerns/hostgroup_extensions.rb
90
+ - app/models/staypuft/concerns/host_open_stack_affiliation.rb
91
+ - app/models/staypuft/concerns/puppetclass_extensions.rb
92
+ - app/models/staypuft/concerns/environment_extensions.rb
114
93
  - app/models/staypuft/layout_role.rb
115
94
  - app/models/staypuft/role.rb
116
- - app/models/staypuft/role_class.rb
117
- - app/models/staypuft/role_service.rb
118
- - app/models/staypuft/service.rb
119
- - app/models/staypuft/service_class.rb
120
- - app/views/staypuft/deployment_steps/_title.html.erb
121
- - app/views/staypuft/deployment_steps/deployment_settings.html.erb
122
- - app/views/staypuft/deployment_steps/services_configuration.html.erb
123
- - app/views/staypuft/deployment_steps/services_selection.html.erb
95
+ - app/models/setting/staypuft_provisioning.rb
96
+ - app/lib/staypuft/exception.rb
97
+ - app/lib/actions/staypuft/middleware/as_current_user.rb
98
+ - app/lib/actions/staypuft/hostgroup/deploy.rb
99
+ - app/lib/actions/staypuft/hostgroup/ordered_deploy.rb
100
+ - app/lib/actions/staypuft/host/deploy.rb
101
+ - app/lib/actions/staypuft/host/build.rb
102
+ - app/lib/actions/staypuft/host/wait_until_host_ready.rb
103
+ - app/lib/actions/staypuft/host/puppet_run.rb
104
+ - app/lib/actions/staypuft/host/create.rb
105
+ - app/lib/actions/staypuft/host/wait_until_installed.rb
106
+ - app/lib/actions/staypuft/deployment/deploy.rb
107
+ - app/lib/actions/staypuft/deployment/populate.rb
108
+ - app/controllers/staypuft/deployments_controller.rb
109
+ - app/controllers/staypuft/application_controller.rb
110
+ - app/controllers/staypuft/deployment_steps_controller.rb
124
111
  - app/views/staypuft/deployments/index.html.erb
125
112
  - app/views/staypuft/deployments/show.html.erb
126
113
  - app/views/staypuft/deployments/summary.html.erb
114
+ - app/views/staypuft/deployment_steps/deployment_settings.html.erb
115
+ - app/views/staypuft/deployment_steps/services_selection.html.erb
116
+ - app/views/staypuft/deployment_steps/_title.html.erb
117
+ - app/views/staypuft/deployment_steps/services_configuration.html.erb
127
118
  - app/views/staypuft/layouts/staypuft.html.erb
128
- - config/routes.rb
129
119
  - config/staypuft.local.rb
120
+ - config/routes.rb
121
+ - db/migrate/20140312050615_create_staypuft_role_classes.rb
130
122
  - db/migrate/20140309021811_create_staypuft_layouts.rb
131
- - db/migrate/20140310004533_create_staypuft_deployments.rb
123
+ - db/migrate/20140310203855_create_staypuft_role_services.rb
132
124
  - db/migrate/20140310023613_create_staypuft_roles.rb
133
- - db/migrate/20140310174152_create_staypuft_layout_roles.rb
125
+ - db/migrate/20140325211410_add_role_to_staypuft_deployment_role_hostgroup.rb
126
+ - db/migrate/20140326032027_drop_staypuft_hostgroup_roles.rb
134
127
  - db/migrate/20140310194221_create_staypuft_services.rb
135
- - db/migrate/20140310203855_create_staypuft_role_services.rb
136
- - db/migrate/20140312044533_create_staypuft_deployment_role_hostgroups.rb
137
128
  - db/migrate/20140312050001_create_staypuft_hostgroup_roles.rb
138
- - db/migrate/20140312050615_create_staypuft_role_classes.rb
139
- - db/migrate/20140312051144_create_staypuft_service_classes.rb
140
- - db/migrate/20140315031754_add_networking_to_staypuft_layout.rb
129
+ - db/migrate/20140310174152_create_staypuft_layout_roles.rb
141
130
  - db/migrate/20140318163222_add_deploy_order_to_staypuft_layout_role.rb
142
- - db/migrate/20140325211410_add_role_to_staypuft_deployment_role_hostgroup.rb
143
- - db/migrate/20140326032027_drop_staypuft_hostgroup_roles.rb
131
+ - db/migrate/20140315031754_add_networking_to_staypuft_layout.rb
132
+ - db/migrate/20140312051144_create_staypuft_service_classes.rb
133
+ - db/migrate/20140312044533_create_staypuft_deployment_role_hostgroups.rb
134
+ - db/migrate/20140310004533_create_staypuft_deployments.rb
144
135
  - db/seeds.rb
145
136
  - lib/staypuft/engine.rb
146
137
  - lib/staypuft/version.rb
@@ -149,40 +140,39 @@ files:
149
140
  - LICENSE
150
141
  - Rakefile
151
142
  - README.md
152
- - test/factories/staypuft_factories.rb
153
- - test/integration/navigation_test.rb
154
- - test/staypuft_test.rb
155
143
  - test/test_helper.rb
156
- - test/test_plugin_helper.rb
144
+ - test/staypuft_test.rb
157
145
  - test/unit/staypuft_test.rb
146
+ - test/integration/navigation_test.rb
147
+ - test/factories/staypuft_factories.rb
148
+ - test/test_plugin_helper.rb
158
149
  homepage: https://github.com/theforeman/staypuft
159
150
  licenses: []
151
+ metadata: {}
160
152
  post_install_message:
161
153
  rdoc_options: []
162
154
  require_paths:
163
155
  - lib
164
156
  required_ruby_version: !ruby/object:Gem::Requirement
165
- none: false
166
157
  requirements:
167
- - - ! '>='
158
+ - - '>='
168
159
  - !ruby/object:Gem::Version
169
160
  version: '0'
170
161
  required_rubygems_version: !ruby/object:Gem::Requirement
171
- none: false
172
162
  requirements:
173
- - - ! '>='
163
+ - - '>='
174
164
  - !ruby/object:Gem::Version
175
165
  version: '0'
176
166
  requirements: []
177
167
  rubyforge_project:
178
- rubygems_version: 1.8.23
168
+ rubygems_version: 2.0.3
179
169
  signing_key:
180
- specification_version: 3
170
+ specification_version: 4
181
171
  summary: OpenStack Foreman Installer
182
172
  test_files:
183
- - test/factories/staypuft_factories.rb
184
- - test/integration/navigation_test.rb
185
- - test/staypuft_test.rb
186
173
  - test/test_helper.rb
187
- - test/test_plugin_helper.rb
174
+ - test/staypuft_test.rb
188
175
  - test/unit/staypuft_test.rb
176
+ - test/integration/navigation_test.rb
177
+ - test/factories/staypuft_factories.rb
178
+ - test/test_plugin_helper.rb