staypuft 0.2.6 → 0.3.0

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: f616a792efe16f83b8c83d62da0008a7fbe6afed
4
- data.tar.gz: 186093722a498f08ea2143d61c6a0aa048268d04
3
+ metadata.gz: 99a1f5f5c7b85101293d953b4593b62a0c5c88ef
4
+ data.tar.gz: 4191b40752bd2f7d390dfe7e91aba3b526919042
5
5
  SHA512:
6
- metadata.gz: 8555b75382a71b0f8aa772f8cb40b7c6541c9e57af20774866456e07f960b45d886532895f727cf737480d1209082d2cc3faea0e7a62533206b8b27eebeffb6b
7
- data.tar.gz: 77fdbd263442637f2902a7f7d34f998b8b3bb32db6c07234c1f4349a29804a8ac2d5e7f95a91ce50aa32e8c07deca192800576781c0d3f629f27b3e794ca8f91
6
+ metadata.gz: 99beb2ceafae6e36557f209ca737a06c999f6bca9854f3996eaa9d34846df6c4c8c7f77786fbfb66ccddf0ac2f37c0538679c8b60aba6101f304d3d29c876ebe
7
+ data.tar.gz: 6363d35d9dc329d997f51c230b719da0937b50a525dfa7f2be6d6ad91ce278b0089f794b9bd1c6bfee7b5d7476d5bf9ae746de931a11ba63de73445d42942ec3
@@ -26,49 +26,12 @@ module Actions
26
26
  # hostgroup.hosts returns already converted hosts from Host::Discovered with build flag
27
27
  # set to false so they are not built when assigned to the hostgroup in wizard
28
28
  # run Hostgroup's Hosts filtered by hosts
29
- host_list = hostgroup.hosts & hosts
30
- orchestration_mode = hostgroup.role.orchestration unless hostgroup.role.nil?
31
-
32
- case orchestration_mode
33
- when ::Staypuft::Role::ORCHESTRATION_CONCURRENT
34
- deploy_concurrently(host_list)
35
- when ::Staypuft::Role::ORCHESTRATION_SERIAL
36
- deploy_serially(host_list)
37
- when ::Staypuft::Role::ORCHESTRATION_LEADER
38
- deploy_leader_first(host_list)
39
- else
40
- deploy_concurrently(host_list)
41
- end
42
- end
43
-
44
- def deploy_concurrently(hosts)
45
- hosts.each do |host|
29
+ (hostgroup.hosts & hosts).each do |host|
46
30
  # planned in concurrence
47
31
  plan_action Host::Deploy, host
48
32
  end
49
33
  end
50
34
 
51
- def deploy_serially(hosts)
52
- sequence do
53
- hosts.each do |host|
54
- plan_action Host::Deploy, host
55
- end
56
- end
57
- end
58
-
59
- def deploy_leader_first(hosts)
60
- first_host = hosts.shift
61
- sequence do
62
- #deploy first host, then deploy remainder in parallel
63
- plan_action Host::Deploy, first_host unless first_host.nil?
64
- concurrence do
65
- hosts.each do |host|
66
- plan_action Host::Deploy, host
67
- end
68
- end
69
- end
70
- end
71
-
72
35
  def humanized_input
73
36
  input[:name]
74
37
  end
@@ -112,50 +112,42 @@ module Staypuft
112
112
  # until we get the real list of roles per layout
113
113
  # layout refs below specify layout keys from layouts hash
114
114
  ROLES = [
115
- { :name => 'Controller (Nova)',
116
- :class => 'quickstack::nova_network::controller',
117
- :layouts => [[:non_ha_nova, 1]],
118
- :services => [:non_ha_amqp, :mysql, :non_ha_keystone, :nova_controller, :non_ha_glance,
119
- :cinder_controller, :heat, :ceilometer],
120
- :orchestration => 'concurrent' },
121
- { :name => 'Compute (Nova)',
122
- :class => [],
123
- :layouts => [[:ha_nova, 10], [:non_ha_nova, 10]],
124
- :services => [:nova_compute],
125
- :orchestration => 'leader' },
126
- { :name => 'Controller (Neutron)',
127
- :class => 'quickstack::neutron::controller',
128
- :layouts => [[:non_ha_neutron, 1]],
129
- :services => [:non_ha_amqp, :mysql, :non_ha_keystone, :neutron_controller, :non_ha_glance,
130
- :cinder_controller, :heat, :ceilometer],
131
- :orchestration => 'concurrent' },
132
- { :name => 'Compute (Neutron)',
133
- :class => [],
134
- :layouts => [[:ha_neutron, 10], [:non_ha_neutron, 10]],
135
- :services => [:neutron_compute],
136
- :orchestration => 'concurrent' },
137
- { :name => 'Neutron Networker',
138
- :class => [],
139
- :layouts => [[:non_ha_neutron, 3]],
140
- :services => [:neutron_networker],
141
- :orchestration => 'concurrent' },
142
- { :name => 'Cinder Block Storage',
143
- :class => [],
144
- :layouts => [],
145
- :services => [:cinder_node],
146
- :orchestration => 'concurrent' },
147
- { :name => 'Swift Storage Node',
148
- :class => [],
149
- :layouts => [],
150
- :services => [:swift],
151
- :orchestration => 'concurrent' },
152
- { :name => 'HA Controller',
153
- :class => [],
154
- :layouts => [[:ha_nova, 1], [:ha_neutron, 1]],
155
- :services => [:ha_controller, :keystone_ha, :load_balancer_ha, :memcached_ha, :qpid_ha,
156
- :glance_ha, :nova_ha, :heat_ha, :cinder_ha, :swift_ha, :horizon_ha, :mysql_ha,
157
- :neutron_ha, :galera_ha],
158
- :orchestration => 'concurrent' }]
115
+ { :name => 'Controller (Nova)',
116
+ :class => 'quickstack::nova_network::controller',
117
+ :layouts => [[:non_ha_nova, 1]],
118
+ :services => [:non_ha_amqp, :mysql, :non_ha_keystone, :nova_controller, :non_ha_glance,
119
+ :cinder_controller, :heat, :ceilometer] },
120
+ { :name => 'Compute (Nova)',
121
+ :class => [],
122
+ :layouts => [[:ha_nova, 10], [:non_ha_nova, 10]],
123
+ :services => [:nova_compute] },
124
+ { :name => 'Controller (Neutron)',
125
+ :class => 'quickstack::neutron::controller',
126
+ :layouts => [[:non_ha_neutron, 1]],
127
+ :services => [:non_ha_amqp, :mysql, :non_ha_keystone, :neutron_controller, :non_ha_glance,
128
+ :cinder_controller, :heat, :ceilometer] },
129
+ { :name => 'Compute (Neutron)',
130
+ :class => [],
131
+ :layouts => [[:ha_neutron, 10], [:non_ha_neutron, 10]],
132
+ :services => [:neutron_compute] },
133
+ { :name => 'Neutron Networker',
134
+ :class => [],
135
+ :layouts => [[:non_ha_neutron, 3]],
136
+ :services => [:neutron_networker] },
137
+ { :name => 'Cinder Block Storage',
138
+ :class => [],
139
+ :layouts => [],
140
+ :services => [:cinder_node] },
141
+ { :name => 'Swift Storage Node',
142
+ :class => [],
143
+ :layouts => [],
144
+ :services => [:swift] },
145
+ { :name => 'HA Controller',
146
+ :class => [],
147
+ :layouts => [[:ha_nova, 1], [:ha_neutron, 1]],
148
+ :services => [:ha_controller, :keystone_ha, :load_balancer_ha, :memcached_ha, :qpid_ha,
149
+ :glance_ha, :nova_ha, :heat_ha, :cinder_ha, :swift_ha, :horizon_ha, :mysql_ha,
150
+ :neutron_ha, :galera_ha] }]
159
151
 
160
152
  CONTROLLER_ROLES = ROLES.select { |h| h.fetch(:name) =~ /Controller/ }
161
153
 
@@ -670,15 +662,13 @@ module Staypuft
670
662
 
671
663
  def seed_roles
672
664
  ROLES.each do |role_hash|
673
- role = Staypuft::Role.where(:name => role_hash[:name]).first_or_initialize
665
+ role = Staypuft::Role.where(:name => role_hash[:name]).first_or_create!
674
666
 
675
667
  puppet_classes = collect_puppet_classes(Array(role_hash[:class]))
676
668
  puppet_classes.each { |pc| apply_astapor_defaults pc }
677
669
  role.puppetclasses = puppet_classes
678
670
 
679
671
  role.description = role_hash[:description]
680
- role.orchestration = role_hash[:orchestration]
681
- role.save!
682
672
  old_role_services_arr = role.role_services.to_a
683
673
  role_hash[:services].each do |key|
684
674
  role_service = role.role_services.where(:service_id => SERVICES[key][:obj].id).first_or_create!
@@ -275,11 +275,12 @@ module Staypuft
275
275
  end
276
276
 
277
277
  def update_operating_system
278
+ name = Setting[:base_hostgroup].include?('RedHat') ? 'RedHat' : 'CentOS'
278
279
  self.hostgroup.operatingsystem = case platform
279
280
  when Platform::RHEL6
280
- Operatingsystem.where(name: 'RedHat', major: '6', minor: '5').first
281
+ Operatingsystem.where(name: name, major: '6', minor: '5').first
281
282
  when Platform::RHEL7
282
- Operatingsystem.where(name: 'RedHat', major: '7', minor: '0').first
283
+ Operatingsystem.where(name: name, major: '7', minor: '0').first
283
284
  end or
284
285
  raise 'missing Operatingsystem'
285
286
  self.hostgroup.save!
@@ -1,16 +1,5 @@
1
1
  module Staypuft
2
2
  class Role < ActiveRecord::Base
3
- # until we have puppetssh, "run puppet" below means "provision and run puppet"
4
-
5
- # run puppet on all nodes concurrently
6
- ORCHESTRATION_CONCURRENT = "concurrent"
7
- # run puppet on one node at a time
8
- ORCHESTRATION_SERIAL = "serial"
9
- # run puppet on the first mode, then the rest concurrently
10
- ORCHESTRATION_LEADER = "leader"
11
-
12
- ORCHESTRATION_MODES = [ORCHESTRATION_CONCURRENT, ORCHESTRATION_SERIAL, ORCHESTRATION_LEADER]
13
-
14
3
  has_many :layout_roles, :dependent => :destroy
15
4
  has_many :layouts, :through => :layout_roles
16
5
 
@@ -28,8 +17,6 @@ module Staypuft
28
17
 
29
18
  validates :name, :presence => true, :uniqueness => true
30
19
 
31
- validates :orchestration, :inclusion => {:in => ORCHESTRATION_MODES }
32
-
33
20
  scope(:in_deployment, lambda do |deployment|
34
21
  joins(:deployment_role_hostgroups).
35
22
  where(DeploymentRoleHostgroup.table_name => { deployment_id: deployment })
@@ -27,7 +27,7 @@
27
27
  <label class="col-sm-4 control-label text-muted"><%= _("Password") %></label>
28
28
  <div class="col-sm-8">
29
29
  <p class="form-control-static">
30
- <span class="shown_password hide"><%= @deployment.passwords.admin %></span>
30
+ <span class="shown_password hide"><%= @deployment.passwords.effective_value(:admin) %></span>
31
31
  <span class="hidden_password">********</span>
32
32
  <a href="" id="hidden_password_toggle">
33
33
  <span class="glyphicon glyphicon-eye-open"></span>
@@ -1,3 +1,3 @@
1
1
  module Staypuft
2
- VERSION = '0.2.6'
2
+ VERSION = '0.3.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: staypuft
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Staypuft team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-27 00:00:00.000000000 Z
11
+ date: 2014-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: foreman-tasks
@@ -73,120 +73,119 @@ executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - app/overrides/hide_subscription_manager_passwords.rb
77
+ - app/overrides/customize_foreman_tasks_show_page.rb
78
+ - app/helpers/staypuft/application_helper.rb
79
+ - app/helpers/staypuft/deployments_helper.rb
76
80
  - app/assets/javascripts/staypuft/staypuft.js
77
- - app/assets/stylesheets/staypuft/bootstrap_and_overrides.css.scss
78
81
  - app/assets/stylesheets/staypuft/foreman_helper.scss
79
82
  - app/assets/stylesheets/staypuft/staypuft.css.scss
80
- - app/controllers/staypuft/application_controller.rb
81
- - app/controllers/staypuft/steps_controller.rb
82
- - app/controllers/staypuft/deployments_controller.rb
83
- - app/models/staypuft/service/ui_params.rb
83
+ - app/assets/stylesheets/staypuft/bootstrap_and_overrides.css.scss
84
+ - app/models/staypuft/service.rb
85
+ - app/models/staypuft/role_class.rb
86
+ - app/models/staypuft/deployment.rb
87
+ - app/models/staypuft/role_service.rb
88
+ - app/models/staypuft/deployment_role_hostgroup.rb
89
+ - app/models/staypuft/layout.rb
90
+ - app/models/staypuft/service_class.rb
91
+ - app/models/staypuft/concerns/host_orchestration_build_hook.rb
92
+ - app/models/staypuft/concerns/hostgroup_extensions.rb
93
+ - app/models/staypuft/concerns/host_open_stack_affiliation.rb
94
+ - app/models/staypuft/concerns/lookup_key_extensions.rb
95
+ - app/models/staypuft/concerns/puppetclass_extensions.rb
96
+ - app/models/staypuft/concerns/environment_extensions.rb
97
+ - app/models/staypuft/concerns/host_details_helper.rb
84
98
  - app/models/staypuft/layout_role.rb
99
+ - app/models/staypuft/service/ui_params.rb
85
100
  - app/models/staypuft/role.rb
101
+ - app/models/staypuft/deployment/passwords.rb
102
+ - app/models/staypuft/deployment/glance_service.rb
86
103
  - app/models/staypuft/deployment/vlan_range_values_validator.rb
87
- - app/models/staypuft/deployment/nova_service.rb
104
+ - app/models/staypuft/deployment/attribute_param_storage.rb
105
+ - app/models/staypuft/deployment/abstract_param_scope.rb
88
106
  - app/models/staypuft/deployment/cinder_service.rb
107
+ - app/models/staypuft/deployment/vips.rb
89
108
  - app/models/staypuft/deployment/ips.rb
90
- - app/models/staypuft/deployment/abstract_param_scope.rb
91
109
  - app/models/staypuft/deployment/neutron_service.rb
92
- - app/models/staypuft/deployment/glance_service.rb
93
- - app/models/staypuft/deployment/attribute_param_storage.rb
94
- - app/models/staypuft/deployment/vips.rb
95
- - app/models/staypuft/deployment/passwords.rb
96
- - app/models/staypuft/service_class.rb
97
- - app/models/staypuft/layout.rb
98
- - app/models/staypuft/concerns/hostgroup_extensions.rb
99
- - app/models/staypuft/concerns/puppetclass_extensions.rb
100
- - app/models/staypuft/concerns/host_details_helper.rb
101
- - app/models/staypuft/concerns/environment_extensions.rb
102
- - app/models/staypuft/concerns/host_orchestration_build_hook.rb
103
- - app/models/staypuft/concerns/lookup_key_extensions.rb
104
- - app/models/staypuft/concerns/host_open_stack_affiliation.rb
105
- - app/models/staypuft/role_service.rb
106
- - app/models/staypuft/service.rb
107
- - app/models/staypuft/role_class.rb
108
- - app/models/staypuft/deployment.rb
109
- - app/models/staypuft/deployment_role_hostgroup.rb
110
+ - app/models/staypuft/deployment/nova_service.rb
110
111
  - app/models/setting/staypuft_provisioning.rb
111
- - app/overrides/customize_foreman_tasks_show_page.rb
112
- - app/overrides/hide_subscription_manager_passwords.rb
113
- - app/lib/actions/staypuft/hostgroup/ordered_deploy.rb
112
+ - app/lib/staypuft/deployment_param_importer.rb
113
+ - app/lib/staypuft/exception.rb
114
+ - app/lib/staypuft/seeder.rb
115
+ - app/lib/staypuft/deployment_param_exporter.rb
116
+ - app/lib/actions/staypuft/middleware/as_current_user.rb
114
117
  - app/lib/actions/staypuft/hostgroup/deploy.rb
115
- - app/lib/actions/staypuft/deployment/populate.rb
116
- - app/lib/actions/staypuft/deployment/deploy.rb
118
+ - app/lib/actions/staypuft/hostgroup/ordered_deploy.rb
119
+ - app/lib/actions/staypuft/host/deploy.rb
120
+ - app/lib/actions/staypuft/host/build.rb
117
121
  - app/lib/actions/staypuft/host/wait_until_host_ready.rb
118
122
  - app/lib/actions/staypuft/host/puppet_run.rb
119
- - app/lib/actions/staypuft/host/wait_until_installed.rb
120
- - app/lib/actions/staypuft/host/build.rb
121
- - app/lib/actions/staypuft/host/deploy.rb
122
123
  - app/lib/actions/staypuft/host/create.rb
123
- - app/lib/actions/staypuft/middleware/as_current_user.rb
124
- - app/lib/staypuft/deployment_param_importer.rb
125
- - app/lib/staypuft/seeder.rb
126
- - app/lib/staypuft/exception.rb
127
- - app/lib/staypuft/deployment_param_exporter.rb
128
- - app/views/staypuft/steps/_nova.html.erb
129
- - app/views/staypuft/steps/_neutron_non_ha.html.erb
130
- - app/views/staypuft/steps/services_overview.html.erb
131
- - app/views/staypuft/steps/_nova_non_ha.html.erb
132
- - app/views/staypuft/steps/_title.html.erb
133
- - app/views/staypuft/steps/services_configuration.html.erb
134
- - app/views/staypuft/steps/_neutron_ha.html.erb
135
- - app/views/staypuft/steps/deployment_settings.html.erb
136
- - app/views/staypuft/steps/_cinder.html.erb
137
- - app/views/staypuft/steps/_nova_ha.html.erb
138
- - app/views/staypuft/steps/_glance.html.erb
139
- - app/views/staypuft/steps/_neutron.html.erb
140
- - app/views/staypuft/steps/_wizard_form_buttons.html.erb
141
- - app/views/staypuft/layouts/staypuft.html.erb
142
- - app/views/staypuft/layouts/application.html.erb
143
- - app/views/staypuft/deployments/edit.html.erb
144
- - app/views/staypuft/deployments/_advanced_configuration.html.erb
145
- - app/views/staypuft/deployments/_assigned_hosts_table.html.erb
146
- - app/views/staypuft/deployments/index.html.erb
124
+ - app/lib/actions/staypuft/host/wait_until_installed.rb
125
+ - app/lib/actions/staypuft/deployment/deploy.rb
126
+ - app/lib/actions/staypuft/deployment/populate.rb
127
+ - app/controllers/staypuft/steps_controller.rb
128
+ - app/controllers/staypuft/deployments_controller.rb
129
+ - app/controllers/staypuft/application_controller.rb
130
+ - app/views/staypuft/deployments/_deployment_show_header.html.erb
147
131
  - app/views/staypuft/deployments/_deployment_overview.html.erb
132
+ - app/views/staypuft/deployments/_deployed_hosts.html.erb
133
+ - app/views/staypuft/deployments/_deployment_access_all_details_dialogue.html.erb
148
134
  - app/views/staypuft/deployments/_deployment_progress_page_header.html.erb
149
- - app/views/staypuft/deployments/_free_hosts_table.html.erb
150
- - app/views/staypuft/deployments/_hosts_filter.html.erb
135
+ - app/views/staypuft/deployments/index.html.erb
136
+ - app/views/staypuft/deployments/_assigned_hosts_table.html.erb
137
+ - app/views/staypuft/deployments/_deployment_summary.html.erb
138
+ - app/views/staypuft/deployments/_deployment_progress_bar.html.erb
139
+ - app/views/staypuft/deployments/show.html.erb
151
140
  - app/views/staypuft/deployments/_assigned_hosts.html.erb
141
+ - app/views/staypuft/deployments/edit.html.erb
142
+ - app/views/staypuft/deployments/_free_hosts.html.erb
152
143
  - app/views/staypuft/deployments/_deployment_hosts.html.erb
153
- - app/views/staypuft/deployments/show.html.erb
144
+ - app/views/staypuft/deployments/_deployment_networking.html.erb
154
145
  - app/views/staypuft/deployments/_deployed_hosts_table.html.erb
155
- - app/views/staypuft/deployments/_deployed_hosts.html.erb
156
- - app/views/staypuft/deployments/_free_hosts.html.erb
157
- - app/views/staypuft/deployments/_deployment_show_header.html.erb
158
- - app/views/staypuft/deployments/_deployment_access_all_details_dialogue.html.erb
159
- - app/views/staypuft/deployments/_deployment_progress_bar.html.erb
160
146
  - app/views/staypuft/deployments/_import_form.html.erb
161
- - app/views/staypuft/deployments/_deployment_summary.html.erb
162
- - app/views/staypuft/deployments/_deployment_networking.html.erb
163
- - app/helpers/staypuft/deployments_helper.rb
164
- - app/helpers/staypuft/application_helper.rb
147
+ - app/views/staypuft/deployments/_advanced_configuration.html.erb
148
+ - app/views/staypuft/deployments/_free_hosts_table.html.erb
149
+ - app/views/staypuft/deployments/_hosts_filter.html.erb
150
+ - app/views/staypuft/layouts/staypuft.html.erb
151
+ - app/views/staypuft/layouts/application.html.erb
152
+ - app/views/staypuft/steps/_nova_ha.html.erb
153
+ - app/views/staypuft/steps/services_overview.html.erb
154
+ - app/views/staypuft/steps/_neutron.html.erb
155
+ - app/views/staypuft/steps/_wizard_form_buttons.html.erb
156
+ - app/views/staypuft/steps/deployment_settings.html.erb
157
+ - app/views/staypuft/steps/_neutron_ha.html.erb
158
+ - app/views/staypuft/steps/_neutron_non_ha.html.erb
159
+ - app/views/staypuft/steps/_nova.html.erb
160
+ - app/views/staypuft/steps/_title.html.erb
161
+ - app/views/staypuft/steps/_glance.html.erb
162
+ - app/views/staypuft/steps/services_configuration.html.erb
163
+ - app/views/staypuft/steps/_nova_non_ha.html.erb
164
+ - app/views/staypuft/steps/_cinder.html.erb
165
165
  - config/staypuft.local.rb
166
166
  - config/routes.rb
167
- - db/seeds.rb
168
- - db/migrate/20140310023613_create_staypuft_roles.rb
167
+ - db/migrate/20140312050615_create_staypuft_role_classes.rb
168
+ - db/migrate/20140309021811_create_staypuft_layouts.rb
169
169
  - db/migrate/20140310203855_create_staypuft_role_services.rb
170
+ - db/migrate/20140310023613_create_staypuft_roles.rb
171
+ - db/migrate/20140623142500_remove_amqp_provider_from_staypuft_deployment.rb
172
+ - db/migrate/20140325211410_add_role_to_staypuft_deployment_role_hostgroup.rb
173
+ - db/migrate/20140326032027_drop_staypuft_hostgroup_roles.rb
170
174
  - db/migrate/20140602121501_add_amqp_provider_to_staypuft_deployment.rb
171
- - db/migrate/20140309021811_create_staypuft_layouts.rb
175
+ - db/migrate/20140310194221_create_staypuft_services.rb
176
+ - db/migrate/20140312050001_create_staypuft_hostgroup_roles.rb
172
177
  - db/migrate/20140310174152_create_staypuft_layout_roles.rb
173
178
  - db/migrate/20140318163222_add_deploy_order_to_staypuft_layout_role.rb
174
- - db/migrate/20140825164900_add_orchestration_to_staypuft_role.rb
175
- - db/migrate/20140326032027_drop_staypuft_hostgroup_roles.rb
176
- - db/migrate/20140623142500_remove_amqp_provider_from_staypuft_deployment.rb
179
+ - db/migrate/20140507103716_add_form_step_to_staypuft_deployment.rb
177
180
  - db/migrate/20140513124807_change_column_default_form_step_on_staypuft_deployment.rb
178
- - db/migrate/20140312050615_create_staypuft_role_classes.rb
179
- - db/migrate/20140310004533_create_staypuft_deployments.rb
180
- - db/migrate/20140312050001_create_staypuft_hostgroup_roles.rb
181
- - db/migrate/20140325211410_add_role_to_staypuft_deployment_role_hostgroup.rb
181
+ - db/migrate/20140315031754_add_networking_to_staypuft_layout.rb
182
182
  - db/migrate/20140312051144_create_staypuft_service_classes.rb
183
183
  - db/migrate/20140312044533_create_staypuft_deployment_role_hostgroups.rb
184
- - db/migrate/20140315031754_add_networking_to_staypuft_layout.rb
185
- - db/migrate/20140507103716_add_form_step_to_staypuft_deployment.rb
186
- - db/migrate/20140310194221_create_staypuft_services.rb
187
- - lib/staypuft.rb
184
+ - db/migrate/20140310004533_create_staypuft_deployments.rb
185
+ - db/seeds.rb
188
186
  - lib/staypuft/engine.rb
189
187
  - lib/staypuft/version.rb
188
+ - lib/staypuft.rb
190
189
  - lib/tasks/staypuft_tasks.rake
191
190
  - LICENSE
192
191
  - Rakefile
@@ -194,9 +193,9 @@ files:
194
193
  - test/test_helper.rb
195
194
  - test/staypuft_test.rb
196
195
  - test/unit/staypuft_test.rb
197
- - test/test_plugin_helper.rb
198
- - test/factories/staypuft_factories.rb
199
196
  - test/integration/navigation_test.rb
197
+ - test/factories/staypuft_factories.rb
198
+ - test/test_plugin_helper.rb
200
199
  homepage: https://github.com/theforeman/staypuft
201
200
  licenses:
202
201
  - GPL-3.0+
@@ -217,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
217
216
  version: '0'
218
217
  requirements: []
219
218
  rubyforge_project:
220
- rubygems_version: 2.0.14
219
+ rubygems_version: 2.0.3
221
220
  signing_key:
222
221
  specification_version: 4
223
222
  summary: OpenStack Foreman Installer
@@ -225,6 +224,6 @@ test_files:
225
224
  - test/test_helper.rb
226
225
  - test/staypuft_test.rb
227
226
  - test/unit/staypuft_test.rb
228
- - test/test_plugin_helper.rb
229
- - test/factories/staypuft_factories.rb
230
227
  - test/integration/navigation_test.rb
228
+ - test/factories/staypuft_factories.rb
229
+ - test/test_plugin_helper.rb
@@ -1,5 +0,0 @@
1
- class AddOrchestrationToStaypuftRole < ActiveRecord::Migration
2
- def change
3
- add_column :staypuft_roles, :orchestration, :string
4
- end
5
- end