staypuft 0.5.8 → 0.5.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/staypuft/deployment/neutron_service.rb +1 -1
- data/lib/staypuft/version.rb +1 -1
- metadata +145 -145
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a166ecbcf260428b5052e08dca812bb69f9c0947
|
4
|
+
data.tar.gz: 69ba898b358d057ca41457132284c722cf1cfb90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09c8ab9eef11da64ad40897e369d42eac9554d44f177c1a5bcbbfeb7f8a846804e0ed570656f3ff02ab8980b049a00e2c720c22661b5e3df1d90ea7a39c732d0
|
7
|
+
data.tar.gz: 1710dcc176ec1cdf96b8fdb3c831e3fa51d66e860a42f392fe72091887c57686d14c80ab998fbaf6a554962d3998e02a7ee6dafdd6165596eb03f8a99b64ed8a
|
@@ -95,7 +95,7 @@ module Staypuft
|
|
95
95
|
def compute_network_device_mtu
|
96
96
|
# Note: This should only be used for setting the puppet params, not for the
|
97
97
|
# physical interfaces
|
98
|
-
self.enable_tunneling? ? self.network_device_mtu - 50 : self.network_device_mtu
|
98
|
+
(self.enable_tunneling? && self.network_device_mtu.present?) ? "#{self.network_device_mtu.to_i - 50}" : self.network_device_mtu
|
99
99
|
end
|
100
100
|
|
101
101
|
class Jail < Safemode::Jail
|
data/lib/staypuft/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: staypuft
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Staypuft team
|
@@ -101,198 +101,198 @@ executables: []
|
|
101
101
|
extensions: []
|
102
102
|
extra_rdoc_files: []
|
103
103
|
files:
|
104
|
-
-
|
104
|
+
- LICENSE
|
105
|
+
- README.md
|
106
|
+
- Rakefile
|
105
107
|
- app/assets/javascripts/staypuft/host_edit.js
|
106
108
|
- app/assets/javascripts/staypuft/new_subnet.js
|
109
|
+
- app/assets/javascripts/staypuft/nics_assignment.js
|
107
110
|
- app/assets/javascripts/staypuft/staypuft.js
|
108
111
|
- app/assets/javascripts/staypuft/subnets_assignment.js
|
109
112
|
- app/assets/stylesheets/staypuft/bootstrap_and_overrides.css.scss
|
110
113
|
- app/assets/stylesheets/staypuft/foreman_helper.scss
|
111
114
|
- app/assets/stylesheets/staypuft/staypuft.css.scss
|
112
115
|
- app/controllers/staypuft/application_controller.rb
|
113
|
-
- app/controllers/staypuft/
|
114
|
-
- app/controllers/staypuft/interface_assignments_controller.rb
|
115
|
-
- app/controllers/staypuft/steps_controller.rb
|
116
|
+
- app/controllers/staypuft/bonds_controller.rb
|
116
117
|
- app/controllers/staypuft/concerns/hosts_api_extensions.rb
|
117
118
|
- app/controllers/staypuft/concerns/hosts_controller_extensions.rb
|
118
119
|
- app/controllers/staypuft/deployments_controller.rb
|
120
|
+
- app/controllers/staypuft/interface_assignments_controller.rb
|
121
|
+
- app/controllers/staypuft/steps_controller.rb
|
122
|
+
- app/controllers/staypuft/subnet_typings_controller.rb
|
119
123
|
- app/controllers/staypuft/subnets_controller.rb
|
120
|
-
- app/
|
121
|
-
- app/
|
122
|
-
- app/
|
123
|
-
- app/
|
124
|
-
- app/
|
125
|
-
- app/
|
126
|
-
- app/
|
124
|
+
- app/helpers/staypuft/application_helper.rb
|
125
|
+
- app/helpers/staypuft/deployments_helper.rb
|
126
|
+
- app/helpers/staypuft/hosts_helper.rb
|
127
|
+
- app/lib/actions/staypuft/deployment/deploy.rb
|
128
|
+
- app/lib/actions/staypuft/deployment/populate.rb
|
129
|
+
- app/lib/actions/staypuft/host/assert_report_success.rb
|
130
|
+
- app/lib/actions/staypuft/host/create.rb
|
131
|
+
- app/lib/actions/staypuft/host/deploy.rb
|
132
|
+
- app/lib/actions/staypuft/host/puppet_run.rb
|
133
|
+
- app/lib/actions/staypuft/host/report_wait.rb
|
134
|
+
- app/lib/actions/staypuft/host/trigger_provisioning.rb
|
135
|
+
- app/lib/actions/staypuft/host/update.rb
|
136
|
+
- app/lib/actions/staypuft/host/wait_until_provisioned.rb
|
137
|
+
- app/lib/actions/staypuft/host/wait_until_ready.rb
|
138
|
+
- app/lib/actions/staypuft/hostgroup/ordered_deploy.rb
|
139
|
+
- app/lib/actions/staypuft/middleware/as_current_user.rb
|
140
|
+
- app/lib/staypuft/deployment_param_exporter.rb
|
141
|
+
- app/lib/staypuft/deployment_param_importer.rb
|
142
|
+
- app/lib/staypuft/exception.rb
|
143
|
+
- app/lib/staypuft/network_query.rb
|
144
|
+
- app/lib/staypuft/seeder.rb
|
145
|
+
- app/models/setting/staypuft_provisioning.rb
|
146
|
+
- app/models/staypuft/concerns/environment_extensions.rb
|
147
|
+
- app/models/staypuft/concerns/host_details_helper.rb
|
148
|
+
- app/models/staypuft/concerns/host_fencing_extensions.rb
|
149
|
+
- app/models/staypuft/concerns/host_interface_management.rb
|
150
|
+
- app/models/staypuft/concerns/host_open_stack_affiliation.rb
|
151
|
+
- app/models/staypuft/concerns/host_orchestration_build_hook.rb
|
152
|
+
- app/models/staypuft/concerns/hostgroup_extensions.rb
|
153
|
+
- app/models/staypuft/concerns/lookup_key_extensions.rb
|
154
|
+
- app/models/staypuft/concerns/nic_fencing_extensions.rb
|
155
|
+
- app/models/staypuft/concerns/puppetclass_extensions.rb
|
156
|
+
- app/models/staypuft/deployment.rb
|
157
|
+
- app/models/staypuft/deployment/abstract_param_scope.rb
|
158
|
+
- app/models/staypuft/deployment/attribute_param_storage.rb
|
127
159
|
- app/models/staypuft/deployment/ceph_service.rb
|
128
|
-
- app/models/staypuft/deployment/nova_service.rb
|
129
160
|
- app/models/staypuft/deployment/cinder_service.rb
|
130
|
-
- app/models/staypuft/deployment/nfs_uri_validator.rb
|
131
|
-
- app/models/staypuft/deployment/abstract_param_scope.rb
|
132
|
-
- app/models/staypuft/deployment/neutron_service/cisconexus.rb
|
133
161
|
- app/models/staypuft/deployment/cinder_service/equallogic.rb
|
134
|
-
- app/models/staypuft/deployment/neutron_service.rb
|
135
|
-
- app/models/staypuft/deployment/ip_check.rb
|
136
162
|
- app/models/staypuft/deployment/glance_service.rb
|
137
|
-
- app/models/staypuft/deployment/attribute_param_storage.rb
|
138
163
|
- app/models/staypuft/deployment/ip_address_validator.rb
|
164
|
+
- app/models/staypuft/deployment/ip_check.rb
|
165
|
+
- app/models/staypuft/deployment/neutron_service.rb
|
166
|
+
- app/models/staypuft/deployment/neutron_service/cisconexus.rb
|
167
|
+
- app/models/staypuft/deployment/nfs_uri_validator.rb
|
168
|
+
- app/models/staypuft/deployment/nova_service.rb
|
139
169
|
- app/models/staypuft/deployment/passwords.rb
|
170
|
+
- app/models/staypuft/deployment/vlan_range_values_validator.rb
|
171
|
+
- app/models/staypuft/deployment_role_hostgroup.rb
|
140
172
|
- app/models/staypuft/deployment_vip_nic.rb
|
141
|
-
- app/models/staypuft/
|
142
|
-
- app/models/staypuft/
|
173
|
+
- app/models/staypuft/fencing.rb
|
174
|
+
- app/models/staypuft/interface_assigner.rb
|
143
175
|
- app/models/staypuft/layout.rb
|
144
|
-
- app/models/staypuft/
|
145
|
-
- app/models/staypuft/
|
146
|
-
- app/models/staypuft/
|
147
|
-
- app/models/staypuft/
|
148
|
-
- app/models/staypuft/concerns/environment_extensions.rb
|
149
|
-
- app/models/staypuft/concerns/host_interface_management.rb
|
150
|
-
- app/models/staypuft/concerns/host_orchestration_build_hook.rb
|
151
|
-
- app/models/staypuft/concerns/host_fencing_extensions.rb
|
152
|
-
- app/models/staypuft/concerns/lookup_key_extensions.rb
|
153
|
-
- app/models/staypuft/concerns/host_open_stack_affiliation.rb
|
176
|
+
- app/models/staypuft/layout_role.rb
|
177
|
+
- app/models/staypuft/layout_subnet_type.rb
|
178
|
+
- app/models/staypuft/role.rb
|
179
|
+
- app/models/staypuft/role_class.rb
|
154
180
|
- app/models/staypuft/role_service.rb
|
155
181
|
- app/models/staypuft/service.rb
|
156
|
-
- app/models/staypuft/
|
157
|
-
- app/models/staypuft/
|
158
|
-
- app/models/staypuft/
|
159
|
-
- app/models/staypuft/deployment.rb
|
182
|
+
- app/models/staypuft/service_class.rb
|
183
|
+
- app/models/staypuft/simple_subnet.rb
|
184
|
+
- app/models/staypuft/subnet_type.rb
|
160
185
|
- app/models/staypuft/subnet_typing.rb
|
161
|
-
- app/models/staypuft/
|
162
|
-
- app/models/setting/staypuft_provisioning.rb
|
186
|
+
- app/models/staypuft/vip_nic.rb
|
163
187
|
- app/overrides/customize_foreman_tasks_show_page.rb
|
164
|
-
- app/overrides/select_multiple_systems_hostgroup.rb
|
165
188
|
- app/overrides/foreman_hosts_edit.rb
|
166
|
-
- app/overrides/hosts_edit_subnet_types.rb
|
167
189
|
- app/overrides/hide_subscription_manager_passwords.rb
|
168
|
-
- app/
|
169
|
-
- app/
|
170
|
-
- app/lib/actions/staypuft/deployment/deploy.rb
|
171
|
-
- app/lib/actions/staypuft/host/assert_report_success.rb
|
172
|
-
- app/lib/actions/staypuft/host/update.rb
|
173
|
-
- app/lib/actions/staypuft/host/wait_until_ready.rb
|
174
|
-
- app/lib/actions/staypuft/host/puppet_run.rb
|
175
|
-
- app/lib/actions/staypuft/host/trigger_provisioning.rb
|
176
|
-
- app/lib/actions/staypuft/host/report_wait.rb
|
177
|
-
- app/lib/actions/staypuft/host/wait_until_provisioned.rb
|
178
|
-
- app/lib/actions/staypuft/host/deploy.rb
|
179
|
-
- app/lib/actions/staypuft/host/create.rb
|
180
|
-
- app/lib/actions/staypuft/middleware/as_current_user.rb
|
181
|
-
- app/lib/staypuft/network_query.rb
|
182
|
-
- app/lib/staypuft/deployment_param_importer.rb
|
183
|
-
- app/lib/staypuft/seeder.rb
|
184
|
-
- app/lib/staypuft/exception.rb
|
185
|
-
- app/lib/staypuft/deployment_param_exporter.rb
|
186
|
-
- app/views/hosts/_new_nic_fields.html.erb
|
190
|
+
- app/overrides/hosts_edit_subnet_types.rb
|
191
|
+
- app/overrides/select_multiple_systems_hostgroup.rb
|
187
192
|
- app/views/hosts/_fencing.html.erb
|
193
|
+
- app/views/hosts/_new_nic_fields.html.erb
|
188
194
|
- app/views/hosts/_primary_interface_subnet.html.erb
|
189
|
-
- app/views/
|
190
|
-
- app/views/staypuft/steps/services_overview.html.erb
|
191
|
-
- app/views/staypuft/steps/_neutron_cisco_nexus_form.html.erb
|
192
|
-
- app/views/staypuft/steps/network_configuration.html.erb
|
193
|
-
- app/views/staypuft/steps/_cinder_equallogic_form.html.erb
|
194
|
-
- app/views/staypuft/steps/_title.html.erb
|
195
|
-
- app/views/staypuft/steps/services_configuration.html.erb
|
196
|
-
- app/views/staypuft/steps/_neutron_ha.html.erb
|
197
|
-
- app/views/staypuft/steps/deployment_settings.html.erb
|
198
|
-
- app/views/staypuft/steps/_cinder.html.erb
|
199
|
-
- app/views/staypuft/steps/_nova_ha.html.erb
|
200
|
-
- app/views/staypuft/steps/_glance.html.erb
|
201
|
-
- app/views/staypuft/steps/_neutron.html.erb
|
202
|
-
- app/views/staypuft/steps/_wizard_form_buttons.html.erb
|
203
|
-
- app/views/staypuft/subnet_types/_subnet_type_pull.html.erb
|
204
|
-
- app/views/staypuft/layouts/staypuft.html.erb
|
205
|
-
- app/views/staypuft/layouts/application.html.erb
|
206
|
-
- app/views/staypuft/bonds/destroy.js.erb
|
195
|
+
- app/views/nic/_subnet_id_field.html.erb
|
207
196
|
- app/views/staypuft/bonds/add_slave.js.erb
|
208
197
|
- app/views/staypuft/bonds/create.js.erb
|
209
|
-
- app/views/staypuft/
|
210
|
-
- app/views/staypuft/subnet_typings/create.js.erb
|
211
|
-
- app/views/staypuft/subnet_typings/update.js.erb
|
212
|
-
- app/views/staypuft/subnets/new.html.erb
|
213
|
-
- app/views/staypuft/subnets/create.js.erb
|
214
|
-
- app/views/staypuft/subnets/_subnet_pull.html.erb
|
215
|
-
- app/views/staypuft/subnets/_form.html.erb
|
216
|
-
- app/views/staypuft/subnets/_drop_zone.html.erb
|
217
|
-
- app/views/staypuft/interfaces/_drop_zone.html.erb
|
218
|
-
- app/views/staypuft/interface_assignments/index.html.erb
|
219
|
-
- app/views/staypuft/interface_assignments/destroy.js.erb
|
220
|
-
- app/views/staypuft/interface_assignments/_interfaces.html.erb
|
221
|
-
- app/views/staypuft/interface_assignments/create.js.erb
|
222
|
-
- app/views/staypuft/interface_assignments/_nics_assignment.html.erb
|
223
|
-
- app/views/staypuft/interface_assignments/_nics_assignment_overview.html.erb
|
224
|
-
- app/views/staypuft/deployments/edit.html.erb
|
198
|
+
- app/views/staypuft/bonds/destroy.js.erb
|
225
199
|
- app/views/staypuft/deployments/_advanced_configuration.html.erb
|
200
|
+
- app/views/staypuft/deployments/_assigned_hosts.html.erb
|
226
201
|
- app/views/staypuft/deployments/_assigned_hosts_table.html.erb
|
227
|
-
- app/views/staypuft/deployments/
|
202
|
+
- app/views/staypuft/deployments/_deployed_hosts.html.erb
|
203
|
+
- app/views/staypuft/deployments/_deployed_hosts_table.html.erb
|
204
|
+
- app/views/staypuft/deployments/_deployment_access_all_details_dialogue.html.erb
|
205
|
+
- app/views/staypuft/deployments/_deployment_hosts.html.erb
|
206
|
+
- app/views/staypuft/deployments/_deployment_networking.html.erb
|
228
207
|
- app/views/staypuft/deployments/_deployment_overview.html.erb
|
229
|
-
- app/views/staypuft/deployments/
|
230
|
-
- app/views/staypuft/deployments/_host_head_row.html.erb
|
208
|
+
- app/views/staypuft/deployments/_deployment_progress_bar.html.erb
|
231
209
|
- app/views/staypuft/deployments/_deployment_progress_page_header.html.erb
|
232
|
-
- app/views/staypuft/deployments/
|
233
|
-
- app/views/staypuft/deployments/
|
210
|
+
- app/views/staypuft/deployments/_deployment_show_header.html.erb
|
211
|
+
- app/views/staypuft/deployments/_deployment_summary.html.erb
|
234
212
|
- app/views/staypuft/deployments/_empty_hosts.html.erb
|
235
|
-
- app/views/staypuft/deployments/_assigned_hosts.html.erb
|
236
|
-
- app/views/staypuft/deployments/_host_row.html.erb
|
237
|
-
- app/views/staypuft/deployments/_deployment_hosts.html.erb
|
238
|
-
- app/views/staypuft/deployments/show.html.erb
|
239
|
-
- app/views/staypuft/deployments/_deployed_hosts_table.html.erb
|
240
|
-
- app/views/staypuft/deployments/_deployed_hosts.html.erb
|
241
213
|
- app/views/staypuft/deployments/_free_hosts.html.erb
|
242
|
-
- app/views/staypuft/deployments/
|
243
|
-
- app/views/staypuft/deployments/
|
214
|
+
- app/views/staypuft/deployments/_free_hosts_table.html.erb
|
215
|
+
- app/views/staypuft/deployments/_host_head_row.html.erb
|
216
|
+
- app/views/staypuft/deployments/_host_row.html.erb
|
217
|
+
- app/views/staypuft/deployments/_hosts_filter.html.erb
|
244
218
|
- app/views/staypuft/deployments/_hosts_header.html.erb
|
245
|
-
- app/views/staypuft/deployments/
|
246
|
-
- app/views/staypuft/deployments/_deployment_progress_bar.html.erb
|
219
|
+
- app/views/staypuft/deployments/_hosts_table.html.erb
|
247
220
|
- app/views/staypuft/deployments/_import_form.html.erb
|
248
|
-
- app/views/staypuft/deployments/
|
249
|
-
- app/views/staypuft/deployments/
|
250
|
-
- app/views/
|
251
|
-
- app/
|
252
|
-
- app/
|
253
|
-
- app/
|
254
|
-
-
|
221
|
+
- app/views/staypuft/deployments/_param_field.html.erb
|
222
|
+
- app/views/staypuft/deployments/edit.html.erb
|
223
|
+
- app/views/staypuft/deployments/index.html.erb
|
224
|
+
- app/views/staypuft/deployments/show.html.erb
|
225
|
+
- app/views/staypuft/interface_assignments/_interfaces.html.erb
|
226
|
+
- app/views/staypuft/interface_assignments/_nics_assignment.html.erb
|
227
|
+
- app/views/staypuft/interface_assignments/_nics_assignment_overview.html.erb
|
228
|
+
- app/views/staypuft/interface_assignments/create.js.erb
|
229
|
+
- app/views/staypuft/interface_assignments/destroy.js.erb
|
230
|
+
- app/views/staypuft/interface_assignments/index.html.erb
|
231
|
+
- app/views/staypuft/interfaces/_drop_zone.html.erb
|
232
|
+
- app/views/staypuft/layouts/application.html.erb
|
233
|
+
- app/views/staypuft/layouts/staypuft.html.erb
|
234
|
+
- app/views/staypuft/steps/_cinder.html.erb
|
235
|
+
- app/views/staypuft/steps/_cinder_equallogic_form.html.erb
|
236
|
+
- app/views/staypuft/steps/_glance.html.erb
|
237
|
+
- app/views/staypuft/steps/_neutron.html.erb
|
238
|
+
- app/views/staypuft/steps/_neutron_cisco_nexus_form.html.erb
|
239
|
+
- app/views/staypuft/steps/_neutron_ha.html.erb
|
240
|
+
- app/views/staypuft/steps/_nova.html.erb
|
241
|
+
- app/views/staypuft/steps/_nova_ha.html.erb
|
242
|
+
- app/views/staypuft/steps/_title.html.erb
|
243
|
+
- app/views/staypuft/steps/_wizard_form_buttons.html.erb
|
244
|
+
- app/views/staypuft/steps/deployment_settings.html.erb
|
245
|
+
- app/views/staypuft/steps/network_configuration.html.erb
|
246
|
+
- app/views/staypuft/steps/services_configuration.html.erb
|
247
|
+
- app/views/staypuft/steps/services_overview.html.erb
|
248
|
+
- app/views/staypuft/subnet_types/_subnet_type_pull.html.erb
|
249
|
+
- app/views/staypuft/subnet_typings/create.js.erb
|
250
|
+
- app/views/staypuft/subnet_typings/destroy.js.erb
|
251
|
+
- app/views/staypuft/subnet_typings/update.js.erb
|
252
|
+
- app/views/staypuft/subnets/_drop_zone.html.erb
|
253
|
+
- app/views/staypuft/subnets/_form.html.erb
|
254
|
+
- app/views/staypuft/subnets/_subnet_pull.html.erb
|
255
|
+
- app/views/staypuft/subnets/create.js.erb
|
256
|
+
- app/views/staypuft/subnets/new.html.erb
|
255
257
|
- config/routes.rb
|
256
|
-
-
|
257
|
-
- db/migrate/20140701075033_create_layout_subnet.rb
|
258
|
-
- db/migrate/20140310023613_create_staypuft_roles.rb
|
259
|
-
- db/migrate/20140310203855_create_staypuft_role_services.rb
|
260
|
-
- db/migrate/20140701090256_create_staypuft_subnet_typings.rb
|
261
|
-
- db/migrate/20140701074900_create_subnet_type.rb
|
262
|
-
- db/migrate/20140602121501_add_amqp_provider_to_staypuft_deployment.rb
|
258
|
+
- config/staypuft.local.rb
|
263
259
|
- db/migrate/20140309021811_create_staypuft_layouts.rb
|
260
|
+
- db/migrate/20140310004533_create_staypuft_deployments.rb
|
261
|
+
- db/migrate/20140310023613_create_staypuft_roles.rb
|
264
262
|
- db/migrate/20140310174152_create_staypuft_layout_roles.rb
|
263
|
+
- db/migrate/20140310194221_create_staypuft_services.rb
|
264
|
+
- db/migrate/20140310203855_create_staypuft_role_services.rb
|
265
|
+
- db/migrate/20140312044533_create_staypuft_deployment_role_hostgroups.rb
|
266
|
+
- db/migrate/20140312050001_create_staypuft_hostgroup_roles.rb
|
267
|
+
- db/migrate/20140312050615_create_staypuft_role_classes.rb
|
268
|
+
- db/migrate/20140312051144_create_staypuft_service_classes.rb
|
269
|
+
- db/migrate/20140315031754_add_networking_to_staypuft_layout.rb
|
265
270
|
- db/migrate/20140318163222_add_deploy_order_to_staypuft_layout_role.rb
|
266
|
-
- db/migrate/
|
271
|
+
- db/migrate/20140325211410_add_role_to_staypuft_deployment_role_hostgroup.rb
|
267
272
|
- db/migrate/20140326032027_drop_staypuft_hostgroup_roles.rb
|
268
|
-
- db/migrate/
|
269
|
-
- db/migrate/20141009064907_add_custom_repos_to_deployment.rb
|
273
|
+
- db/migrate/20140507103716_add_form_step_to_staypuft_deployment.rb
|
270
274
|
- db/migrate/20140513124807_change_column_default_form_step_on_staypuft_deployment.rb
|
271
|
-
- db/migrate/
|
272
|
-
- db/migrate/
|
273
|
-
- db/migrate/
|
275
|
+
- db/migrate/20140602121501_add_amqp_provider_to_staypuft_deployment.rb
|
276
|
+
- db/migrate/20140623142500_remove_amqp_provider_from_staypuft_deployment.rb
|
277
|
+
- db/migrate/20140701074900_create_subnet_type.rb
|
278
|
+
- db/migrate/20140701075033_create_layout_subnet.rb
|
279
|
+
- db/migrate/20140701090256_create_staypuft_subnet_typings.rb
|
280
|
+
- db/migrate/20140825164900_add_orchestration_to_staypuft_role.rb
|
274
281
|
- db/migrate/20140831234000_add_required_to_subnet_types.rb
|
275
|
-
- db/migrate/20140325211410_add_role_to_staypuft_deployment_role_hostgroup.rb
|
276
|
-
- db/migrate/20140312051144_create_staypuft_service_classes.rb
|
277
282
|
- db/migrate/20141003223000_add_validation_to_subnet_types.rb
|
278
|
-
- db/migrate/
|
279
|
-
- db/migrate/20140315031754_add_networking_to_staypuft_layout.rb
|
280
|
-
- db/migrate/20140507103716_add_form_step_to_staypuft_deployment.rb
|
283
|
+
- db/migrate/20141009064907_add_custom_repos_to_deployment.rb
|
281
284
|
- db/migrate/20141107144800_create_staypuft_deployment_vip_nics.rb
|
282
|
-
- db/
|
285
|
+
- db/seeds.rb
|
283
286
|
- lib/staypuft.rb
|
284
287
|
- lib/staypuft/engine.rb
|
285
288
|
- lib/staypuft/version.rb
|
286
289
|
- lib/tasks/staypuft_tasks.rake
|
287
|
-
- LICENSE
|
288
|
-
- Rakefile
|
289
|
-
- README.md
|
290
|
-
- test/test_helper.rb
|
291
|
-
- test/staypuft_test.rb
|
292
|
-
- test/unit/staypuft_test.rb
|
293
|
-
- test/test_plugin_helper.rb
|
294
290
|
- test/factories/staypuft_factories.rb
|
295
291
|
- test/integration/navigation_test.rb
|
292
|
+
- test/staypuft_test.rb
|
293
|
+
- test/test_helper.rb
|
294
|
+
- test/test_plugin_helper.rb
|
295
|
+
- test/unit/staypuft_test.rb
|
296
296
|
homepage: https://github.com/theforeman/staypuft
|
297
297
|
licenses:
|
298
298
|
- GPL-3.0+
|
@@ -313,14 +313,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
313
313
|
version: '0'
|
314
314
|
requirements: []
|
315
315
|
rubyforge_project:
|
316
|
-
rubygems_version: 2.
|
316
|
+
rubygems_version: 2.2.2
|
317
317
|
signing_key:
|
318
318
|
specification_version: 4
|
319
319
|
summary: OpenStack Foreman Installer
|
320
320
|
test_files:
|
321
|
-
- test/test_helper.rb
|
322
|
-
- test/staypuft_test.rb
|
323
321
|
- test/unit/staypuft_test.rb
|
324
|
-
- test/test_plugin_helper.rb
|
325
|
-
- test/factories/staypuft_factories.rb
|
326
322
|
- test/integration/navigation_test.rb
|
323
|
+
- test/staypuft_test.rb
|
324
|
+
- test/factories/staypuft_factories.rb
|
325
|
+
- test/test_plugin_helper.rb
|
326
|
+
- test/test_helper.rb
|