Separate endpoints for vncserver_listen and vncserver_proxyclient_address

* define new endpoint for proxy based on existing vnc endpoint
* will be used in Compute  nova-common recipe for nova.conf

Change-Id: I89298db2461b59ab8038dfc01d42f0eb69a8b58c
Partial-Bug: #1367807
This commit is contained in:
Mark Vanderwiel
2014-09-10 11:15:54 -05:00
parent c2252807d4
commit 6a44710656
3 changed files with 8 additions and 1 deletions

View File

@@ -2,6 +2,9 @@
This file is used to list changes made in each version of cookbook-openstack-common.
## 10.2.0
* Separate endpoints for vncserver_listen and vncserver_proxyclient_address
## 10.1.0
* Adding identity admin bind host endpoint to allow flexibility and consistency

View File

@@ -268,6 +268,10 @@ default['openstack']['endpoints']['compute-vnc']['port'] = nil
default['openstack']['endpoints']['compute-vnc']['path'] = nil
default['openstack']['endpoints']['compute-vnc']['bind_interface'] = nil
# The OpenStack Compute (Nova) vnc proxy endpoint
default['openstack']['endpoints']['compute-vnc-proxy-bind']['host'] = node['openstack']['endpoints']['compute-vnc-bind']['host']
default['openstack']['endpoints']['compute-vnc-proxy-bind']['bind_interface'] = node['openstack']['endpoints']['compute-vnc-bind']['bind_interface']
# ******************** OpenStack Network Endpoints ****************************
# The OpenStack Network (Neutron) API endpoint.

View File

@@ -4,7 +4,7 @@ maintainer_email 'cookbooks@lists.tfoundry.com'
license 'Apache 2.0'
description 'Common OpenStack attributes, libraries and recipes.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '10.1.0'
version '10.2.0'
recipe 'openstack-common', 'Installs/Configures common recipes'
recipe 'openstack-common::set_endpoints_by_interface', 'Set endpoints by interface'