staypuft 0.5.10 → 0.5.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/app/assets/javascripts/staypuft/staypuft.js +6 -0
- data/app/controllers/staypuft/bonds_controller.rb +1 -1
- data/app/lib/actions/staypuft/deployment/deploy.rb +1 -1
- data/app/lib/actions/staypuft/hostgroup/ordered_deploy.rb +44 -22
- data/app/lib/staypuft/seeder.rb +2 -0
- data/app/models/staypuft/deployment/glance_service.rb +1 -1
- data/app/views/staypuft/interfaces/_drop_zone.html.erb +1 -1
- data/app/views/staypuft/steps/services_configuration.html.erb +1 -0
- data/lib/staypuft/version.rb +1 -1
- metadata +152 -152
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
ODQ2ODI4MzZmNDc5ZGUwOTk2NTJiN2FkNjc5NmIzYjhhMDVkZDE3MQ==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: cfd9909dd712c0201b515446f4951be152eee735
|
4
|
+
data.tar.gz: 7c7c028f24023a15f0e4fc7cc642b1cb1509dca3
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
OWRhNDYzMDEwYmFjZTA1NjA1MmY4YWFmYjZmZDJjMzgyZmIxNzQyMTJiOTM5
|
11
|
-
ZTM1MmJkZGM4MjcwODg2ZGJlZDUzMjc2ZTIxNGU0YTg0Y2EzOTk=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MzZjYmRhOGQxNzI3OWIzYmZlNTQyYzc5ODMwMWUwMGNjZmNmOWYxY2ViYjlm
|
14
|
-
YTAyYjgxNmVhOWQwMmY2YzM5MzhlMWE0YTI2MWM4YWMwNmQwMzJkYTE5M2Rj
|
15
|
-
NjYyNzA3NmRkYTg2OTkxMWEzZWQzYjk0Nzc0YTVlMGZkYmZmNTE=
|
6
|
+
metadata.gz: b829c2dd39969931c524737861114872bed3deb45b432e1a6eb9077cd1e6d376f3cdb01828d180e39b9ffdd4177d8fd2258f9660c2b5d056dcee47f3ec8fdde0
|
7
|
+
data.tar.gz: 4f882c8cb18b443546a518d6b66f8a1d84c249c7896e8a8b45edd8fffc658d84c9f07d1445cc23150d896b02695231788a9777d5fe514d79b5f51a0f935a4f4e
|
@@ -166,6 +166,12 @@ $('.neutron_ml2_mechanisms').parent().parent().removeClass('col-md-6').addClass(
|
|
166
166
|
} else {
|
167
167
|
$('.glance-controller-warning').hide();
|
168
168
|
}
|
169
|
+
if($("#staypuft_deployment_glance_driver_backend_ceph").is(":checked")) {
|
170
|
+
$('.glance-ceph-warning').find(".replace").html(" (Ceph)");
|
171
|
+
$('.glance-ceph-warning').show();
|
172
|
+
} else {
|
173
|
+
$('.glance-ceph-warning').hide();
|
174
|
+
}
|
169
175
|
}
|
170
176
|
if(which_warning == "cinder") {
|
171
177
|
if($("#staypuft_deployment_cinder_backend_lvm").is(":checked")) {
|
@@ -92,7 +92,7 @@ module Staypuft
|
|
92
92
|
end
|
93
93
|
|
94
94
|
def find_hosts
|
95
|
-
@hosts = Host::Managed.where(:id => params[:host_ids]
|
95
|
+
@hosts = Host::Managed.where(:id => params[:host_ids]).includes(:interfaces)
|
96
96
|
@host = @hosts.first
|
97
97
|
@interfaces = @host.interfaces.where("type <> 'Nic::BMC'").order(:identifier).where(['(virtual = ? OR type = ?)', false, 'Nic::Bond'])
|
98
98
|
@deployment = Deployment.find(params[:deployment_id])
|
@@ -23,7 +23,7 @@ module Actions
|
|
23
23
|
|
24
24
|
input.update id: deployment.id, name: deployment.name
|
25
25
|
plan_action Hostgroup::OrderedDeploy,
|
26
|
-
deployment.child_hostgroups.deploy_order.to_a,
|
26
|
+
deployment.child_hostgroups.includes(:role).deploy_order.to_a,
|
27
27
|
hosts_to_deploy,
|
28
28
|
hosts_to_provision
|
29
29
|
lock! deployment
|
@@ -44,34 +44,56 @@ module Actions
|
|
44
44
|
input[:hostgroups].update hostgroup.id => { name: hostgroup.name, hosts: {} }
|
45
45
|
hostgroup_hosts = (hostgroup.hosts & hosts_to_deploy_filter)
|
46
46
|
|
47
|
-
|
48
|
-
|
49
|
-
hostgroup_hosts
|
50
|
-
|
51
|
-
|
52
|
-
plan_action Host::WaitUntilReady, host
|
53
|
-
plan_action Host::Update, host, :environment => nil
|
54
|
-
end
|
47
|
+
case hostgroup.role.orchestration
|
48
|
+
when 'leader'
|
49
|
+
configure_hosts_leader(hostgroup, hostgroup_hosts)
|
50
|
+
else
|
51
|
+
configure_hosts_concurrent(hostgroup, hostgroup_hosts)
|
55
52
|
end
|
53
|
+
end
|
56
54
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
55
|
+
enable_puppet_agent hosts_to_deploy
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def configure_hosts_concurrent(hostgroup, hostgroup_hosts)
|
60
|
+
return if hostgroup_hosts.empty?
|
61
|
+
|
62
|
+
# wait till all hosts are ready
|
63
|
+
concurrence do
|
64
|
+
hostgroup_hosts.each do |host|
|
65
|
+
input[:hostgroups][hostgroup.id][:hosts].update host.id => host.name
|
66
|
+
|
67
|
+
plan_action Host::WaitUntilReady, host
|
68
|
+
plan_action Host::Update, host, :environment => nil
|
69
|
+
end
|
70
|
+
end
|
65
71
|
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
72
|
+
# run puppet twice without checking for puppet success
|
73
|
+
2.times do
|
74
|
+
concurrence do
|
75
|
+
hostgroup_hosts.each do |host|
|
76
|
+
plan_action Host::Deploy, host, false
|
71
77
|
end
|
72
78
|
end
|
79
|
+
end
|
73
80
|
|
74
|
-
|
81
|
+
# run puppet once and check it succeeded
|
82
|
+
concurrence do
|
83
|
+
hostgroup_hosts.each do |host|
|
84
|
+
plan_action Host::Deploy, host
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def configure_hosts_leader(hostgroup, hostgroup_hosts)
|
90
|
+
return if hostgroup_hosts.empty?
|
91
|
+
|
92
|
+
leader_host, *rest_of_hosts = hostgroup_hosts
|
93
|
+
|
94
|
+
sequence do
|
95
|
+
configure_hosts_concurrent(hostgroup, [leader_host])
|
96
|
+
configure_hosts_concurrent(hostgroup, rest_of_hosts)
|
75
97
|
end
|
76
98
|
end
|
77
99
|
|
data/app/lib/staypuft/seeder.rb
CHANGED
@@ -267,6 +267,7 @@ module Staypuft
|
|
267
267
|
neutron_network_device_mtu = { :string => '<%= @host.deployment.neutron.compute_network_device_mtu %>' }
|
268
268
|
|
269
269
|
# Glance
|
270
|
+
glance = { :string => '<%= @host.deployment.glance.ceph_backend? ? "false" : "true" %>'}
|
270
271
|
backend = { :string => '<%= @host.deployment.glance.backend %>' }
|
271
272
|
pcmk_fs_type = { :string => '<%= @host.deployment.glance.pcmk_fs_type %>' }
|
272
273
|
pcmk_fs_device = { :string => '<%= @host.deployment.glance.pcmk_fs_device %>' }
|
@@ -409,6 +410,7 @@ module Staypuft
|
|
409
410
|
'ceph_osd_journal_size' => ceph_osd_journal_size,
|
410
411
|
'cinder_db_password' => cinder_db_pw,
|
411
412
|
'cinder_user_password' => cinder_user_pw,
|
413
|
+
'include_glance' => glance,
|
412
414
|
'glance_db_password' => glance_db_pw,
|
413
415
|
'glance_user_password' => glance_user_pw,
|
414
416
|
'heat_db_password' => heat_db_pw,
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<div class="panel panel-default interface" id="<%= identifier %>-interface" data-interface="<%= identifier %>">
|
2
2
|
<div class="panel-heading clearfix">
|
3
3
|
<% if bond_mode %>
|
4
|
-
|
4
|
+
<div id="bonding_mode" class="dropdown pull-right" data-path="<%= change_mode_deployment_bond_path(:id => identifier, :host_ids => hosts.map(&:id)) %>">
|
5
5
|
<%= _('Bonding Mode:') %>
|
6
6
|
<button class="btn btn-default btn-sm dropdown-toggle" type="button" data-toggle="dropdown">
|
7
7
|
<%= bond_mode %>
|
@@ -29,6 +29,7 @@
|
|
29
29
|
<div class="tab-pane" id="<%= service_name %>">
|
30
30
|
<h3><%= _("%s Service Configuration") % service_name.to_s.capitalize %></h3>
|
31
31
|
<div class="<%= "%s-controller-warning" % service_name.to_s %> alert alert-warning base in fade alert-dismissable hide"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button><h4 class="alert-heading"><%= _("Warning") %></h4><li><%= _("Only one controller should be assigned when using this option.") %><span class="replace"></span></li></div>
|
32
|
+
<div class="<%= "%s-ceph-warning" % service_name.to_s %> alert alert-warning base in fade alert-dismissable hide"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">x</button><h4 class="alert-heading"><%= _("Warning") %></h4><li><%= _("Manual steps are required when deploying with Ceph as a backend for #{service_name.to_s}. Please see documentation for additional steps.") %><span class="replace"></span></li></div>
|
32
33
|
<%= render partial: service_name.to_s, locals: {f: f}%>
|
33
34
|
</div>
|
34
35
|
<% end %>
|
data/lib/staypuft/version.rb
CHANGED
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.5.
|
4
|
+
version: 0.5.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Staypuft team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01-
|
11
|
+
date: 2015-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: foreman-tasks
|
@@ -42,28 +42,28 @@ dependencies:
|
|
42
42
|
name: wicked
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - '>='
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - '>='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: deface
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
@@ -84,14 +84,14 @@ dependencies:
|
|
84
84
|
name: ipaddress
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- -
|
87
|
+
- - '>='
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '0'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- -
|
94
|
+
- - '>='
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
description: OpenStack Foreman Installer Plugin
|
@@ -101,198 +101,198 @@ executables: []
|
|
101
101
|
extensions: []
|
102
102
|
extra_rdoc_files: []
|
103
103
|
files:
|
104
|
-
-
|
105
|
-
- README.md
|
106
|
-
- Rakefile
|
104
|
+
- app/assets/javascripts/staypuft/nics_assignment.js
|
107
105
|
- app/assets/javascripts/staypuft/host_edit.js
|
108
106
|
- app/assets/javascripts/staypuft/new_subnet.js
|
109
|
-
- app/assets/javascripts/staypuft/nics_assignment.js
|
110
107
|
- app/assets/javascripts/staypuft/staypuft.js
|
111
108
|
- app/assets/javascripts/staypuft/subnets_assignment.js
|
112
109
|
- app/assets/stylesheets/staypuft/bootstrap_and_overrides.css.scss
|
113
110
|
- app/assets/stylesheets/staypuft/foreman_helper.scss
|
114
111
|
- app/assets/stylesheets/staypuft/staypuft.css.scss
|
115
112
|
- app/controllers/staypuft/application_controller.rb
|
116
|
-
- app/controllers/staypuft/
|
113
|
+
- app/controllers/staypuft/subnet_typings_controller.rb
|
114
|
+
- app/controllers/staypuft/interface_assignments_controller.rb
|
115
|
+
- app/controllers/staypuft/steps_controller.rb
|
117
116
|
- app/controllers/staypuft/concerns/hosts_api_extensions.rb
|
118
117
|
- app/controllers/staypuft/concerns/hosts_controller_extensions.rb
|
119
118
|
- 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
|
123
119
|
- app/controllers/staypuft/subnets_controller.rb
|
124
|
-
- app/
|
125
|
-
- app/
|
126
|
-
- app/
|
127
|
-
- app/
|
128
|
-
- app/
|
129
|
-
- app/
|
130
|
-
- app/
|
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
|
120
|
+
- app/controllers/staypuft/bonds_controller.rb
|
121
|
+
- app/models/staypuft/fencing.rb
|
122
|
+
- app/models/staypuft/simple_subnet.rb
|
123
|
+
- app/models/staypuft/layout_role.rb
|
124
|
+
- app/models/staypuft/interface_assigner.rb
|
125
|
+
- app/models/staypuft/role.rb
|
126
|
+
- app/models/staypuft/deployment/vlan_range_values_validator.rb
|
159
127
|
- app/models/staypuft/deployment/ceph_service.rb
|
128
|
+
- app/models/staypuft/deployment/nova_service.rb
|
160
129
|
- 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
|
161
133
|
- app/models/staypuft/deployment/cinder_service/equallogic.rb
|
134
|
+
- app/models/staypuft/deployment/neutron_service.rb
|
135
|
+
- app/models/staypuft/deployment/ip_check.rb
|
162
136
|
- app/models/staypuft/deployment/glance_service.rb
|
137
|
+
- app/models/staypuft/deployment/attribute_param_storage.rb
|
163
138
|
- 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
|
169
139
|
- app/models/staypuft/deployment/passwords.rb
|
170
|
-
- app/models/staypuft/deployment/vlan_range_values_validator.rb
|
171
|
-
- app/models/staypuft/deployment_role_hostgroup.rb
|
172
140
|
- app/models/staypuft/deployment_vip_nic.rb
|
173
|
-
- app/models/staypuft/
|
174
|
-
- app/models/staypuft/
|
141
|
+
- app/models/staypuft/service_class.rb
|
142
|
+
- app/models/staypuft/subnet_type.rb
|
175
143
|
- app/models/staypuft/layout.rb
|
176
|
-
- app/models/staypuft/
|
177
|
-
- app/models/staypuft/
|
178
|
-
- app/models/staypuft/
|
179
|
-
- app/models/staypuft/
|
144
|
+
- app/models/staypuft/concerns/hostgroup_extensions.rb
|
145
|
+
- app/models/staypuft/concerns/puppetclass_extensions.rb
|
146
|
+
- app/models/staypuft/concerns/nic_fencing_extensions.rb
|
147
|
+
- app/models/staypuft/concerns/host_details_helper.rb
|
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
|
180
154
|
- app/models/staypuft/role_service.rb
|
181
155
|
- app/models/staypuft/service.rb
|
182
|
-
- app/models/staypuft/
|
183
|
-
- app/models/staypuft/
|
184
|
-
- app/models/staypuft/subnet_type.rb
|
185
|
-
- app/models/staypuft/subnet_typing.rb
|
156
|
+
- app/models/staypuft/role_class.rb
|
157
|
+
- app/models/staypuft/layout_subnet_type.rb
|
186
158
|
- app/models/staypuft/vip_nic.rb
|
159
|
+
- app/models/staypuft/deployment.rb
|
160
|
+
- app/models/staypuft/subnet_typing.rb
|
161
|
+
- app/models/staypuft/deployment_role_hostgroup.rb
|
162
|
+
- app/models/setting/staypuft_provisioning.rb
|
187
163
|
- app/overrides/customize_foreman_tasks_show_page.rb
|
164
|
+
- app/overrides/select_multiple_systems_hostgroup.rb
|
188
165
|
- app/overrides/foreman_hosts_edit.rb
|
189
|
-
- app/overrides/hide_subscription_manager_passwords.rb
|
190
166
|
- app/overrides/hosts_edit_subnet_types.rb
|
191
|
-
- app/overrides/
|
192
|
-
- app/
|
167
|
+
- app/overrides/hide_subscription_manager_passwords.rb
|
168
|
+
- app/lib/actions/staypuft/hostgroup/ordered_deploy.rb
|
169
|
+
- app/lib/actions/staypuft/deployment/populate.rb
|
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
|
193
186
|
- app/views/hosts/_new_nic_fields.html.erb
|
187
|
+
- app/views/hosts/_fencing.html.erb
|
194
188
|
- app/views/hosts/_primary_interface_subnet.html.erb
|
195
|
-
- app/views/
|
189
|
+
- app/views/staypuft/steps/_nova.html.erb
|
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
|
196
207
|
- app/views/staypuft/bonds/add_slave.js.erb
|
197
208
|
- app/views/staypuft/bonds/create.js.erb
|
198
|
-
- app/views/staypuft/
|
209
|
+
- app/views/staypuft/subnet_typings/destroy.js.erb
|
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
|
199
225
|
- app/views/staypuft/deployments/_advanced_configuration.html.erb
|
200
|
-
- app/views/staypuft/deployments/_assigned_hosts.html.erb
|
201
226
|
- app/views/staypuft/deployments/_assigned_hosts_table.html.erb
|
202
|
-
- app/views/staypuft/deployments/
|
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
|
227
|
+
- app/views/staypuft/deployments/index.html.erb
|
207
228
|
- app/views/staypuft/deployments/_deployment_overview.html.erb
|
208
|
-
- app/views/staypuft/deployments/
|
229
|
+
- app/views/staypuft/deployments/_param_field.html.erb
|
230
|
+
- app/views/staypuft/deployments/_host_head_row.html.erb
|
209
231
|
- app/views/staypuft/deployments/_deployment_progress_page_header.html.erb
|
210
|
-
- app/views/staypuft/deployments/_deployment_show_header.html.erb
|
211
|
-
- app/views/staypuft/deployments/_deployment_summary.html.erb
|
212
|
-
- app/views/staypuft/deployments/_empty_hosts.html.erb
|
213
|
-
- app/views/staypuft/deployments/_free_hosts.html.erb
|
214
232
|
- 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
233
|
- app/views/staypuft/deployments/_hosts_filter.html.erb
|
218
|
-
- app/views/staypuft/deployments/
|
234
|
+
- 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
|
+
- app/views/staypuft/deployments/_free_hosts.html.erb
|
219
242
|
- app/views/staypuft/deployments/_hosts_table.html.erb
|
243
|
+
- app/views/staypuft/deployments/_deployment_show_header.html.erb
|
244
|
+
- app/views/staypuft/deployments/_hosts_header.html.erb
|
245
|
+
- app/views/staypuft/deployments/_deployment_access_all_details_dialogue.html.erb
|
246
|
+
- app/views/staypuft/deployments/_deployment_progress_bar.html.erb
|
220
247
|
- app/views/staypuft/deployments/_import_form.html.erb
|
221
|
-
- app/views/staypuft/deployments/
|
222
|
-
- app/views/staypuft/deployments/
|
223
|
-
- app/views/
|
224
|
-
- app/
|
225
|
-
- app/
|
226
|
-
- app/
|
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
|
257
|
-
- config/routes.rb
|
248
|
+
- app/views/staypuft/deployments/_deployment_summary.html.erb
|
249
|
+
- app/views/staypuft/deployments/_deployment_networking.html.erb
|
250
|
+
- app/views/nic/_subnet_id_field.html.erb
|
251
|
+
- app/helpers/staypuft/hosts_helper.rb
|
252
|
+
- app/helpers/staypuft/deployments_helper.rb
|
253
|
+
- app/helpers/staypuft/application_helper.rb
|
258
254
|
- config/staypuft.local.rb
|
259
|
-
-
|
260
|
-
- db/
|
255
|
+
- config/routes.rb
|
256
|
+
- db/seeds.rb
|
257
|
+
- db/migrate/20140701075033_create_layout_subnet.rb
|
261
258
|
- db/migrate/20140310023613_create_staypuft_roles.rb
|
262
|
-
- db/migrate/20140310174152_create_staypuft_layout_roles.rb
|
263
|
-
- db/migrate/20140310194221_create_staypuft_services.rb
|
264
259
|
- db/migrate/20140310203855_create_staypuft_role_services.rb
|
265
|
-
- db/migrate/
|
266
|
-
- db/migrate/
|
267
|
-
- db/migrate/
|
268
|
-
- db/migrate/
|
269
|
-
- db/migrate/
|
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
|
263
|
+
- db/migrate/20140309021811_create_staypuft_layouts.rb
|
264
|
+
- db/migrate/20140310174152_create_staypuft_layout_roles.rb
|
270
265
|
- db/migrate/20140318163222_add_deploy_order_to_staypuft_layout_role.rb
|
271
|
-
- db/migrate/
|
266
|
+
- db/migrate/20140825164900_add_orchestration_to_staypuft_role.rb
|
272
267
|
- db/migrate/20140326032027_drop_staypuft_hostgroup_roles.rb
|
273
|
-
- db/migrate/20140507103716_add_form_step_to_staypuft_deployment.rb
|
274
|
-
- db/migrate/20140513124807_change_column_default_form_step_on_staypuft_deployment.rb
|
275
|
-
- db/migrate/20140602121501_add_amqp_provider_to_staypuft_deployment.rb
|
276
268
|
- db/migrate/20140623142500_remove_amqp_provider_from_staypuft_deployment.rb
|
277
|
-
- db/migrate/
|
278
|
-
- db/migrate/
|
279
|
-
- db/migrate/
|
280
|
-
- db/migrate/
|
269
|
+
- db/migrate/20141009064907_add_custom_repos_to_deployment.rb
|
270
|
+
- db/migrate/20140513124807_change_column_default_form_step_on_staypuft_deployment.rb
|
271
|
+
- db/migrate/20140312050615_create_staypuft_role_classes.rb
|
272
|
+
- db/migrate/20140310004533_create_staypuft_deployments.rb
|
273
|
+
- db/migrate/20140312050001_create_staypuft_hostgroup_roles.rb
|
281
274
|
- 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
|
282
277
|
- db/migrate/20141003223000_add_validation_to_subnet_types.rb
|
283
|
-
- db/migrate/
|
278
|
+
- db/migrate/20140312044533_create_staypuft_deployment_role_hostgroups.rb
|
279
|
+
- db/migrate/20140315031754_add_networking_to_staypuft_layout.rb
|
280
|
+
- db/migrate/20140507103716_add_form_step_to_staypuft_deployment.rb
|
284
281
|
- db/migrate/20141107144800_create_staypuft_deployment_vip_nics.rb
|
285
|
-
- db/
|
282
|
+
- db/migrate/20140310194221_create_staypuft_services.rb
|
286
283
|
- lib/staypuft.rb
|
287
284
|
- lib/staypuft/engine.rb
|
288
285
|
- lib/staypuft/version.rb
|
289
286
|
- lib/tasks/staypuft_tasks.rake
|
290
|
-
-
|
291
|
-
-
|
292
|
-
-
|
287
|
+
- LICENSE
|
288
|
+
- Rakefile
|
289
|
+
- README.md
|
293
290
|
- test/test_helper.rb
|
294
|
-
- test/
|
291
|
+
- test/staypuft_test.rb
|
295
292
|
- test/unit/staypuft_test.rb
|
293
|
+
- test/test_plugin_helper.rb
|
294
|
+
- test/factories/staypuft_factories.rb
|
295
|
+
- test/integration/navigation_test.rb
|
296
296
|
homepage: https://github.com/theforeman/staypuft
|
297
297
|
licenses:
|
298
298
|
- GPL-3.0+
|
@@ -303,24 +303,24 @@ require_paths:
|
|
303
303
|
- lib
|
304
304
|
required_ruby_version: !ruby/object:Gem::Requirement
|
305
305
|
requirements:
|
306
|
-
- -
|
306
|
+
- - '>='
|
307
307
|
- !ruby/object:Gem::Version
|
308
308
|
version: '0'
|
309
309
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
310
310
|
requirements:
|
311
|
-
- -
|
311
|
+
- - '>='
|
312
312
|
- !ruby/object:Gem::Version
|
313
313
|
version: '0'
|
314
314
|
requirements: []
|
315
315
|
rubyforge_project:
|
316
|
-
rubygems_version: 2.
|
316
|
+
rubygems_version: 2.0.14
|
317
317
|
signing_key:
|
318
318
|
specification_version: 4
|
319
319
|
summary: OpenStack Foreman Installer
|
320
320
|
test_files:
|
321
|
-
- test/unit/staypuft_test.rb
|
322
321
|
- test/test_helper.rb
|
323
322
|
- test/staypuft_test.rb
|
324
|
-
- test/
|
323
|
+
- test/unit/staypuft_test.rb
|
325
324
|
- test/test_plugin_helper.rb
|
326
325
|
- test/factories/staypuft_factories.rb
|
326
|
+
- test/integration/navigation_test.rb
|