staypuft 0.3.0 → 0.3.1
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 +4 -4
- data/app/assets/javascripts/staypuft/nics_assignment.js +32 -0
- data/app/assets/javascripts/staypuft/staypuft.js +38 -0
- data/app/assets/javascripts/staypuft/subnets_assignment.js +40 -0
- data/app/assets/stylesheets/staypuft/bootstrap_and_overrides.css.scss +5 -1
- data/app/assets/stylesheets/staypuft/staypuft.css.scss +102 -0
- data/app/controllers/staypuft/deployments_controller.rb +5 -0
- data/app/controllers/staypuft/interface_assignments_controller.rb +76 -0
- data/app/controllers/staypuft/steps_controller.rb +15 -1
- data/app/controllers/staypuft/subnet_typings_controller.rb +42 -0
- data/app/helpers/staypuft/deployments_helper.rb +18 -3
- data/app/lib/actions/staypuft/hostgroup/deploy.rb +38 -1
- data/app/lib/staypuft/network_query.rb +35 -0
- data/app/lib/staypuft/seeder.rb +113 -39
- data/app/models/staypuft/concerns/host_interface_management.rb +28 -0
- data/app/models/staypuft/deployment.rb +35 -3
- data/app/models/staypuft/interface_assigner.rb +137 -0
- data/app/models/staypuft/layout.rb +3 -0
- data/app/models/staypuft/layout_subnet_type.rb +12 -0
- data/app/models/staypuft/role.rb +15 -0
- data/app/models/staypuft/subnet_type.rb +27 -0
- data/app/models/staypuft/subnet_typing.rb +11 -0
- data/app/views/staypuft/deployments/_assigned_hosts.html.erb +5 -2
- data/app/views/staypuft/deployments/_assigned_hosts_table.html.erb +13 -46
- data/app/views/staypuft/deployments/_deployed_hosts_table.html.erb +12 -33
- data/app/views/staypuft/deployments/_deployment_overview.html.erb +12 -9
- data/app/views/staypuft/deployments/_deployment_summary.html.erb +18 -0
- data/app/views/staypuft/deployments/_empty_hosts.html.erb +8 -0
- data/app/views/staypuft/deployments/_free_hosts.html.erb +1 -1
- data/app/views/staypuft/deployments/_free_hosts_table.html.erb +11 -34
- data/app/views/staypuft/deployments/_host_head_row.html.erb +11 -0
- data/app/views/staypuft/deployments/_host_row.html.erb +30 -0
- data/app/views/staypuft/deployments/_hosts_header.html.erb +7 -0
- data/app/views/staypuft/deployments/index.html.erb +1 -1
- data/app/views/staypuft/deployments/show.html.erb +2 -2
- data/app/views/staypuft/interface_assignments/create.js.erb +12 -0
- data/app/views/staypuft/interface_assignments/destroy.js.erb +12 -0
- data/app/views/staypuft/interface_assignments/index.html.erb +38 -0
- data/app/views/staypuft/interfaces/_drop_zone.html.erb +30 -0
- data/app/views/staypuft/steps/network_configuration.html.erb +52 -0
- data/app/views/staypuft/steps/services_configuration.html.erb +45 -39
- data/app/views/staypuft/steps/services_overview.html.erb +1 -1
- data/app/views/staypuft/subnet_types/_subnet_type_pull.html.erb +9 -0
- data/app/views/staypuft/subnet_typings/create.js.erb +12 -0
- data/app/views/staypuft/subnet_typings/destroy.js.erb +12 -0
- data/app/views/staypuft/subnet_typings/update.js.erb +14 -0
- data/app/views/staypuft/subnets/_drop_zone.html.erb +16 -0
- data/app/views/staypuft/subnets/_subnet_pull.html.erb +9 -0
- data/config/routes.rb +3 -0
- data/db/migrate/20140701074900_create_subnet_type.rb +9 -0
- data/db/migrate/20140701075033_create_layout_subnet.rb +10 -0
- data/db/migrate/20140701090256_create_staypuft_subnet_typings.rb +14 -0
- data/db/migrate/20140825164900_add_orchestration_to_staypuft_role.rb +5 -0
- data/db/migrate/20140831234000_add_required_to_subnet_types.rb +5 -0
- data/db/seeds.rb +1 -1
- data/lib/staypuft/engine.rb +11 -8
- data/lib/staypuft/version.rb +1 -1
- metadata +135 -91
| @@ -0,0 +1,14 @@ | |
| 1 | 
            +
            class CreateStaypuftSubnetTypings < ActiveRecord::Migration
         | 
| 2 | 
            +
              def change
         | 
| 3 | 
            +
                create_table :staypuft_subnet_typings do |t|
         | 
| 4 | 
            +
                  t.references :deployment, :null => false
         | 
| 5 | 
            +
                  t.references :subnet_type, :null => false
         | 
| 6 | 
            +
                  t.references :subnet, :null => false
         | 
| 7 | 
            +
             | 
| 8 | 
            +
                  t.timestamps
         | 
| 9 | 
            +
                end
         | 
| 10 | 
            +
                add_index :staypuft_subnet_typings, :deployment_id
         | 
| 11 | 
            +
                add_index :staypuft_subnet_typings, :subnet_type_id
         | 
| 12 | 
            +
                add_index :staypuft_subnet_typings, :subnet_id
         | 
| 13 | 
            +
              end
         | 
| 14 | 
            +
            end
         | 
    
        data/db/seeds.rb
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            Staypuft::Seeder.new.seed
         | 
| 1 | 
            +
            Staypuft::Seeder.new.seed
         | 
    
        data/lib/staypuft/engine.rb
    CHANGED
    
    | @@ -27,6 +27,7 @@ module Staypuft | |
| 27 27 | 
             
                end
         | 
| 28 28 |  | 
| 29 29 | 
             
                config.to_prepare do
         | 
| 30 | 
            +
                  ::Host::Base.send :include, Staypuft::Concerns::HostInterfaceManagement
         | 
| 30 31 | 
             
                  ::Host::Managed.send :include, Staypuft::Concerns::HostOrchestrationBuildHook
         | 
| 31 32 | 
             
                  ::Host::Managed.send :include, Staypuft::Concerns::HostOpenStackAffiliation
         | 
| 32 33 | 
             
                  ::Host::Managed.send :include, Staypuft::Concerns::HostDetailsHelper
         | 
| @@ -36,12 +37,14 @@ module Staypuft | |
| 36 37 | 
             
                  ::Environment.send :include, Staypuft::Concerns::EnvironmentExtensions
         | 
| 37 38 | 
             
                  ::LookupKey.send :include, Staypuft::Concerns::LookupKeyExtensions
         | 
| 38 39 |  | 
| 39 | 
            -
                  # preload all the Foreman's lib files
         | 
| 40 | 
            -
                   | 
| 41 | 
            -
             | 
| 42 | 
            -
             | 
| 43 | 
            -
             | 
| 44 | 
            -
             | 
| 40 | 
            +
                  # preload all the Foreman's lib files but only in production
         | 
| 41 | 
            +
                  if Rails.env.production?
         | 
| 42 | 
            +
                    Dir.glob(File.join(Rails.root, 'lib', '**', '*.rb')).
         | 
| 43 | 
            +
                        map { |p| p.to_s.gsub "#{Rails.root}/lib/", '' }.
         | 
| 44 | 
            +
                        map { |v| v.gsub /\.rb$/, '' }.
         | 
| 45 | 
            +
                        sort_by { |v| v.scan('/').size }. # ordered by the directory depth
         | 
| 46 | 
            +
                        map { |v| require_dependency v }
         | 
| 47 | 
            +
                  end
         | 
| 45 48 | 
             
                end
         | 
| 46 49 |  | 
| 47 50 | 
             
                rake_tasks do
         | 
| @@ -57,7 +60,7 @@ module Staypuft | |
| 57 60 | 
             
                end
         | 
| 58 61 |  | 
| 59 62 | 
             
                initializer "staypuft.assets.precompile" do |app|
         | 
| 60 | 
            -
                  app.config.assets.precompile += %w(staypuft/staypuft.css staypuft/staypuft.js)
         | 
| 63 | 
            +
                  app.config.assets.precompile += %w(staypuft/staypuft.css staypuft/staypuft.js staypuft/subnets_assignment.js staypuft/nics_assignment.js)
         | 
| 61 64 | 
             
                end
         | 
| 62 65 |  | 
| 63 66 | 
             
                initializer "load default settings" do |app|
         | 
| @@ -68,7 +71,7 @@ module Staypuft | |
| 68 71 |  | 
| 69 72 | 
             
                initializer 'staypuft.configure_assets', :group => :assets do
         | 
| 70 73 | 
             
                  SETTINGS[:staypuft] =
         | 
| 71 | 
            -
                      { assets: { precompile: %w(staypuft/staypuft.js staypuft/staypuft.css) } }
         | 
| 74 | 
            +
                      { assets: { precompile: %w(staypuft/staypuft.js staypuft/staypuft.css staypuft/subnets_assignment.js staypuft/nics_assignment.js) } }
         | 
| 72 75 | 
             
                end
         | 
| 73 76 |  | 
| 74 77 | 
             
              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.3. | 
| 4 | 
            +
              version: 0.3.1
         | 
| 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- | 
| 11 | 
            +
            date: 2014-09-03 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: foreman-tasks
         | 
| @@ -52,20 +52,34 @@ dependencies: | |
| 52 52 | 
             
                - - '>='
         | 
| 53 53 | 
             
                  - !ruby/object:Gem::Version
         | 
| 54 54 | 
             
                    version: '0'
         | 
| 55 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 56 | 
            +
              name: deface
         | 
| 57 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 58 | 
            +
                requirements:
         | 
| 59 | 
            +
                - - '>='
         | 
| 60 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            +
                    version: '0'
         | 
| 62 | 
            +
              type: :runtime
         | 
| 63 | 
            +
              prerelease: false
         | 
| 64 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 65 | 
            +
                requirements:
         | 
| 66 | 
            +
                - - '>='
         | 
| 67 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 68 | 
            +
                    version: '0'
         | 
| 55 69 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 56 70 | 
             
              name: foreman_discovery
         | 
| 57 71 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| 58 72 | 
             
                requirements:
         | 
| 59 73 | 
             
                - - ~>
         | 
| 60 74 | 
             
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            -
                    version: 1. | 
| 75 | 
            +
                    version: 1.4.0.rc1
         | 
| 62 76 | 
             
              type: :runtime
         | 
| 63 77 | 
             
              prerelease: false
         | 
| 64 78 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 65 79 | 
             
                requirements:
         | 
| 66 80 | 
             
                - - ~>
         | 
| 67 81 | 
             
                  - !ruby/object:Gem::Version
         | 
| 68 | 
            -
                    version: 1. | 
| 82 | 
            +
                    version: 1.4.0.rc1
         | 
| 69 83 | 
             
            description: OpenStack Foreman Installer Plugin
         | 
| 70 84 | 
             
            email:
         | 
| 71 85 | 
             
            - foreman-dev+staypuft@googlegroups.com
         | 
| @@ -73,119 +87,149 @@ executables: [] | |
| 73 87 | 
             
            extensions: []
         | 
| 74 88 | 
             
            extra_rdoc_files: []
         | 
| 75 89 | 
             
            files:
         | 
| 76 | 
            -
            - app/ | 
| 77 | 
            -
            - app/overrides/customize_foreman_tasks_show_page.rb
         | 
| 78 | 
            -
            - app/helpers/staypuft/application_helper.rb
         | 
| 79 | 
            -
            - app/helpers/staypuft/deployments_helper.rb
         | 
| 90 | 
            +
            - app/assets/javascripts/staypuft/nics_assignment.js
         | 
| 80 91 | 
             
            - app/assets/javascripts/staypuft/staypuft.js
         | 
| 92 | 
            +
            - app/assets/javascripts/staypuft/subnets_assignment.js
         | 
| 93 | 
            +
            - app/assets/stylesheets/staypuft/bootstrap_and_overrides.css.scss
         | 
| 81 94 | 
             
            - app/assets/stylesheets/staypuft/foreman_helper.scss
         | 
| 82 95 | 
             
            - app/assets/stylesheets/staypuft/staypuft.css.scss
         | 
| 83 | 
            -
            - app/ | 
| 84 | 
            -
            - app/ | 
| 85 | 
            -
            - app/ | 
| 86 | 
            -
            - app/ | 
| 87 | 
            -
            - app/ | 
| 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
         | 
| 98 | 
            -
            - app/models/staypuft/layout_role.rb
         | 
| 96 | 
            +
            - app/controllers/staypuft/application_controller.rb
         | 
| 97 | 
            +
            - app/controllers/staypuft/subnet_typings_controller.rb
         | 
| 98 | 
            +
            - app/controllers/staypuft/interface_assignments_controller.rb
         | 
| 99 | 
            +
            - app/controllers/staypuft/steps_controller.rb
         | 
| 100 | 
            +
            - app/controllers/staypuft/deployments_controller.rb
         | 
| 99 101 | 
             
            - app/models/staypuft/service/ui_params.rb
         | 
| 102 | 
            +
            - app/models/staypuft/layout_role.rb
         | 
| 103 | 
            +
            - app/models/staypuft/interface_assigner.rb
         | 
| 100 104 | 
             
            - app/models/staypuft/role.rb
         | 
| 101 | 
            -
            - app/models/staypuft/deployment/passwords.rb
         | 
| 102 | 
            -
            - app/models/staypuft/deployment/glance_service.rb
         | 
| 103 105 | 
             
            - app/models/staypuft/deployment/vlan_range_values_validator.rb
         | 
| 104 | 
            -
            - app/models/staypuft/deployment/ | 
| 105 | 
            -
            - app/models/staypuft/deployment/abstract_param_scope.rb
         | 
| 106 | 
            +
            - app/models/staypuft/deployment/nova_service.rb
         | 
| 106 107 | 
             
            - app/models/staypuft/deployment/cinder_service.rb
         | 
| 107 | 
            -
            - app/models/staypuft/deployment/vips.rb
         | 
| 108 108 | 
             
            - app/models/staypuft/deployment/ips.rb
         | 
| 109 | 
            +
            - app/models/staypuft/deployment/abstract_param_scope.rb
         | 
| 109 110 | 
             
            - app/models/staypuft/deployment/neutron_service.rb
         | 
| 110 | 
            -
            - app/models/staypuft/deployment/ | 
| 111 | 
            +
            - app/models/staypuft/deployment/glance_service.rb
         | 
| 112 | 
            +
            - app/models/staypuft/deployment/attribute_param_storage.rb
         | 
| 113 | 
            +
            - app/models/staypuft/deployment/vips.rb
         | 
| 114 | 
            +
            - app/models/staypuft/deployment/passwords.rb
         | 
| 115 | 
            +
            - app/models/staypuft/service_class.rb
         | 
| 116 | 
            +
            - app/models/staypuft/subnet_type.rb
         | 
| 117 | 
            +
            - app/models/staypuft/layout.rb
         | 
| 118 | 
            +
            - app/models/staypuft/concerns/hostgroup_extensions.rb
         | 
| 119 | 
            +
            - app/models/staypuft/concerns/puppetclass_extensions.rb
         | 
| 120 | 
            +
            - app/models/staypuft/concerns/host_details_helper.rb
         | 
| 121 | 
            +
            - app/models/staypuft/concerns/environment_extensions.rb
         | 
| 122 | 
            +
            - app/models/staypuft/concerns/host_interface_management.rb
         | 
| 123 | 
            +
            - app/models/staypuft/concerns/host_orchestration_build_hook.rb
         | 
| 124 | 
            +
            - app/models/staypuft/concerns/lookup_key_extensions.rb
         | 
| 125 | 
            +
            - app/models/staypuft/concerns/host_open_stack_affiliation.rb
         | 
| 126 | 
            +
            - app/models/staypuft/role_service.rb
         | 
| 127 | 
            +
            - app/models/staypuft/service.rb
         | 
| 128 | 
            +
            - app/models/staypuft/role_class.rb
         | 
| 129 | 
            +
            - app/models/staypuft/layout_subnet_type.rb
         | 
| 130 | 
            +
            - app/models/staypuft/deployment.rb
         | 
| 131 | 
            +
            - app/models/staypuft/subnet_typing.rb
         | 
| 132 | 
            +
            - app/models/staypuft/deployment_role_hostgroup.rb
         | 
| 111 133 | 
             
            - app/models/setting/staypuft_provisioning.rb
         | 
| 112 | 
            -
            - app/ | 
| 113 | 
            -
            - app/ | 
| 114 | 
            -
            - app/lib/staypuft/seeder.rb
         | 
| 115 | 
            -
            - app/lib/staypuft/deployment_param_exporter.rb
         | 
| 116 | 
            -
            - app/lib/actions/staypuft/middleware/as_current_user.rb
         | 
| 117 | 
            -
            - app/lib/actions/staypuft/hostgroup/deploy.rb
         | 
| 134 | 
            +
            - app/overrides/customize_foreman_tasks_show_page.rb
         | 
| 135 | 
            +
            - app/overrides/hide_subscription_manager_passwords.rb
         | 
| 118 136 | 
             
            - app/lib/actions/staypuft/hostgroup/ordered_deploy.rb
         | 
| 119 | 
            -
            - app/lib/actions/staypuft/ | 
| 120 | 
            -
            - app/lib/actions/staypuft/ | 
| 137 | 
            +
            - app/lib/actions/staypuft/hostgroup/deploy.rb
         | 
| 138 | 
            +
            - app/lib/actions/staypuft/deployment/populate.rb
         | 
| 139 | 
            +
            - app/lib/actions/staypuft/deployment/deploy.rb
         | 
| 121 140 | 
             
            - app/lib/actions/staypuft/host/wait_until_host_ready.rb
         | 
| 122 141 | 
             
            - app/lib/actions/staypuft/host/puppet_run.rb
         | 
| 123 | 
            -
            - app/lib/actions/staypuft/host/create.rb
         | 
| 124 142 | 
             
            - app/lib/actions/staypuft/host/wait_until_installed.rb
         | 
| 125 | 
            -
            - app/lib/actions/staypuft/ | 
| 126 | 
            -
            - app/lib/actions/staypuft/ | 
| 127 | 
            -
            - app/ | 
| 128 | 
            -
            - app/ | 
| 129 | 
            -
            - app/ | 
| 130 | 
            -
            - app/ | 
| 143 | 
            +
            - app/lib/actions/staypuft/host/build.rb
         | 
| 144 | 
            +
            - app/lib/actions/staypuft/host/deploy.rb
         | 
| 145 | 
            +
            - app/lib/actions/staypuft/host/create.rb
         | 
| 146 | 
            +
            - app/lib/actions/staypuft/middleware/as_current_user.rb
         | 
| 147 | 
            +
            - app/lib/staypuft/network_query.rb
         | 
| 148 | 
            +
            - app/lib/staypuft/deployment_param_importer.rb
         | 
| 149 | 
            +
            - app/lib/staypuft/seeder.rb
         | 
| 150 | 
            +
            - app/lib/staypuft/exception.rb
         | 
| 151 | 
            +
            - app/lib/staypuft/deployment_param_exporter.rb
         | 
| 152 | 
            +
            - app/views/staypuft/steps/_nova.html.erb
         | 
| 153 | 
            +
            - app/views/staypuft/steps/_neutron_non_ha.html.erb
         | 
| 154 | 
            +
            - app/views/staypuft/steps/services_overview.html.erb
         | 
| 155 | 
            +
            - app/views/staypuft/steps/network_configuration.html.erb
         | 
| 156 | 
            +
            - app/views/staypuft/steps/_nova_non_ha.html.erb
         | 
| 157 | 
            +
            - app/views/staypuft/steps/_title.html.erb
         | 
| 158 | 
            +
            - app/views/staypuft/steps/services_configuration.html.erb
         | 
| 159 | 
            +
            - app/views/staypuft/steps/_neutron_ha.html.erb
         | 
| 160 | 
            +
            - app/views/staypuft/steps/deployment_settings.html.erb
         | 
| 161 | 
            +
            - app/views/staypuft/steps/_cinder.html.erb
         | 
| 162 | 
            +
            - app/views/staypuft/steps/_nova_ha.html.erb
         | 
| 163 | 
            +
            - app/views/staypuft/steps/_glance.html.erb
         | 
| 164 | 
            +
            - app/views/staypuft/steps/_neutron.html.erb
         | 
| 165 | 
            +
            - app/views/staypuft/steps/_wizard_form_buttons.html.erb
         | 
| 166 | 
            +
            - app/views/staypuft/subnet_types/_subnet_type_pull.html.erb
         | 
| 167 | 
            +
            - app/views/staypuft/layouts/staypuft.html.erb
         | 
| 168 | 
            +
            - app/views/staypuft/layouts/application.html.erb
         | 
| 169 | 
            +
            - app/views/staypuft/subnet_typings/destroy.js.erb
         | 
| 170 | 
            +
            - app/views/staypuft/subnet_typings/create.js.erb
         | 
| 171 | 
            +
            - app/views/staypuft/subnet_typings/update.js.erb
         | 
| 172 | 
            +
            - app/views/staypuft/subnets/_subnet_pull.html.erb
         | 
| 173 | 
            +
            - app/views/staypuft/subnets/_drop_zone.html.erb
         | 
| 174 | 
            +
            - app/views/staypuft/interfaces/_drop_zone.html.erb
         | 
| 175 | 
            +
            - app/views/staypuft/interface_assignments/index.html.erb
         | 
| 176 | 
            +
            - app/views/staypuft/interface_assignments/destroy.js.erb
         | 
| 177 | 
            +
            - app/views/staypuft/interface_assignments/create.js.erb
         | 
| 178 | 
            +
            - app/views/staypuft/deployments/edit.html.erb
         | 
| 179 | 
            +
            - app/views/staypuft/deployments/_advanced_configuration.html.erb
         | 
| 180 | 
            +
            - app/views/staypuft/deployments/_assigned_hosts_table.html.erb
         | 
| 181 | 
            +
            - app/views/staypuft/deployments/index.html.erb
         | 
| 131 182 | 
             
            - app/views/staypuft/deployments/_deployment_overview.html.erb
         | 
| 132 | 
            -
            - app/views/staypuft/deployments/ | 
| 133 | 
            -
            - app/views/staypuft/deployments/_deployment_access_all_details_dialogue.html.erb
         | 
| 183 | 
            +
            - app/views/staypuft/deployments/_host_head_row.html.erb
         | 
| 134 184 | 
             
            - app/views/staypuft/deployments/_deployment_progress_page_header.html.erb
         | 
| 135 | 
            -
            - app/views/staypuft/deployments/ | 
| 136 | 
            -
            - app/views/staypuft/deployments/ | 
| 137 | 
            -
            - app/views/staypuft/deployments/ | 
| 138 | 
            -
            - app/views/staypuft/deployments/_deployment_progress_bar.html.erb
         | 
| 139 | 
            -
            - app/views/staypuft/deployments/show.html.erb
         | 
| 185 | 
            +
            - app/views/staypuft/deployments/_free_hosts_table.html.erb
         | 
| 186 | 
            +
            - app/views/staypuft/deployments/_hosts_filter.html.erb
         | 
| 187 | 
            +
            - app/views/staypuft/deployments/_empty_hosts.html.erb
         | 
| 140 188 | 
             
            - app/views/staypuft/deployments/_assigned_hosts.html.erb
         | 
| 141 | 
            -
            - app/views/staypuft/deployments/ | 
| 142 | 
            -
            - app/views/staypuft/deployments/_free_hosts.html.erb
         | 
| 189 | 
            +
            - app/views/staypuft/deployments/_host_row.html.erb
         | 
| 143 190 | 
             
            - app/views/staypuft/deployments/_deployment_hosts.html.erb
         | 
| 144 | 
            -
            - app/views/staypuft/deployments/ | 
| 191 | 
            +
            - app/views/staypuft/deployments/show.html.erb
         | 
| 145 192 | 
             
            - app/views/staypuft/deployments/_deployed_hosts_table.html.erb
         | 
| 193 | 
            +
            - app/views/staypuft/deployments/_deployed_hosts.html.erb
         | 
| 194 | 
            +
            - app/views/staypuft/deployments/_free_hosts.html.erb
         | 
| 195 | 
            +
            - app/views/staypuft/deployments/_deployment_show_header.html.erb
         | 
| 196 | 
            +
            - app/views/staypuft/deployments/_hosts_header.html.erb
         | 
| 197 | 
            +
            - app/views/staypuft/deployments/_deployment_access_all_details_dialogue.html.erb
         | 
| 198 | 
            +
            - app/views/staypuft/deployments/_deployment_progress_bar.html.erb
         | 
| 146 199 | 
             
            - app/views/staypuft/deployments/_import_form.html.erb
         | 
| 147 | 
            -
            - app/views/staypuft/deployments/ | 
| 148 | 
            -
            - app/views/staypuft/deployments/ | 
| 149 | 
            -
            - app/ | 
| 150 | 
            -
            - app/ | 
| 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
         | 
| 200 | 
            +
            - app/views/staypuft/deployments/_deployment_summary.html.erb
         | 
| 201 | 
            +
            - app/views/staypuft/deployments/_deployment_networking.html.erb
         | 
| 202 | 
            +
            - app/helpers/staypuft/deployments_helper.rb
         | 
| 203 | 
            +
            - app/helpers/staypuft/application_helper.rb
         | 
| 165 204 | 
             
            - config/staypuft.local.rb
         | 
| 166 205 | 
             
            - config/routes.rb
         | 
| 167 | 
            -
            - db/ | 
| 168 | 
            -
            - db/migrate/ | 
| 169 | 
            -
            - db/migrate/20140310203855_create_staypuft_role_services.rb
         | 
| 206 | 
            +
            - db/seeds.rb
         | 
| 207 | 
            +
            - db/migrate/20140701075033_create_layout_subnet.rb
         | 
| 170 208 | 
             
            - db/migrate/20140310023613_create_staypuft_roles.rb
         | 
| 171 | 
            -
            - db/migrate/ | 
| 172 | 
            -
            - db/migrate/ | 
| 173 | 
            -
            - db/migrate/ | 
| 209 | 
            +
            - db/migrate/20140310203855_create_staypuft_role_services.rb
         | 
| 210 | 
            +
            - db/migrate/20140701090256_create_staypuft_subnet_typings.rb
         | 
| 211 | 
            +
            - db/migrate/20140701074900_create_subnet_type.rb
         | 
| 174 212 | 
             
            - db/migrate/20140602121501_add_amqp_provider_to_staypuft_deployment.rb
         | 
| 175 | 
            -
            - db/migrate/ | 
| 176 | 
            -
            - db/migrate/20140312050001_create_staypuft_hostgroup_roles.rb
         | 
| 213 | 
            +
            - db/migrate/20140309021811_create_staypuft_layouts.rb
         | 
| 177 214 | 
             
            - db/migrate/20140310174152_create_staypuft_layout_roles.rb
         | 
| 178 215 | 
             
            - db/migrate/20140318163222_add_deploy_order_to_staypuft_layout_role.rb
         | 
| 179 | 
            -
            - db/migrate/ | 
| 216 | 
            +
            - db/migrate/20140825164900_add_orchestration_to_staypuft_role.rb
         | 
| 217 | 
            +
            - db/migrate/20140326032027_drop_staypuft_hostgroup_roles.rb
         | 
| 218 | 
            +
            - db/migrate/20140623142500_remove_amqp_provider_from_staypuft_deployment.rb
         | 
| 180 219 | 
             
            - db/migrate/20140513124807_change_column_default_form_step_on_staypuft_deployment.rb
         | 
| 181 | 
            -
            - db/migrate/ | 
| 220 | 
            +
            - db/migrate/20140312050615_create_staypuft_role_classes.rb
         | 
| 221 | 
            +
            - db/migrate/20140310004533_create_staypuft_deployments.rb
         | 
| 222 | 
            +
            - db/migrate/20140312050001_create_staypuft_hostgroup_roles.rb
         | 
| 223 | 
            +
            - db/migrate/20140831234000_add_required_to_subnet_types.rb
         | 
| 224 | 
            +
            - db/migrate/20140325211410_add_role_to_staypuft_deployment_role_hostgroup.rb
         | 
| 182 225 | 
             
            - db/migrate/20140312051144_create_staypuft_service_classes.rb
         | 
| 183 226 | 
             
            - db/migrate/20140312044533_create_staypuft_deployment_role_hostgroups.rb
         | 
| 184 | 
            -
            - db/migrate/ | 
| 185 | 
            -
            - db/ | 
| 227 | 
            +
            - db/migrate/20140315031754_add_networking_to_staypuft_layout.rb
         | 
| 228 | 
            +
            - db/migrate/20140507103716_add_form_step_to_staypuft_deployment.rb
         | 
| 229 | 
            +
            - db/migrate/20140310194221_create_staypuft_services.rb
         | 
| 230 | 
            +
            - lib/staypuft.rb
         | 
| 186 231 | 
             
            - lib/staypuft/engine.rb
         | 
| 187 232 | 
             
            - lib/staypuft/version.rb
         | 
| 188 | 
            -
            - lib/staypuft.rb
         | 
| 189 233 | 
             
            - lib/tasks/staypuft_tasks.rake
         | 
| 190 234 | 
             
            - LICENSE
         | 
| 191 235 | 
             
            - Rakefile
         | 
| @@ -193,9 +237,9 @@ files: | |
| 193 237 | 
             
            - test/test_helper.rb
         | 
| 194 238 | 
             
            - test/staypuft_test.rb
         | 
| 195 239 | 
             
            - test/unit/staypuft_test.rb
         | 
| 196 | 
            -
            - test/integration/navigation_test.rb
         | 
| 197 | 
            -
            - test/factories/staypuft_factories.rb
         | 
| 198 240 | 
             
            - test/test_plugin_helper.rb
         | 
| 241 | 
            +
            - test/factories/staypuft_factories.rb
         | 
| 242 | 
            +
            - test/integration/navigation_test.rb
         | 
| 199 243 | 
             
            homepage: https://github.com/theforeman/staypuft
         | 
| 200 244 | 
             
            licenses:
         | 
| 201 245 | 
             
            - GPL-3.0+
         | 
| @@ -216,7 +260,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 216 260 | 
             
                  version: '0'
         | 
| 217 261 | 
             
            requirements: []
         | 
| 218 262 | 
             
            rubyforge_project: 
         | 
| 219 | 
            -
            rubygems_version: 2.0. | 
| 263 | 
            +
            rubygems_version: 2.0.14
         | 
| 220 264 | 
             
            signing_key: 
         | 
| 221 265 | 
             
            specification_version: 4
         | 
| 222 266 | 
             
            summary: OpenStack Foreman Installer
         | 
| @@ -224,6 +268,6 @@ test_files: | |
| 224 268 | 
             
            - test/test_helper.rb
         | 
| 225 269 | 
             
            - test/staypuft_test.rb
         | 
| 226 270 | 
             
            - test/unit/staypuft_test.rb
         | 
| 227 | 
            -
            - test/integration/navigation_test.rb
         | 
| 228 | 
            -
            - test/factories/staypuft_factories.rb
         | 
| 229 271 | 
             
            - test/test_plugin_helper.rb
         | 
| 272 | 
            +
            - test/factories/staypuft_factories.rb
         | 
| 273 | 
            +
            - test/integration/navigation_test.rb
         |