Initial kilo updates

Change-Id: I098b8d186e9b0290dda5eb1975b5fb6193d9281a
Partial-Bug: #1426424
This commit is contained in:
Mark Vanderwiel 2015-02-27 13:43:38 -06:00
parent 782197b06a
commit 1150cad969
6 changed files with 79 additions and 66 deletions

2
.gitignore vendored
View File

@ -5,5 +5,5 @@ berks-cookbooks/
.coverage/
*.swp
Berksfile.lock
Gemfile.lock
Vagrantfile
Gemfile.lock

View File

@ -1,5 +1,7 @@
inherit_from: .rubocop_todo.yml
AllCops:
Includes:
Include:
- metadata.rb
- Gemfile
- attributes/**
@ -8,12 +10,15 @@ AllCops:
- recipes/**
- resources/**
- spec/**
Exclude:
- .cookbooks/**/*
- berks-cookbooks/**/*
- .bundle/**/*
Encoding:
Exclude:
- metadata.rb
- Gemfile
- berks-cookbooks/**
NumericLiterals:
Enabled: false

66
.rubocop_todo.yml Normal file
View File

@ -0,0 +1,66 @@
# This configuration was generated by `rubocop --auto-gen-config`
# on 2015-02-27 13:42:53 -0600 using RuboCop version 0.29.1.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 1
# Cop supports --auto-correct.
Lint/DeprecatedClassMethods:
Enabled: false
# Offense count: 2
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/ClassAndModuleChildren:
Enabled: false
# Offense count: 19
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/EmptyLinesAroundBlockBody:
Enabled: false
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/FirstParameterIndentation:
Enabled: false
# Offense count: 7
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/FormatString:
Enabled: false
# Offense count: 1
# Cop supports --auto-correct.
Style/MultilineIfThen:
Enabled: false
# Offense count: 9
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/MultilineOperationIndentation:
Enabled: false
# Offense count: 1
# Configuration parameters: EnforcedStyle, MinBodyLength, SupportedStyles.
Style/Next:
Enabled: false
# Offense count: 13
# Cop supports --auto-correct.
# Configuration parameters: PreferredDelimiters.
Style/PercentLiteralDelimiters:
Enabled: false
# Offense count: 25
# Cop supports --auto-correct.
Style/SingleSpaceBeforeFirstArg:
Enabled: false
# Offense count: 27
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
Style/StringLiteralsInInterpolation:
Enabled: false

View File

@ -1,58 +0,0 @@
openstack-dashboard Cookbook CHANGELOG
==============================
This file is used to list changes made in each version of the openstack-dashboard cookbook.
## 10.0.0
* Upgrading to Juno
* Upgrading berkshelf from 2.0.18 to 3.1.5
* Allow enable_filewall and enable_vpn to be configured via attributes
* Sync conf files with Juno
* Add optional section support for local_settings template
* Update local_settings from 0644 to 0640
* Fix python-ibm-db-django package polluting common package attribute
* Allow some ceitificate options to be configured
* Add sensitive flag to private key and certificate file resources
* Add hash algorithm option to local_settings
* Update user group for local_settings from root to horizon user group
* Bump Chef gem to 11.16
* Add sensitive flag to local_settings file resource
* allow override of the temporary directory used for file uploads
* Set default to use only TLS for SSL. OpenStack security note OSSN-0039
* Allow TraceEnable to be configured
* Allow volume_api_version to be configured for Horizon
* Allow webserver to be configurable
* Fix site template directory defaults for apache 2.4
* Use common specific_endpoint routines (bug 1412919)
* Fix notify when using listen_addresses
* Change default for password_autocomplete to off for better default security
## 9.1
* python_packages database client attributes have been moved to the -common cookbook
* bump berkshelf to 2.0.18 to allow Supermarket support
* fix fauxhai version for suse
## 9.0.3
* Fix LOGIN_REDIRECT_URL to be configurable on rhel
## 9.0.2
* Add support for configuring OPENSTACK_KEYSTONE_BACKEND
## 9.0.1
### Bug
* Fix openstack_keystone_default_role default
* Fix the depends cookbook version issue in metadata.rb
## 9.0.0
* Upgrade to Icehouse
## 8.1.1
### Bug
* Fix the DB2 ODBC driver issue
## 8.1.0
### Blue print
* Use the library method auth_uri_transform
## 8.0.0
### New version
* Upgrade to upstream Havana release

View File

@ -1,10 +1,10 @@
source 'https://rubygems.org'
gem 'chef', '~> 11.16.0'
gem 'chef', '~> 11.18.6'
gem 'json', '<= 1.7.7' # chef 11 dependency
gem 'berkshelf', '~> 3.1.5'
gem 'berkshelf', '~> 3.2.1'
gem 'hashie', '~> 2.0'
gem 'chefspec', '~> 4.0.0'
gem 'rspec', '~> 3.0.0'
gem 'foodcritic', '~> 4.0'
gem 'rubocop', '~> 0.18.1'
gem 'rubocop', '~> 0.29.1'

View File

@ -4,7 +4,7 @@ maintainer_email 'opscode-chef-openstack@googlegroups.com'
license 'Apache 2.0'
description 'Installs/Configures the OpenStack Dashboard (Horizon)'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '10.0'
version '11.0.0'
recipe 'openstack-dashboard::horizon', 'Sets up the Horizon dashboard.'
recipe 'openstack-dashboard::apache2-server', 'Sets up an Apache `mod_wsgi` container to run the dashboard.'
@ -15,4 +15,4 @@ recipe 'openstack-dashboard::server', 'Sets up the Horizon dashboard a
end
depends 'apache2', '~> 3.0.0'
depends 'openstack-common', '>= 10.2.0'
depends 'openstack-common', '>= 11.0.0'