Update to Grizzly packages and Quantum endpoints

Increases version from 0.1.10 to 0.2.0 for start
of Grizzly-based release. This obviously should NOT
be backported or cherry-picked into the stable/folsom
branch.
This commit is contained in:
Jay Pipes 2013-04-30 11:25:31 -04:00
parent 89ef774903
commit ec70b8a90c
4 changed files with 21 additions and 4 deletions

View File

@ -2,6 +2,15 @@
This file is used to list changes made in each version of cookbook-openstack-common.
## 0.2.0:
* First release of cookbook-openstack-common that aligns with the Grizzly packaging
* Adds OpenStack Network endpoints
## 0.1.x:
* Folsom-based packaging
## 0.0.1:
* Initial release of cookbook-openstack-common

View File

@ -155,7 +155,7 @@ License and Author
Author:: Jay Pipes (<jaypipes@gmail.com>)
Author:: John Dewey (<john@dewey.ws>)
Copyright 2012, Jay Pipes
Copyright 2012-2013, Jay Pipes
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@ -62,7 +62,7 @@ default["openstack"]["secret"]["user_passwords_data_bag"] = "user_passwords"
# needs.
# The coordinated release of OpenStack codename
default["openstack"]["release"] = "folsom"
default["openstack"]["release"] = "grizzly"
# The Ubuntu Cloud Archive has packages for multiple Ubuntu releases. For
# more information, see: https://wiki.ubuntu.com/ServerTeam/CloudArchive.
@ -70,7 +70,7 @@ default["openstack"]["release"] = "folsom"
# the node["lsb"]["codename"] Ohai value and %release% will be replaced
# by the value of node["openstack"]["release"]
default["openstack"]["apt"]["uri"] = "http://ubuntu-cloud.archive.canonical.com/ubuntu"
default["openstack"]["apt"]["components"] = [ "precise-updates/folsom", "main" ]
default["openstack"]["apt"]["components"] = [ "precise-updates/grizzly", "main" ]
# For the SRU packaging, use this:
# default["openstack"]["apt"]["components"] = [ "%codename%-proposed/%release%", "main" ]
@ -156,6 +156,14 @@ default['openstack']['endpoints']['compute-novnc']['scheme'] = "https"
default['openstack']['endpoints']['compute-novnc']['port'] = "6080"
default['openstack']['endpoints']['compute-novnc']['path'] = "/vnc_auto.html"
# ******************** OpenStack Network Endpoints ****************************
# The OpenStack Network (Quantum) API endpoint.
default['openstack']['endpoints']['network-api']['host'] = "127.0.0.1"
default['openstack']['endpoints']['network-api']['scheme'] = "https"
default['openstack']['endpoints']['network-api']['port'] = "9696"
default['openstack']['endpoints']['network-api']['path'] = "/v2"
# ******************** OpenStack Image Endpoints ******************************
# The OpenStack Image (Glance) API endpoint

View File

@ -4,7 +4,7 @@ maintainer_email "jaypipes@gmail.com"
license "Apache 2.0"
description "Common OpenStack attributes, libraries and recipes."
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.1.9"
version "0.2.0"
recipe "opentack-common", "Execute common recipes"