staypuft 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -13
- data/app/controllers/staypuft/concerns/hosts_controller_extensions.rb +1 -1
- data/app/overrides/foreman_hosts_edit.rb +1 -1
- data/app/overrides/select_multiple_systems_hostgroup.rb +1 -1
- data/app/views/nic/_subnet_id_field.html.erb +0 -1
- data/app/views/staypuft/deployments/_deployment_access_all_details_dialogue.html.erb +7 -2
- data/lib/staypuft/version.rb +1 -1
- metadata +147 -147
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
OWYwYTdhNDhkYmZjMGVjNmUzMmM5YjM5NWViNDkxNDNkMDA1OWM1Mw==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 200eea37310bd77b1964704b5c045ae5cfa58b12
|
4
|
+
data.tar.gz: 1485d9ec0e6b3bdc580fa1e60e1e3e419af74525
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
OTM5NTU0Nzk2Yjk1Y2JlMGRkZDkwN2YwNDM4NDJhMjQ4NWI4ZjBlNmU2YzBj
|
11
|
-
MzMwNjVjMDllZGUxMzgwNTIzODdiN2Q1ZDUyYzNlNDRhZGQ5ZGI=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MjY0ZjVkZjVhNjBhYjVhMjkwMzU3NDdlMWJlMWUyNDFjODE0M2VjNWFhMDE4
|
14
|
-
NTU3NGU3YjdkYzRlMDM5YWVhYzEzMjg3ZWU1M2Q3OTdjNmFkYmMwYTQ5OGRm
|
15
|
-
ZjZhN2I1NjNkODRlMTMwNGQ1OWFmMmJjMjg3ZDBmMzljZGRiYjk=
|
6
|
+
metadata.gz: 77f67f77c16959b13f91b5b05fbdbc45c6c48240c71a70e978f762d0a5adb40ec4d4af55b7e44050ab8557e33717b9eb3823513d07b6156f07bd58bda150c495
|
7
|
+
data.tar.gz: 1ca7569587ae9188431963260b59c4deaf1b2822a87708d1c24e1fce55885d58b6d43895825bce36585ccdcea0494c9456792ba2f2a92894e661848f9d8f4665
|
@@ -19,7 +19,7 @@ module Staypuft::Concerns::HostsControllerExtensions
|
|
19
19
|
|
20
20
|
def check_openstack_hostgroup_multiple
|
21
21
|
if params["hostgroup"] and params["hostgroup"]["id"]
|
22
|
-
|
22
|
+
hostgroup_id = params["hostgroup"]["id"]
|
23
23
|
if openstack_hostgroup? hostgroup_id
|
24
24
|
error _('Invalid host group selected! Cannot select OpenStack deployment host group.')
|
25
25
|
redirect_to(select_multiple_hostgroup_hosts_path) and return
|
@@ -28,7 +28,7 @@ Deface::Override.new(:virtual_path => "hosts/_form",
|
|
28
28
|
:replace => "#{erb_tag}:contains(':hostgroup_id')",
|
29
29
|
:original => '04903c858c6f96ed5c015cac5960e02708d8fea8'
|
30
30
|
) do
|
31
|
-
" <%= select_f f, :hostgroup_id, accessible_hostgroups.reject { |hg| hg.to_label =~
|
31
|
+
" <%= select_f f, :hostgroup_id, accessible_hostgroups.reject { |hg| hg.to_label =~ /\#{Setting[:base_hostgroup]}\\/.*/ }, :id, :to_label,
|
32
32
|
{ :include_blank => true},
|
33
33
|
{ :onchange => 'hostgroup_changed(this);', :'data-host-id' => @host.id,
|
34
34
|
:'data-url' => (@host.new_record? || @host.type_changed?) ? process_hostgroup_hosts_path : hostgroup_or_environment_selected_hosts_path,
|
@@ -10,6 +10,6 @@ Deface::Override.new(:virtual_path => "hosts/select_multiple_hostgroup",
|
|
10
10
|
:replace => "#{erb_tag}:contains(':id')",
|
11
11
|
:original => '<%= selectable_f f, :id, [[_("Select host group"),"disabled"],[_("*Clear host group*"), "" ]] + Hostgroup.all.map{|h| [h.to_label, h.id]}.sort,{}, :onchange => "toggle_multiple_ok_button(this)" %>'
|
12
12
|
) do
|
13
|
-
" <%= selectable_f f, :id, [[_(\"Select host group\"),\"disabled\"],[_(\"*Clear host group*\"), \"\" ]] + Hostgroup.all.reject{ |hg| hg.to_label =~
|
13
|
+
" <%= selectable_f f, :id, [[_(\"Select host group\"),\"disabled\"],[_(\"*Clear host group*\"), \"\" ]] + Hostgroup.all.reject{ |hg| hg.to_label =~ /\#{Setting[:base_hostgroup]}\\/.*/ }.map{|h| [h.to_label, h.id]}.sort,{},
|
14
14
|
:onchange => \"toggle_multiple_ok_button(this)\" %>"
|
15
15
|
end
|
@@ -1,7 +1,6 @@
|
|
1
1
|
<%= select_f f, :subnet_id, accessible_subnets, :id, :to_label,
|
2
2
|
{ :include_blank => accessible_subnets.any? ? true : _("No subnets")},
|
3
3
|
{ :disabled => accessible_subnets.empty? ? true : false,
|
4
|
-
:help_inline => 'help_inline',
|
5
4
|
:class => 'interface_subnet',
|
6
5
|
'data-url' => freeip_subnets_path,
|
7
6
|
'data-types' => "#{list_subnet_types(f.object, accessible_subnets).to_json}" } %>
|
@@ -22,8 +22,13 @@
|
|
22
22
|
</div>
|
23
23
|
<% end %>
|
24
24
|
<% else %>
|
25
|
-
<%
|
26
|
-
|
25
|
+
<% [Staypuft::SubnetType::PUBLIC_API, Staypuft::SubnetType::MANAGEMENT, Staypuft::SubnetType::ADMIN_API].each do |subnet_type| %>
|
26
|
+
<div class="row">
|
27
|
+
<label class="col-sm-4 control-label text-muted"><%= "#{subnet_type}:" %></label>
|
28
|
+
<div class="col-sm-8">
|
29
|
+
<p class="form-control-static"><%= @deployment.network_query.controller_ips(subnet_type).first %></p>
|
30
|
+
</div>
|
31
|
+
</div>
|
27
32
|
<% end %>
|
28
33
|
<% end %>
|
29
34
|
</div>
|
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.4.
|
4
|
+
version: 0.4.3
|
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-10-
|
11
|
+
date: 2014-10-10 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
|
@@ -87,192 +87,192 @@ executables: []
|
|
87
87
|
extensions: []
|
88
88
|
extra_rdoc_files: []
|
89
89
|
files:
|
90
|
-
-
|
91
|
-
- README.md
|
92
|
-
- Rakefile
|
90
|
+
- app/assets/javascripts/staypuft/nics_assignment.js
|
93
91
|
- app/assets/javascripts/staypuft/host_edit.js
|
94
92
|
- app/assets/javascripts/staypuft/new_subnet.js
|
95
|
-
- app/assets/javascripts/staypuft/nics_assignment.js
|
96
93
|
- app/assets/javascripts/staypuft/staypuft.js
|
97
94
|
- app/assets/javascripts/staypuft/subnets_assignment.js
|
98
95
|
- app/assets/stylesheets/staypuft/bootstrap_and_overrides.css.scss
|
99
96
|
- app/assets/stylesheets/staypuft/foreman_helper.scss
|
100
97
|
- app/assets/stylesheets/staypuft/staypuft.css.scss
|
101
98
|
- app/controllers/staypuft/application_controller.rb
|
102
|
-
- app/controllers/staypuft/
|
99
|
+
- app/controllers/staypuft/subnet_typings_controller.rb
|
100
|
+
- app/controllers/staypuft/interface_assignments_controller.rb
|
101
|
+
- app/controllers/staypuft/steps_controller.rb
|
103
102
|
- app/controllers/staypuft/concerns/hosts_api_extensions.rb
|
104
103
|
- app/controllers/staypuft/concerns/hosts_controller_extensions.rb
|
105
104
|
- app/controllers/staypuft/deployments_controller.rb
|
106
|
-
- app/controllers/staypuft/interface_assignments_controller.rb
|
107
|
-
- app/controllers/staypuft/steps_controller.rb
|
108
|
-
- app/controllers/staypuft/subnet_typings_controller.rb
|
109
105
|
- app/controllers/staypuft/subnets_controller.rb
|
110
|
-
- app/
|
111
|
-
- app/
|
112
|
-
- app/
|
113
|
-
- app/
|
114
|
-
- app/
|
115
|
-
- app/
|
116
|
-
- app/
|
117
|
-
- app/
|
118
|
-
- app/lib/actions/staypuft/host/puppet_run.rb
|
119
|
-
- app/lib/actions/staypuft/host/wait_until_host_ready.rb
|
120
|
-
- app/lib/actions/staypuft/host/wait_until_installed.rb
|
121
|
-
- app/lib/actions/staypuft/hostgroup/deploy.rb
|
122
|
-
- app/lib/actions/staypuft/hostgroup/ordered_deploy.rb
|
123
|
-
- app/lib/actions/staypuft/middleware/as_current_user.rb
|
124
|
-
- app/lib/staypuft/deployment_param_exporter.rb
|
125
|
-
- app/lib/staypuft/deployment_param_importer.rb
|
126
|
-
- app/lib/staypuft/exception.rb
|
127
|
-
- app/lib/staypuft/network_query.rb
|
128
|
-
- app/lib/staypuft/seeder.rb
|
129
|
-
- app/models/setting/staypuft_provisioning.rb
|
130
|
-
- app/models/staypuft/concerns/environment_extensions.rb
|
131
|
-
- app/models/staypuft/concerns/host_details_helper.rb
|
132
|
-
- app/models/staypuft/concerns/host_fencing_extensions.rb
|
133
|
-
- app/models/staypuft/concerns/host_interface_management.rb
|
134
|
-
- app/models/staypuft/concerns/host_open_stack_affiliation.rb
|
135
|
-
- app/models/staypuft/concerns/host_orchestration_build_hook.rb
|
136
|
-
- app/models/staypuft/concerns/hostgroup_extensions.rb
|
137
|
-
- app/models/staypuft/concerns/lookup_key_extensions.rb
|
138
|
-
- app/models/staypuft/concerns/nic_fencing_extensions.rb
|
139
|
-
- app/models/staypuft/concerns/puppetclass_extensions.rb
|
140
|
-
- app/models/staypuft/concerns/subnet_ip_management.rb
|
141
|
-
- app/models/staypuft/concerns/vip_nic_scopes.rb
|
142
|
-
- app/models/staypuft/deployment.rb
|
143
|
-
- app/models/staypuft/deployment/abstract_param_scope.rb
|
144
|
-
- app/models/staypuft/deployment/attribute_param_storage.rb
|
106
|
+
- app/controllers/staypuft/bonds_controller.rb
|
107
|
+
- app/models/staypuft/fencing.rb
|
108
|
+
- app/models/staypuft/simple_subnet.rb
|
109
|
+
- app/models/staypuft/service/ui_params.rb
|
110
|
+
- app/models/staypuft/layout_role.rb
|
111
|
+
- app/models/staypuft/interface_assigner.rb
|
112
|
+
- app/models/staypuft/role.rb
|
113
|
+
- app/models/staypuft/deployment/vlan_range_values_validator.rb
|
145
114
|
- app/models/staypuft/deployment/ceph_service.rb
|
115
|
+
- app/models/staypuft/deployment/nova_service.rb
|
146
116
|
- app/models/staypuft/deployment/cinder_service.rb
|
117
|
+
- app/models/staypuft/deployment/abstract_param_scope.rb
|
118
|
+
- app/models/staypuft/deployment/neutron_service/cisconexus.rb
|
147
119
|
- app/models/staypuft/deployment/cinder_service/equallogic.rb
|
120
|
+
- app/models/staypuft/deployment/neutron_service.rb
|
148
121
|
- app/models/staypuft/deployment/glance_service.rb
|
122
|
+
- app/models/staypuft/deployment/attribute_param_storage.rb
|
149
123
|
- app/models/staypuft/deployment/ip_address_validator.rb
|
150
|
-
- app/models/staypuft/deployment/neutron_service.rb
|
151
|
-
- app/models/staypuft/deployment/neutron_service/cisconexus.rb
|
152
|
-
- app/models/staypuft/deployment/nova_service.rb
|
153
124
|
- app/models/staypuft/deployment/passwords.rb
|
154
|
-
- app/models/staypuft/
|
155
|
-
- app/models/staypuft/
|
156
|
-
- app/models/staypuft/fencing.rb
|
157
|
-
- app/models/staypuft/interface_assigner.rb
|
125
|
+
- app/models/staypuft/service_class.rb
|
126
|
+
- app/models/staypuft/subnet_type.rb
|
158
127
|
- app/models/staypuft/layout.rb
|
159
|
-
- app/models/staypuft/
|
160
|
-
- app/models/staypuft/
|
161
|
-
- app/models/staypuft/
|
162
|
-
- app/models/staypuft/
|
128
|
+
- app/models/staypuft/concerns/vip_nic_scopes.rb
|
129
|
+
- app/models/staypuft/concerns/hostgroup_extensions.rb
|
130
|
+
- app/models/staypuft/concerns/puppetclass_extensions.rb
|
131
|
+
- app/models/staypuft/concerns/nic_fencing_extensions.rb
|
132
|
+
- app/models/staypuft/concerns/host_details_helper.rb
|
133
|
+
- app/models/staypuft/concerns/subnet_ip_management.rb
|
134
|
+
- app/models/staypuft/concerns/environment_extensions.rb
|
135
|
+
- app/models/staypuft/concerns/host_interface_management.rb
|
136
|
+
- app/models/staypuft/concerns/host_orchestration_build_hook.rb
|
137
|
+
- app/models/staypuft/concerns/host_fencing_extensions.rb
|
138
|
+
- app/models/staypuft/concerns/lookup_key_extensions.rb
|
139
|
+
- app/models/staypuft/concerns/host_open_stack_affiliation.rb
|
163
140
|
- app/models/staypuft/role_service.rb
|
164
141
|
- app/models/staypuft/service.rb
|
165
|
-
- app/models/staypuft/
|
166
|
-
- app/models/staypuft/
|
167
|
-
- app/models/staypuft/
|
168
|
-
- app/models/staypuft/subnet_type.rb
|
142
|
+
- app/models/staypuft/role_class.rb
|
143
|
+
- app/models/staypuft/layout_subnet_type.rb
|
144
|
+
- app/models/staypuft/deployment.rb
|
169
145
|
- app/models/staypuft/subnet_typing.rb
|
146
|
+
- app/models/staypuft/deployment_role_hostgroup.rb
|
147
|
+
- app/models/setting/staypuft_provisioning.rb
|
148
|
+
- app/overrides/nic_base_form.rb
|
170
149
|
- app/overrides/customize_foreman_tasks_show_page.rb
|
150
|
+
- app/overrides/select_multiple_systems_hostgroup.rb
|
171
151
|
- app/overrides/foreman_hosts_edit.rb
|
172
152
|
- app/overrides/hide_subscription_manager_passwords.rb
|
173
|
-
- app/
|
174
|
-
- app/
|
153
|
+
- app/lib/actions/staypuft/hostgroup/ordered_deploy.rb
|
154
|
+
- app/lib/actions/staypuft/hostgroup/deploy.rb
|
155
|
+
- app/lib/actions/staypuft/deployment/populate.rb
|
156
|
+
- app/lib/actions/staypuft/deployment/deploy.rb
|
157
|
+
- app/lib/actions/staypuft/host/wait_until_host_ready.rb
|
158
|
+
- app/lib/actions/staypuft/host/puppet_run.rb
|
159
|
+
- app/lib/actions/staypuft/host/wait_until_installed.rb
|
160
|
+
- app/lib/actions/staypuft/host/build.rb
|
161
|
+
- app/lib/actions/staypuft/host/deploy.rb
|
162
|
+
- app/lib/actions/staypuft/host/create.rb
|
163
|
+
- app/lib/actions/staypuft/middleware/as_current_user.rb
|
164
|
+
- app/lib/staypuft/network_query.rb
|
165
|
+
- app/lib/staypuft/deployment_param_importer.rb
|
166
|
+
- app/lib/staypuft/seeder.rb
|
167
|
+
- app/lib/staypuft/exception.rb
|
168
|
+
- app/lib/staypuft/deployment_param_exporter.rb
|
175
169
|
- app/views/hosts/_fencing.html.erb
|
176
|
-
- app/views/
|
170
|
+
- app/views/staypuft/steps/_nova.html.erb
|
171
|
+
- app/views/staypuft/steps/_neutron_non_ha.html.erb
|
172
|
+
- app/views/staypuft/steps/services_overview.html.erb
|
173
|
+
- app/views/staypuft/steps/_neutron_cisco_nexus_form.html.erb
|
174
|
+
- app/views/staypuft/steps/network_configuration.html.erb
|
175
|
+
- app/views/staypuft/steps/_cinder_equallogic_form.html.erb
|
176
|
+
- app/views/staypuft/steps/_nova_non_ha.html.erb
|
177
|
+
- app/views/staypuft/steps/_title.html.erb
|
178
|
+
- app/views/staypuft/steps/services_configuration.html.erb
|
179
|
+
- app/views/staypuft/steps/_neutron_ha.html.erb
|
180
|
+
- app/views/staypuft/steps/deployment_settings.html.erb
|
181
|
+
- app/views/staypuft/steps/_cinder.html.erb
|
182
|
+
- app/views/staypuft/steps/_nova_ha.html.erb
|
183
|
+
- app/views/staypuft/steps/_glance.html.erb
|
184
|
+
- app/views/staypuft/steps/_neutron.html.erb
|
185
|
+
- app/views/staypuft/steps/_wizard_form_buttons.html.erb
|
186
|
+
- app/views/staypuft/subnet_types/_subnet_type_pull.html.erb
|
187
|
+
- app/views/staypuft/layouts/staypuft.html.erb
|
188
|
+
- app/views/staypuft/layouts/application.html.erb
|
189
|
+
- app/views/staypuft/bonds/destroy.js.erb
|
177
190
|
- app/views/staypuft/bonds/add_slave.js.erb
|
178
191
|
- app/views/staypuft/bonds/create.js.erb
|
179
|
-
- app/views/staypuft/
|
192
|
+
- app/views/staypuft/subnet_typings/destroy.js.erb
|
193
|
+
- app/views/staypuft/subnet_typings/create.js.erb
|
194
|
+
- app/views/staypuft/subnet_typings/update.js.erb
|
195
|
+
- app/views/staypuft/subnets/new.html.erb
|
196
|
+
- app/views/staypuft/subnets/create.js.erb
|
197
|
+
- app/views/staypuft/subnets/_subnet_pull.html.erb
|
198
|
+
- app/views/staypuft/subnets/_form.html.erb
|
199
|
+
- app/views/staypuft/subnets/_drop_zone.html.erb
|
200
|
+
- app/views/staypuft/interfaces/_drop_zone.html.erb
|
201
|
+
- app/views/staypuft/interface_assignments/index.html.erb
|
202
|
+
- app/views/staypuft/interface_assignments/destroy.js.erb
|
203
|
+
- app/views/staypuft/interface_assignments/_interfaces.html.erb
|
204
|
+
- app/views/staypuft/interface_assignments/create.js.erb
|
205
|
+
- app/views/staypuft/interface_assignments/_nics_assignment.html.erb
|
206
|
+
- app/views/staypuft/deployments/edit.html.erb
|
180
207
|
- app/views/staypuft/deployments/_advanced_configuration.html.erb
|
181
|
-
- app/views/staypuft/deployments/_assigned_hosts.html.erb
|
182
208
|
- app/views/staypuft/deployments/_assigned_hosts_table.html.erb
|
183
|
-
- app/views/staypuft/deployments/
|
184
|
-
- app/views/staypuft/deployments/_deployed_hosts_table.html.erb
|
185
|
-
- app/views/staypuft/deployments/_deployment_access_all_details_dialogue.html.erb
|
186
|
-
- app/views/staypuft/deployments/_deployment_hosts.html.erb
|
187
|
-
- app/views/staypuft/deployments/_deployment_networking.html.erb
|
209
|
+
- app/views/staypuft/deployments/index.html.erb
|
188
210
|
- app/views/staypuft/deployments/_deployment_overview.html.erb
|
189
|
-
- app/views/staypuft/deployments/
|
211
|
+
- app/views/staypuft/deployments/_host_head_row.html.erb
|
190
212
|
- app/views/staypuft/deployments/_deployment_progress_page_header.html.erb
|
191
|
-
- app/views/staypuft/deployments/_deployment_show_header.html.erb
|
192
|
-
- app/views/staypuft/deployments/_deployment_summary.html.erb
|
193
|
-
- app/views/staypuft/deployments/_empty_hosts.html.erb
|
194
|
-
- app/views/staypuft/deployments/_free_hosts.html.erb
|
195
213
|
- app/views/staypuft/deployments/_free_hosts_table.html.erb
|
196
|
-
- app/views/staypuft/deployments/_host_head_row.html.erb
|
197
|
-
- app/views/staypuft/deployments/_host_row.html.erb
|
198
214
|
- app/views/staypuft/deployments/_hosts_filter.html.erb
|
199
|
-
- app/views/staypuft/deployments/
|
215
|
+
- app/views/staypuft/deployments/_empty_hosts.html.erb
|
216
|
+
- app/views/staypuft/deployments/_assigned_hosts.html.erb
|
217
|
+
- app/views/staypuft/deployments/_host_row.html.erb
|
218
|
+
- app/views/staypuft/deployments/_deployment_hosts.html.erb
|
219
|
+
- app/views/staypuft/deployments/show.html.erb
|
220
|
+
- app/views/staypuft/deployments/_deployed_hosts_table.html.erb
|
221
|
+
- app/views/staypuft/deployments/_deployed_hosts.html.erb
|
222
|
+
- app/views/staypuft/deployments/_free_hosts.html.erb
|
200
223
|
- app/views/staypuft/deployments/_hosts_table.html.erb
|
224
|
+
- app/views/staypuft/deployments/_deployment_show_header.html.erb
|
225
|
+
- app/views/staypuft/deployments/_hosts_header.html.erb
|
226
|
+
- app/views/staypuft/deployments/_deployment_access_all_details_dialogue.html.erb
|
227
|
+
- app/views/staypuft/deployments/_deployment_progress_bar.html.erb
|
201
228
|
- app/views/staypuft/deployments/_import_form.html.erb
|
202
|
-
- app/views/staypuft/deployments/
|
203
|
-
- app/views/staypuft/deployments/
|
204
|
-
- app/views/
|
205
|
-
- app/
|
206
|
-
- app/
|
207
|
-
- app/
|
208
|
-
- app/views/staypuft/interface_assignments/destroy.js.erb
|
209
|
-
- app/views/staypuft/interface_assignments/index.html.erb
|
210
|
-
- app/views/staypuft/interfaces/_drop_zone.html.erb
|
211
|
-
- app/views/staypuft/layouts/application.html.erb
|
212
|
-
- app/views/staypuft/layouts/staypuft.html.erb
|
213
|
-
- app/views/staypuft/steps/_cinder.html.erb
|
214
|
-
- app/views/staypuft/steps/_cinder_equallogic_form.html.erb
|
215
|
-
- app/views/staypuft/steps/_glance.html.erb
|
216
|
-
- app/views/staypuft/steps/_neutron.html.erb
|
217
|
-
- app/views/staypuft/steps/_neutron_cisco_nexus_form.html.erb
|
218
|
-
- app/views/staypuft/steps/_neutron_ha.html.erb
|
219
|
-
- app/views/staypuft/steps/_neutron_non_ha.html.erb
|
220
|
-
- app/views/staypuft/steps/_nova.html.erb
|
221
|
-
- app/views/staypuft/steps/_nova_ha.html.erb
|
222
|
-
- app/views/staypuft/steps/_nova_non_ha.html.erb
|
223
|
-
- app/views/staypuft/steps/_title.html.erb
|
224
|
-
- app/views/staypuft/steps/_wizard_form_buttons.html.erb
|
225
|
-
- app/views/staypuft/steps/deployment_settings.html.erb
|
226
|
-
- app/views/staypuft/steps/network_configuration.html.erb
|
227
|
-
- app/views/staypuft/steps/services_configuration.html.erb
|
228
|
-
- app/views/staypuft/steps/services_overview.html.erb
|
229
|
-
- app/views/staypuft/subnet_types/_subnet_type_pull.html.erb
|
230
|
-
- app/views/staypuft/subnet_typings/create.js.erb
|
231
|
-
- app/views/staypuft/subnet_typings/destroy.js.erb
|
232
|
-
- app/views/staypuft/subnet_typings/update.js.erb
|
233
|
-
- app/views/staypuft/subnets/_drop_zone.html.erb
|
234
|
-
- app/views/staypuft/subnets/_form.html.erb
|
235
|
-
- app/views/staypuft/subnets/_subnet_pull.html.erb
|
236
|
-
- app/views/staypuft/subnets/create.js.erb
|
237
|
-
- app/views/staypuft/subnets/new.html.erb
|
238
|
-
- config/routes.rb
|
229
|
+
- app/views/staypuft/deployments/_deployment_summary.html.erb
|
230
|
+
- app/views/staypuft/deployments/_deployment_networking.html.erb
|
231
|
+
- app/views/nic/_subnet_id_field.html.erb
|
232
|
+
- app/helpers/staypuft/hosts_helper.rb
|
233
|
+
- app/helpers/staypuft/deployments_helper.rb
|
234
|
+
- app/helpers/staypuft/application_helper.rb
|
239
235
|
- config/staypuft.local.rb
|
240
|
-
-
|
241
|
-
- db/
|
236
|
+
- config/routes.rb
|
237
|
+
- db/seeds.rb
|
238
|
+
- db/migrate/20140701075033_create_layout_subnet.rb
|
242
239
|
- db/migrate/20140310023613_create_staypuft_roles.rb
|
243
|
-
- db/migrate/20140310174152_create_staypuft_layout_roles.rb
|
244
|
-
- db/migrate/20140310194221_create_staypuft_services.rb
|
245
240
|
- db/migrate/20140310203855_create_staypuft_role_services.rb
|
246
|
-
- db/migrate/
|
247
|
-
- db/migrate/
|
248
|
-
- db/migrate/
|
249
|
-
- db/migrate/
|
250
|
-
- db/migrate/
|
241
|
+
- db/migrate/20140701090256_create_staypuft_subnet_typings.rb
|
242
|
+
- db/migrate/20140701074900_create_subnet_type.rb
|
243
|
+
- db/migrate/20140602121501_add_amqp_provider_to_staypuft_deployment.rb
|
244
|
+
- db/migrate/20140309021811_create_staypuft_layouts.rb
|
245
|
+
- db/migrate/20140310174152_create_staypuft_layout_roles.rb
|
251
246
|
- db/migrate/20140318163222_add_deploy_order_to_staypuft_layout_role.rb
|
252
|
-
- db/migrate/
|
247
|
+
- db/migrate/20140825164900_add_orchestration_to_staypuft_role.rb
|
253
248
|
- db/migrate/20140326032027_drop_staypuft_hostgroup_roles.rb
|
254
|
-
- db/migrate/20140507103716_add_form_step_to_staypuft_deployment.rb
|
255
|
-
- db/migrate/20140513124807_change_column_default_form_step_on_staypuft_deployment.rb
|
256
|
-
- db/migrate/20140602121501_add_amqp_provider_to_staypuft_deployment.rb
|
257
249
|
- db/migrate/20140623142500_remove_amqp_provider_from_staypuft_deployment.rb
|
258
|
-
- db/migrate/
|
259
|
-
- db/migrate/
|
260
|
-
- db/migrate/
|
261
|
-
- db/migrate/
|
250
|
+
- db/migrate/20141009064907_add_custom_repos_to_deployment.rb
|
251
|
+
- db/migrate/20140513124807_change_column_default_form_step_on_staypuft_deployment.rb
|
252
|
+
- db/migrate/20140312050615_create_staypuft_role_classes.rb
|
253
|
+
- db/migrate/20140310004533_create_staypuft_deployments.rb
|
254
|
+
- db/migrate/20140312050001_create_staypuft_hostgroup_roles.rb
|
262
255
|
- db/migrate/20140831234000_add_required_to_subnet_types.rb
|
256
|
+
- db/migrate/20140325211410_add_role_to_staypuft_deployment_role_hostgroup.rb
|
257
|
+
- db/migrate/20140312051144_create_staypuft_service_classes.rb
|
263
258
|
- db/migrate/20141003223000_add_validation_to_subnet_types.rb
|
264
|
-
- db/migrate/
|
265
|
-
- db/
|
259
|
+
- db/migrate/20140312044533_create_staypuft_deployment_role_hostgroups.rb
|
260
|
+
- db/migrate/20140315031754_add_networking_to_staypuft_layout.rb
|
261
|
+
- db/migrate/20140507103716_add_form_step_to_staypuft_deployment.rb
|
262
|
+
- db/migrate/20140310194221_create_staypuft_services.rb
|
266
263
|
- lib/staypuft.rb
|
267
264
|
- lib/staypuft/engine.rb
|
268
265
|
- lib/staypuft/version.rb
|
269
266
|
- lib/tasks/staypuft_tasks.rake
|
270
|
-
-
|
271
|
-
-
|
272
|
-
-
|
267
|
+
- LICENSE
|
268
|
+
- Rakefile
|
269
|
+
- README.md
|
273
270
|
- test/test_helper.rb
|
274
|
-
- test/
|
271
|
+
- test/staypuft_test.rb
|
275
272
|
- test/unit/staypuft_test.rb
|
273
|
+
- test/test_plugin_helper.rb
|
274
|
+
- test/factories/staypuft_factories.rb
|
275
|
+
- test/integration/navigation_test.rb
|
276
276
|
homepage: https://github.com/theforeman/staypuft
|
277
277
|
licenses:
|
278
278
|
- GPL-3.0+
|
@@ -283,24 +283,24 @@ require_paths:
|
|
283
283
|
- lib
|
284
284
|
required_ruby_version: !ruby/object:Gem::Requirement
|
285
285
|
requirements:
|
286
|
-
- -
|
286
|
+
- - '>='
|
287
287
|
- !ruby/object:Gem::Version
|
288
288
|
version: '0'
|
289
289
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
290
290
|
requirements:
|
291
|
-
- -
|
291
|
+
- - '>='
|
292
292
|
- !ruby/object:Gem::Version
|
293
293
|
version: '0'
|
294
294
|
requirements: []
|
295
295
|
rubyforge_project:
|
296
|
-
rubygems_version: 2.
|
296
|
+
rubygems_version: 2.0.14
|
297
297
|
signing_key:
|
298
298
|
specification_version: 4
|
299
299
|
summary: OpenStack Foreman Installer
|
300
300
|
test_files:
|
301
|
-
- test/unit/staypuft_test.rb
|
302
301
|
- test/test_helper.rb
|
303
302
|
- test/staypuft_test.rb
|
304
|
-
- test/
|
303
|
+
- test/unit/staypuft_test.rb
|
305
304
|
- test/test_plugin_helper.rb
|
306
305
|
- test/factories/staypuft_factories.rb
|
306
|
+
- test/integration/navigation_test.rb
|