Cookbook version bumps for Xenial

- incremented mysql to 8.1
- incremented database to 6.1
- incremented yum to 3.13
- incremented yum-epel to 1.0
- incremented poise-python to 1.5
- incremented apt to 5.0
- created dependency on build-essential for python-openstackclient
- incremented authentication API version to v3.0
- incremented ChefDK packages to 1.0

Change-Id: I57c8729e8732161ac34caa85259de8264e99c56d
Implements: blueprint newton-xenial
This commit is contained in:
Samuel Cassiba 2016-10-17 23:57:02 -07:00
parent a1e21fd72c
commit 0edeb4594e
3 changed files with 11 additions and 10 deletions

View File

@ -141,8 +141,8 @@ default['openstack']['endpoints']['family'] = 'inet'
default['openstack']['region'] = 'RegionOne'
# Set a default auth api version that other components use to interact with identity service.
# Allowed auth API versions: v2.0 or v3.0. By default, it is set to v2.0.
default['openstack']['api']['auth']['version'] = 'v2.0'
# Allowed auth API versions: v2.0 or v3.0. By default, it is set to v3.0.
default['openstack']['api']['auth']['version'] = 'v3.0'
# Allow configured loggers in logging.conf
default['openstack']['logging']['loggers'] = {

View File

@ -11,7 +11,7 @@ if [ -f /usr/bin/yum ] ; then
sudo pip uninstall requests -y || true
# install chefdk
chefdk=chefdk-0.17.17-1.el7.x86_64.rpm
chefdk=chefdk-1.0.3-1.el7.x86_64.rpm
wget -nv -t 3 https://packages.chef.io/stable/el/7/$chefdk
sudo yum -y install $chefdk
rm $chefdk
@ -26,7 +26,7 @@ elif [ -f /usr/bin/apt-get ]; then
sudo apt-get -y install build-essential liblzma-dev zlib1g-dev
# install chefdk
chefdk=chefdk_0.17.17-1_amd64.deb
chefdk=chefdk_1.0.3-1_amd64.deb
wget -nv -t 3 https://packages.chef.io/stable/ubuntu/12.04/$chefdk
sudo dpkg -i $chefdk
rm $chefdk

View File

@ -16,11 +16,12 @@ recipe 'openstack-common::sysctl', 'Configures sysctl settings'
supports os
end
depends 'apt', '~> 4.0'
depends 'database', '~> 4.0.2'
depends 'apt', '~> 5.0'
depends 'database', '~> 6.1'
depends 'mariadb', '~> 0.3.1'
depends 'mysql', '~> 7.2.0'
depends 'yum', '~> 3.5.4'
depends 'yum-epel', '~> 0.6.0'
depends 'mysql', '~> 8.1'
depends 'yum', '~> 3.13'
depends 'yum-epel', '~> 1.0'
depends 'galera', '~> 0.4.1'
depends 'poise-python', '~> 1.4.0'
depends 'poise-python', '~> 1.5'
depends 'build-essential'